:root {
    --primary: #c19a6b;  /* Warm gold for elegance */
    --secondary: #8b0000; /* Deep red for passion */
    --dark: #1a1a1a;     /* Dark for contrast */
    --light: #f8f5f2;    /* Cream for background */
    --text: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --black: #000000;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.section {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    font-size: 36px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto 0;
}

.section-subtitle {
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .contact-info span {
    margin-right: 15px;
}

.top-bar .social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.top-bar .social-links a:hover {
    color: var(--primary);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 10px 15px;
    position: relative;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover:before {
    width: calc(100% - 30px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.btn-reservation {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-reservation:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Hero Sections */
.wedding-hero,
.grills-hero,.depot-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.wedding-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/weddings/hero-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.grills-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/grills/hero-bg.jpg');
}
.depot-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/restaurant-depot/hero-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;

}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Venue Cards */
.venue-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.venue-card img {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.venue-card:hover img {
    transform: scale(1.05);
}

.venue-card .card-body {
    padding: 30px;
}

.venue-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.venue-card .text-muted {
    color: var(--text-light) !important;
    margin-bottom: 20px;
}

.venue-features div {
    margin-bottom: 10px;
}

.venue-features i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Services */
.service-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Gallery */
.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.gallery-item img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: var(--white);
    font-size: 30px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--dark);
    margin-bottom: 30px;
}

.form-control {
    height: 50px;
    border-radius: 0;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

textarea.form-control {
    height: 150px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
}

.fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 50px;
    }
    
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .contact-info {
        margin-bottom: 10px;
    }
    
    .footer-main {
        padding: 60px 0 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 26px;
    }
}
.location-image {
    height: 200px; /* adjust to your preferred height */
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.venue-image {
    height: 250px; /* Adjust this value as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
}
