/* ==========================================
   1. THEME VARIABLES
========================================== */

:root{
    --primary:#d4af37;
    --dark:#081120;
    --white:#ffffff;
    --text:#333333;
    --gray:#cbd5e1;
    --transition:.3s ease;
}

/* ==========================================
   2. RESET & GLOBAL
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    color:var(--text);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* ==========================================
   3. HEADER
========================================== */

.header{
    position:sticky;
    top:0;
    width:100%;
    background:var(--white);
    z-index:99999;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
    transition:var(--transition);
}

.container{
    max-width:1400px;
    width:100%;
    margin:auto;
    padding:10px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Logo Container */

.logo{
    display:flex;
    align-items:center;
    height:38px; /* Header height same rahegi */
}

/* Logo */

.logo img{
    height:42px; /* Logo visually bada */
    width:auto;

    transform:scale(1.15);
    transform-origin:left center;
}

/* ==========================================
   4. NAVIGATION
========================================== */

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
    gap:35px;
}

.nav-links a{
    position:relative;
    color:var(--text);
    font-size:16px;
    font-weight:500;
    transition:var(--transition);
}

.nav-links a:hover{
    color:var(--primary);
}



/* Header Button */

.header-btn{
    padding:10px 20px;
    border:1px solid var(--primary);
    border-radius:10px;
    color:var(--primary);
    font-size:14px;
    font-weight:500;
    transition:var(--transition);
}

.header-btn:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-2px);
}

.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* ==========================================
   5. DROPDOWN MENU
========================================== */

.dropdown{
    position:relative;
}

.dropdown > a span{
    font-size:10px;
    margin-left:5px;
}

.dropdown-menu{
    position:absolute;
    top:calc(100% + 1px);
    left:0;

    min-width:260px;

    background:#fff;
    list-style:none;

    padding:8px 0;
    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);
    transition:all .3s ease;

    z-index:999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Dropdown Item Border */

.dropdown-menu li{
    border-bottom:1px solid #f1f1f1;
}

.dropdown-menu li:last-child{
    border-bottom:none;
}

/* Dropdown Links */

.dropdown-menu li a{
    display:block;
    padding:13px 20px;
    font-size:15px;
    font-weight:500;
    color:var(--text);
    transition:var(--transition);
}

.dropdown-menu li a:hover{
    background:#fafafa;
    color:var(--primary);
    transform:translateX(8px);
}

/* ==========================================
   6. HERO SLIDER
========================================== */

.hero-slider{
    position:relative;
    width:100%;
    height:80vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.45)
    );
}

.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:5;
    width:90%;
    max-width:900px;
}

.slide-content h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:25px;
}

.slide-content p{
    font-size:26px;
    margin-bottom:40px;
    line-height:1.6;
}

.hero-btn{
    display:inline-block;
    padding:18px 45px;
    background:var(--primary);
    color:#111;
    border-radius:15px;
    font-weight:600;
    transition:var(--transition);
}

.hero-btn:hover{
    transform:translateY(-3px);
}

/* ==========================================
   7. SLIDER ARROWS
========================================== */

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.15);
    color:#fff;

    font-size:30px;
    cursor:pointer;

    z-index:10;
    transition:var(--transition);
}

.prev:hover,
.next:hover{
    background:var(--primary);
}

.prev{
    left:35px;
}

.next{
    right:35px;
}

/* ==========================================
   8. FOOTER
========================================== */

.footer{
    background:var(--dark);
    color:var(--gray);
    padding-top:50px;
}

.footer-container{
    max-width:1400px;
    width:100%;
    margin:auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

/* Footer Logo */

.footer-logo{
    width:180px;
    height:auto;
    margin-bottom:10px;
}

/* Footer Heading */

.footer-box h3{
    color:#fff;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
    position:relative;
}

.footer-box h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;

    width:50px;
    height:3px;

    background:var(--primary);
    border-radius:10px;
}

/* Footer Paragraph */

.footer-box p{
    line-height:1.8;
    margin-bottom:8px;
}

/* Footer List */

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

/* Footer Links */

.footer-box ul li a{
    color:var(--gray);
    display:inline-block;
    transition:var(--transition);
}

.footer-box ul li a:hover{
    color:var(--primary);
    transform:translateX(8px);
}

/* Social Icons */

.social-links{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social-links a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    transition:var(--transition);
}

.social-links a:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:var(--dark);
    transform:translateY(-3px);
}

/* Footer Bottom */

.footer-bottom{
    margin-top:60px;
    padding:22px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    color:#94a3b8;
    font-size:14px;
}

/* ==========================================
   9. TABLET RESPONSIVE
========================================== */

@media(max-width:991px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

/* ==========================================
   10. MOBILE RESPONSIVE
========================================== */

@media(max-width:768px){

    .container{
        padding:10px 18px;
    }

    .logo img{
        height:32px;
    }

/* Mobile Hamburger Menu */

.menu-toggle{
    display:none;
    font-size:20px;
    cursor:pointer;

    color:var(--primary); /* Logo wala gold color */

    width:40px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid var(--primary);
    border-radius:8px;

    transition:var(--transition);
}

.menu-toggle:hover{
    background:var(--primary);
    color:#fff;
}

    .nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav.active{
        display:block;
    }

    .nav-links{
        flex-direction:column;
        gap:0;
    }

    .nav-links li{
        width:100%;
        border-top:1px solid #eee;
    }

    .nav-links a{
        display:block;
        padding:15px;
    }

    .header-btn{
        display:none;
    }

    /* Mobile Dropdown */

    .dropdown-menu{
        position:static;
        min-width:100%;
        display:none;

        opacity:1;
        visibility:visible;
        transform:none;

        box-shadow:none;
        border-radius:0;

        padding:0;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .dropdown-menu li a{
        padding-left:30px;
    }

    /* Slider */

    .hero-slider{
        height:65vh;
    }

    .slide-content h2{
        font-size:38px;
    }

    .slide-content p{
        font-size:18px;
        margin-bottom:25px;
    }

    .hero-btn{
        padding:14px 28px;
        font-size:16px;
    }

    .prev,
    .next{
        width:50px;
        height:50px;
        font-size:22px;
    }
}

/* ==========================================
   11. SMALL MOBILE
========================================== */

@media(max-width:576px){

    .footer{
        text-align:center;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-logo{
        margin:0 auto 10px;
    }

    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .social-links{
        justify-content:center;
    }

    .slide-content h2{
        font-size:30px;
    }

    .slide-content p{
        font-size:16px;
    }
}