*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    line-height:1.6;
    color:#333;
}

header{
    background:#5C3D2E;
    color:#fff;
    padding:15px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav ul li a:hover{
    color:#FFD700;
}

.hero{
    position:relative;
    height:600px;
    overflow:hidden;
}

.slide{
    display:none;
    width:100%;
    height:600px;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.active{
    display:block;
}

.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    background:rgba(0,0,0,0.5);
    padding:20px;
    border-radius:10px;
}

.hero-text h1{
    font-size:50px;
}

.btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:#FFD700;
    color:#333;
    text-decoration:none;
    border-radius:5px;
}

.section{
    padding:70px 10%;
}

.section h2{
    text-align:center;
    margin-bottom:30px;
    color:#5C3D2E;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    box-shadow:0 4px 10px rgba(0,0,0,.1);
    border-radius:10px;
    overflow:hidden;
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-content{
    padding:15px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery img{
    width:100%;
    border-radius:10px;
    height:250px;
    object-fit:cover;
}

.about-container{
    display:flex;
    gap:40px;
    align-items:center;
    flex-wrap:wrap;
}

.about-container img{
    width:500px;
    max-width:100%;
    border-radius:10px;
}

.contact-form{
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
}

.contact-form button{
    background:#5C3D2E;
    color:white;
    border:none;
    padding:12px 30px;
    cursor:pointer;
}

footer{
    background:#5C3D2E;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

.page-banner{
    background:#f4e1d2;
    text-align:center;
    padding:70px 20px;
}

.page-banner h1{
    color:#5C3D2E;
}

/* =========================
   GLOBAL STYLES
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    line-height:1.6;
    color:#333;
    background:#fffaf5;
}

/* =========================
   HEADER
========================= */

header{
    background:#4e342e;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,0.15);
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#ffcc80;
    letter-spacing:1px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#ffcc80;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    height:650px;
    overflow:hidden;
}

.slide{
    display:none;
    width:100%;
    height:650px;
}

.slide.active{
    display:block;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    top:0;
    left:0;
}

.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    width:80%;
    z-index:10;
}

.hero-text h1{
    font-size:60px;
    margin-bottom:15px;
}

.hero-text p{
    font-size:22px;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    background:#ffb74d;
    color:#333;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:white;
    transform:translateY(-3px);
}

/* =========================
   PAGE BANNER
========================= */

.page-banner{
    background:linear-gradient(
        rgba(78,52,46,0.8),
        rgba(78,52,46,0.8)
    ),
    url('../images/hero2.jpg');

    background-size:cover;
    background-position:center;
    padding:100px 20px;
    text-align:center;
}

.page-banner h1{
    color:white;
    font-size:50px;
}

/* =========================
   COMMON SECTION
========================= */

.section{
    padding:80px 10%;
}

.section h2{
    text-align:center;
    color:#4e342e;
    font-size:40px;
    margin-bottom:30px;
}

.section p{
    font-size:17px;
}

/* =========================
   CARDS
========================= */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-content{
    padding:25px;
}

.card-content h3{
    color:#4e342e;
    margin-bottom:10px;
}

.card-content p{
    color:#666;
}

/* =========================
   ABOUT PAGE
========================= */

.about-container{
    display:flex;
    gap:50px;
    align-items:center;
    flex-wrap:wrap;
}

.about-container img{
    width:500px;
    max-width:100%;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.about-container div{
    flex:1;
}

.about-container h2{
    text-align:left;
}

/* =========================
   GALLERY
========================= */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:12px;
    transition:0.4s;
    cursor:pointer;
}

.gallery img:hover{
    transform:scale(1.05);
}

/* =========================
   CONTACT FORM
========================= */

.contact-form{
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    max-width:800px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#ffb74d;
}

.contact-form button{
    background:#4e342e;
    color:white;
    border:none;
    padding:15px 35px;
    border-radius:30px;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.contact-form button:hover{
    background:#6d4c41;
}

.contact-form h3{
    margin-top:20px;
    color:#4e342e;
}

/* =========================
   FEATURE SECTION
========================= */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
}

.feature-box{
    text-align:center;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 3px 15px rgba(0,0,0,0.08);
}

.feature-box h3{
    color:#4e342e;
    margin-bottom:10px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#4e342e;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:50px;
}

footer p{
    margin:0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    header{
        flex-direction:column;
        padding:20px;
    }

    nav ul{
        margin-top:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav ul li{
        margin:10px;
    }

    .hero-text h1{
        font-size:42px;
    }

    .hero-text p{
        font-size:18px;
    }

    .page-banner h1{
        font-size:40px;
    }
}

@media(max-width:768px){

    .hero{
        height:500px;
    }

    .slide{
        height:500px;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:16px;
    }

    .section{
        padding:60px 5%;
    }

    .section h2{
        font-size:32px;
    }

    .page-banner{
        padding:70px 20px;
    }

    .page-banner h1{
        font-size:34px;
    }
}

@media(max-width:480px){

    .logo{
        font-size:24px;
    }

    nav ul{
        flex-direction:column;
        text-align:center;
    }

    .hero-text h1{
        font-size:28px;
    }

    .hero-text p{
        font-size:14px;
    }

    .btn{
        padding:12px 25px;
    }

    .contact-form{
        padding:25px;
    }
}