/* Start: Home Page */
/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding-top: 0;
    color: #333;
    background-color: #f8f1e5;
    overflow-x: hidden;
}

/*===================================================================================== */

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 5%;
    background-color: transparent;
    transition: background-color 0.4s ease-in-out, padding 0.3s ease-in-out;
}

/* Header Container */
.header-container {
    max-width: 1200px;
    margin: auto auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Add background when scrolled */
.scrolled {
    background-color: #5c1c1ce6;
    padding: 15px 5%;
}

/* Logo */
.logo img {
    height: 40px;
    max-width: 100%;
}

/* Navigation */
nav {
    flex-grow: 1;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: #F8F1E5;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #D4AF37;
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav ul {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }

    nav ul {
        display: none;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 32px;
    }
}

/*===================================================================================== */

/* Hero Section */
.hero {
    background: linear-gradient(#00000066, #00000080),
        url('../images/home/Hero.png') no-repeat center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    position: relative;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

/* Hero Logo */
.hero img {
    max-width: 50%;
    max-height: 175px;
    height: auto;
    margin-bottom: 20px;
    margin-left: 5%;
    align-self: flex-start;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: bounce 1.5s infinite;
}

/* Scroll Arrow Icon */
.scroll-arrow::before {
    content: "";
    width: 12px;
    height: 12px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    display: inline-block;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero img {
        max-width: 70%;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 10px;
    }

    .hero img {
        max-width: 60%;
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .hero img {
        max-width: 80%;
        max-height: 200px;
    }

    .scroll-arrow {
        width: 30px;
        height: 30px;
    }

    .scroll-arrow::before {
        width: 10px;
        height: 10px;
    }
}

/*===================================================================================== */

/* About Us Section */
.about {
    background-color: #F8F1E5;
    background-image: url('../images/home/pattern.png');
    background-size: contain;
    background-repeat: repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 80vh;
    width: 100%;
}

/* Text Container */
.container {
    background: #f8f1e5ec;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px #0000001a;
    max-width: 700px;
    text-align: center;
}

/* About Us Title */
.container h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #5C1C1C;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}

/* About Us Description */
.container p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
}

/* Styled Button */
.container .btn {
    background-color: #D4AF37;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover Effect */
.container .btn:hover {
    background-color: #b8952c;
    transform: scale(1.05);
}

.view-more-button {
    background-color: #D4AF37;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.view-more-button:hover {
    background-color: #B8892F;
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about {
        padding: 70px 15px;
        min-height: 70vh;
    }

    .container {
        padding: 20px;
        max-width: 90%;
    }

    .container h2 {
        font-size: 2.3rem;
    }

    .container p {
        font-size: 1.1rem;
    }

    .container .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.contact-us-button {
    background-color: #D4AF37;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-us-button:hover {
    background-color: #B8892F;
    transform: scale(1.05);
}

/*===================================================================================== */

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #5C1C1C;
    overflow: hidden;
    padding: 50px 0;
    text-align: center;
}

/* Carousel */
.carousel {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: auto;
    text-align: center;
}

/* Featured Dish Title */
.carousel-container h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #F8F1E5;
    font-family: "Playfair Display", serif;
    margin-bottom: 50px;
    padding: 0 20px;
}

/* Individual Dish */
.dish {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dish.active {
    display: flex;
}

/* Dish Content */
.dish-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

/* Dish Image */
.dish img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Dish Overlay (Description Container) */
.dish-overlay {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    background: linear-gradient(to top, #000000f7, #00000070);
    color: #ffffff;
    border-radius: 0 0 15px 15px;
    text-align: center;
    font-size: 1.2rem;
    padding: 15px 20px;
    box-sizing: border-box;
    bottom: 0;
}

/* Navigation Arrows */
.prev, .next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    z-index: 10;
}

.prev { left: 0; border-radius: 20px 0 0 20px; }
.next { right: 0; border-radius: 0 20px 20px 0; }

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-container {
        min-height: auto;
        padding: 20px 0;
    }

    .dish img {
        max-width: 100%;
    }

    .dish-overlay {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0 0 20px 20px;
        font-size: 1rem;
        padding: 15px 20px;
        background: linear-gradient(to bottom, #000000f7, #00000070);
    }

    .prev, .next {
        width: 45px;
        font-size: 20px;
    }
}

/*===================================================================================== */

/* Contact Section */
.contact {
    background-color: #F8F1E5;
    background-image: url('../images/home/pattern.png');
    background-size: contain;
    background-repeat: repeat;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

/* Contact Container */
.contact .container {
    background: #f8f1e5ec;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px #0000001a;
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Contact Heading */
.contact-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #5C1C1C;
    font-family: "Playfair Display", serif;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    font-family: "Open Sans", sans-serif;
}

/* Contact Information */
.contact-info p {
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}

.contact-info strong {
    font-weight: 700;
    color: #5C1C1C;
}

.contact-info a {
    text-decoration: none;
    color: #5C1C1C;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #D4AF37;
}

/* Contact Footer */
.contact-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    transition: transform 0.3s ease-in-out;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links img {
    width: 45px;
    height: 45px;
    filter: grayscale(20%);
    transition: filter 0.3s ease-in-out;
}

.social-links a:hover img {
    filter: grayscale(0%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact {
        padding: 70px 15px;
        min-height: 70vh;
    }

    .contact .container {
        padding: 20px;
        max-width: 90%;
    }

    .contact-heading {
        font-size: 2.5rem;
    }

    .contact-details {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 20px;
    }

    .social-links img {
        width: 40px;
        height: 40px;
    }
}

/*===================================================================================== */
