/* Custom colors */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2B48C;
    --accent-color: #F5DEB3;
    --dark-color: #2C1A0A;
    --light-color: #FFF8E7;
}

body {
    font-family: 'Georgia', serif;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.navbar {
    background-color: var(--dark-color);
}

.navbar-brand {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: var(--accent-color) !important;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}
/* Common Styles */
.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6);
    z-index: 0;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 20;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 1rem;
}

.banner-title {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.banner-btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}


.pattern-6 .banner-content {
    justify-content: flex-start;
    padding-top: 5%;
}

.pattern-6 .banner-title {
    font-size: 5rem;
    -webkit-text-stroke: 2px white;
    color: transparent;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    

    .pattern-6 .banner-title {
        font-size: 3rem;
    }
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 25%;
}

.menu-item {
    transition: transform 0.3s;
    margin-bottom: 30px;
}

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

.menu-item img {
    border-radius: 10px;
    object-fit: cover;
    height: 200px;
}

.chef-card {
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.chef-card:hover {
    transform: translateY(-5px);
}

.chef-card img {
    border-radius: 10px;
    object-fit: cover;
    height: 300px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-item {
    flex: 1 0 300px;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
}

.footer-title {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}


/* Carousel styling */
.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 20%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

.carousel-caption h1 {
    font-size: 2.5rem !important;
    font-weight: bold;
    color: var(--accent-color);
}

.carousel-caption p {
    font-size: 1.3rem !important;
    color: var(--light-color);
}

@media screen and (max-width:1048px) {
    .carousel-caption {
        bottom: 10%;
        padding: 25px 15px;
    }

    .carousel-caption h1 {
        font-size: 1.5rem !important;
    }
    
    .carousel-caption p {
        font-size: 1rem !important;
    }
}

@media screen and (max-width:768px) {
    .carousel-caption {
        bottom: 10%;
        padding: 25px 15px;
    }

    .carousel-caption h1 {
        font-size: 1.3rem !important;
    }
    
    .carousel-caption p {
        font-size: 0.9rem !important;
    }
}

@media screen and (max-width:500px) {
    .carousel-caption {
        bottom: 8%;
        padding: 20px 10px;
    }
    .carousel-caption h1 {
        font-size: 1.1rem !important;
    }
    
    .carousel-caption p {
        font-size: 0.8rem !important;
    }
}