*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body {
    background: linear-gradient(90deg, #a09f9f, #a09f9f, #c8a165);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
h3 , h2{
    color: #000;
}

.nav-links {
    transition: all 0.3s ease;
    display: flex;
    list-style: none;
    gap: 30px;
}


.nav-links li {
    margin-left: 20px;
}

.logo {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1e8f4c;
    letter-spacing: 2px;
}

.logo span {
    font-family: 'Playfair Display', serif;
    display: block;
    font-size: 14px;
    font-style: italic;
    color: #ccc;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #1e8f4c;
}

.nav-links a:hover {
    color: #f5c542;
}
/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }
}

/* ===== NAVBAR ===== */

.navbar{
    width:100%;
    height:70px;
    padding:0 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:linear-gradient(to right,#f5f5f5,#c7a46b);
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* ===== LOGO ===== */

.logo img{
    width:130px;
    height:auto;
    object-fit:contain;
}

/* ===== NAV LINKS ===== */

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;

    list-style:none;
}

.nav-links li{
    list-style:none;
}

.nav-links li a{
    text-decoration:none;
    color:#111;

    font-size:17px;
    font-weight:500;

    transition:0.3s;
}

.nav-links li a:hover{
    color:white;
}

/* ===== MENU TOGGLE ===== */

.menu-toggle{
    display:none;

    font-size:32px;
    color:#111;

    cursor:pointer;
}

/* ===== MOBILE VIEW ===== */

@media(max-width:768px){

    .navbar{
        height:65px;
        padding:0 15px;
    }

    .logo img{
        width:110px;
    }

    .menu-toggle{
        display:block;
        z-index:1001;
    }

    .nav-links{
        position:fixed;

        top:0;
        right:-100%;

        width:100%;
        height:100vh;

        background:#000;

        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;

        gap:40px;

        transition:0.4s ease;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links li a{
        color:#fff;
        font-size:28px;
    }
}





/* HERO SECTION */

.hero{
    height:90vh;
    background:
    linear-gradient(rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)),
    url("../images/bg.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-content{
    max-width:850px;
    color:#fff;
}

.hero-content h1{
    font-size:70px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    transition:0.4s;
}

.btn-primary{
    background:#d4a762;
    color:#fff;
}

.btn-primary:hover{
    background:#b88943;
    transform:translateY(-5px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}


/* FEATURES */

.features{
    width:100%;
    padding:90px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:45px 30px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.icon{
    font-size:45px;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}


/* COLLECTIONS */

.collections{
    width:100%;
    padding:20px 8% 100px;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:50px;
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}

.section-title h2::after{
    content:"";
    width:120px;
    height:4px;
    background:#d4a762;
    display:block;
    margin:15px auto 0;
    border-radius:10px;
}

.section-title p{
    color:#666;
}

.collection-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.collection-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.collection-card:hover{
    transform:translateY(-10px);
}

.collection-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.card-content{
    padding:30px;
    text-align:center;
}

.card-content h3{
    font-size:30px;
    margin-bottom:15px;
}

.card-content p{
    color:#666;
    margin-bottom:25px;
}

.card-content button{
    padding:14px 28px;
    border:none;
    background:#d4a762;
    color:#fff;
    border-radius:50px;
    cursor:pointer;
    transition:0.4s;
}

.card-content button:hover{
    background:#b88943;
}


/* CONSULTATION */

.consultation{
    width:100%;
    padding:100px 8%;
    background: linear-gradient(90deg, #a09f9f, #a09f9f, #c8a165);
}

.consult-box{
    max-width:650px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:30px;
}

.consult-box h2{
    text-align:center;
    font-size:45px;
    margin-bottom:20px;
}

.consult-box p{
    text-align:center;
    color:#666;
    margin-bottom:40px;
}

form{
    display:grid;
    gap:20px;
}

form input,
form textarea{
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
}

form textarea{
    height:100px;
    resize:none;
}

form button{
    padding:18px;
    border:none;
    background:#d4a762;
    color:#fff;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
}


/* RESPONSIVE */

@media(max-width:992px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .hero-content h1{
        font-size:50px;
    }
}

@media(max-width:768px){

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero{
        height:auto;
        padding:120px 20px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .section-title h2,
    .consult-box h2{
        font-size:34px;
    }

    .consult-box{
        padding:35px 25px;
    }
}


/* FOOTER */
.footer {
    background: linear-gradient(90deg, #a09f9f84, #a09f9f89, #c8a0658d);
    border-top: 1px solid gray;
    color: #fff;
    padding: 40px 20px 10px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left h3,
.footer-right h3 {
    margin-bottom: 10px;
    margin-right: 60px;
    color: #f5c542;
}

.footer-left p {
    line-height: 1.6;
    font-size: 14px;
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-right ul li {
    margin-bottom: 8px;
}

.footer-right ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-right ul li a:hover {
    color: #f5c542;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 0px;
    padding-top: 10px;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: white;
}


