/* ===========================
   GLOBAL STYLES
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #fffaf3;
    color: #3a2c23;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}


/* ===========================
   HEADER / NAVIGATION
=========================== */
header {
    width: 100%;
    background-color: #3a2c23;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: #d4a373;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #d4a373;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    position: relative;
    height: 100vh;
    background: url("images/home_img/hero.jpg") center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #d4a373;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    transition: background 0.3s;
    font-weight: 500;
}

.btn:hover {
    background: #b8874a;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 100px 60px;
    gap: 40px;
    background: #fffaf3;
}

.about-text {
    flex: 1 1 45%;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #3a2c23;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #4d3e34;
}

.about-images {
    flex: 1 1 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.about-images img {
    width: 32%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-images img:hover {
    transform: scale(1.05);
}

/* ===========================
   MENU SECTION
=========================== */
.menu-preview {
    text-align: center;
    padding: 80px 60px;
    background: #f6eee4;
}

.menu-preview h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.menu-items .item {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.menu-items .item:hover {
    transform: translateY(-5px);
}

.menu-items .item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-items .item h3 {
    margin-top: 10px;
    color: #3a2c23;
}

.menu-page .container h2{
    margin: 20px 570px;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #3a2c23;
}

/* ===========================
   GALLERY SECTION
=========================== */
.gallery-preview {
    text-align: center;
    padding: 80px 60px;
    background: #fffaf5;
}

.gallery-preview h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ----------------gallery-page------------------- */

.gallery-page .container .gallery-grid{
    margin: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px; 
}

.gallery-page .container .gallery-grid img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-page .container .gallery-grid img:hover{
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery-page .container h2 {
    margin: 20px 50%;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #3a2c23;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact {
    text-align: center;
    padding: 100px 60px;
    background: #f6eee4;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: #3a2c23;
    color: #fff;
    text-align: center;
    padding: 25px 10px;
    font-size: 0.9rem;
}


/* ========================
        service
============================ */

.service-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: inline-block;
    margin: 30px 90px;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item  img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}


.service-item  h3 {
    margin-top: 5px;
    color: #3a2c23;
}

.services-page .container h2{
    margin: 30px 550px;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #3a2c23;
}






/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 992px) {
    header {
        flex-direction: column;
        padding: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-images {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .menu-items .item {
        width: 90%;
    }

    .about-images img {
        width: 48%;
        height: 160px;
    }

    .gallery-images img {
        height: 180px;
    }
}

/* ===========================
   CONTACT FORM ENHANCEMENTS
=========================== */
.contact-page h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #3a2c23;
    margin: 20px 550px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 30px auto;
    background: #fffaf3;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid #d4a373;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    background: #fffef8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b8874a;
    box-shadow: 0 0 10px rgba(184, 135, 74, 0.3);
}

.contact-form button {
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    background: #d4a373;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: #b8874a;
    transform: scale(1.05);
}

/* Contact Info Styling */
.contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    color: #4d3e34;
}

.contact-info p {
    margin: 8px 0;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .contact-form {
        padding: 20px;
    }
}

