:root {
    --primary: #d4af37;
    --primary-dark: #b8860b;
    --background: #0f0f0f;
    --surface: #1a1a1a;
    --text: #ffffff;
    --text-muted: #cccccc;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Outfit', 'Noto Nastaliq Urdu', serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(5px);
}

.logo {
    font-family: 'Noto Nastaliq Urdu', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--glass);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-family: 'Noto Nastaliq Urdu', sans-serif;
    margin-bottom: 40px;
    line-height: 2;
    background: linear-gradient(to bottom, #ffffff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2.2;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text);
    color: var(--text);
}

.btn-outline:hover {
    background-color: var(--text);
    color: #000;
    transform: translateY(-5px);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 20px;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transform: rotate(-2deg);
    transition: 0.5s ease;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 30px;
    transform: rotate(2deg);
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.subtitle {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Noto Nastaliq Urdu', sans-serif;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.owner-info {
    border-right: 4px solid var(--primary);
    padding-right: 20px;
    margin-top: 30px;
}

.owner-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: #111;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-family: 'Noto Nastaliq Urdu', sans-serif;
    margin-bottom: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Order Section */
.order {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/hero.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.order-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.order-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.order-card h2 {
    font-size: 3rem;
    font-family: 'Noto Nastaliq Urdu', sans-serif;
    margin-bottom: 20px;
    line-height: 1.8;
}

.order-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.order-numbers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.order-number {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
}

.order-number a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.order-number a:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(183, 148, 89, 0.4);
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

/* Footer */
footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1.5s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.6;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .image-frame {
        transform: rotate(0deg) !important;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .order-card h2 {
        font-size: 2rem;
    }

    .order-number {
        font-size: 1.8rem;
    }

    .order-card {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .order-number {
        font-size: 1.5rem;
        gap: 10px;
    }

    .contact-card {
        padding: 30px 15px;
    }
}