/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark Grey for standard text */
    background-color: #FAF9F6; /* Cream/Off-White for general background */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #6B1E2E; /* Dark Maroon for headings */
}

p {
    color: #333333; /* Ensure readability */
}

a {
    color: #F4C430; /* Golden Yellow for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFD700; /* Brighter Golden Yellow on hover */
}

.btn-primary {
    background-color: #6B1E2E; /* Dark Maroon */
    border-color: #6B1E2E;
    color: #FFFFFF;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #800020; /* Slightly darker maroon */
    border-color: #800020;
}

.custom-btn-gold {
    background-color: #F4C430; /* Golden Yellow */
    border-color: #F4C430;
    color: #6B1E2E; /* Dark Maroon text */
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.custom-btn-gold:hover {
    background-color: #FFD700; /* Brighter Golden Yellow */
    border-color: #FFD700;
    color: #800020;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-btn-gold-outline {
    border: 2px solid #F4C430; /* Golden Yellow border */
    color: #F4C430; /* Golden Yellow text */
    background-color: transparent;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.custom-btn-gold-outline:hover {
    background-color: #F4C430; /* Golden Yellow background */
    color: #6B1E2E; /* Dark Maroon text */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bg-light-cream {
    background-color: #FAF9F6;
}

.bg-dark-maroon {
    background-color: #6B1E2E;
}

.bg-dark-maroon-light {
    background-color: rgba(107, 30, 46, 0.8);
}

.text-dark-maroon {
    color: #6B1E2E;
}

.text-primary {
    color: #F4C430 !important;
}

.text-dark-grey {
    color: #333333;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

/* Cookie Consent Banner */
.cookie-banner {
    background-color: #556B2F; /* Olive Green */
    color: #FFFFFF;
    position: fixed;
    bottom:  0;
    left: 0;
    width: 100%;
    z-index: 1050;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out forwards;
}

.cookie-banner .btn-light {
    background-color: #FFFFFF;
    color: #556B2F;
    border: none;
    font-weight: 600;
}

.cookie-banner .btn-outline-light {
    border-color: #FFFFFF;
    color: #FFFFFF;
    font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
    background-color: #FFFFFF;
    color: #556B2F;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p.lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navbar */
.navbar {
    background-color: rgba(107, 30, 46, 0.9); /* Semi-transparent Dark Maroon */
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: #F4C430 !important;
    display: flex;
    align-items: center;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #F4C430 !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* About Us Section */
.about-us-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-us-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
}

.about-img-large {
    max-height: 450px;
    object-fit: cover;
    width: 100%;
}

.about-img-small {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Features Section */
.features-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.feature-card {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    color: #F4C430; /* Golden Yellow */
}

/* Menu & Catering Pricing Section */
.menu-catering-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.menu-category h4 {
    border-bottom: 2px solid #F4C430; /* Golden Yellow */
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.menu-item span {
    font-size: 1.1rem;
}

.total-price-display {
    background-color: #6B1E2E; /* Dark Maroon */
    color: #FFFFFF;
    border-radius: 8px;
}

.total-price-display #total-price {
    font-size: 3.5rem;
    color: #F4C430; /* Golden Yellow */
    transition: color 0.3s ease, font-size 0.3s ease;
}

/* Our Team Section */
.team-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.team-member-card {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #F4C430; /* Golden Yellow border */
}

.team-member-card .overlay-content {
    background-color: rgba(107, 30, 46, 0.9); /* Dark Maroon semi-transparent */
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border-radius: 8px;
}

.team-member-card:hover .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #F4C430;
}

.text-warning {
    color: #F4C430 !important; /* Ensure golden color for stars */
}

/* FAQ Section */
.faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #F5F5DC; /* Light Cream */
    color: #6B1E2E; /* Dark Maroon */
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background-color: #6B1E2E; /* Dark Maroon */
    color: #F4C430; /* Golden Yellow */
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    background-color: #FFFFFF;
    color: #333333;
    padding: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-info-card {
    background-color: rgba(107, 30, 46, 0.8); /* Slightly transparent dark maroon */
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 3.5rem;
    color: #F4C430; /* Golden Yellow */
}

/* Footer */
.footer-section {
    background-color: #2F4F4F; /* Dark Slate Grey */
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-logo-link .logo-img-footer {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links .list-inline-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links .list-inline-item a:hover {
    color: #F4C430;
}

/* Sticky Mini-Footer */
.sticky-mini-footer {
    background-color: rgba(0, 0, 0, 0.85); /* Dark semi-transparent */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
    z-index: 1040;
    display: none; /* Hidden by default, shown for small screens by JS/media query */
}

@media (max-width: 991.98px) {
    .sticky-mini-footer {
        display: flex !important;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p.lead {
        font-size: 1.1rem;
    }
    .navbar-collapse {
        background-color: rgba(107, 30, 46, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }
}

.fab-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-btn.btn-primary {
    background-color: #6B1E2E;
    border-color: #6B1E2E;
}

.fab-btn.btn-primary:hover {
    background-color: #800020;
    border-color: #800020;
}

.fab-btn.btn-secondary {
    background-color: #F4C430;
    border-color: #F4C430;
    color: #6B1E2E;
}

.fab-btn.btn-secondary:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #800020;
}

.fab-btn.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.fab-btn.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.fab-btn.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.fab-btn.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
}

.z-index-1 {
    z-index: 1;
}
/* Styles for the main content block */
.trustPillarUnit {
    padding-top: 4rem; /* Top padding for the section */
    padding-bottom: 4rem; /* Bottom padding for the section */
    padding-left: 1.5rem; /* Left padding for the section */
    padding-right: 1.5rem; /* Right padding for the section */
    /* For centered content blocks, consider adding max-width and margin: auto */
    /* max-width: 1200px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles within .trustPillarUnit */
.trustPillarUnit h1 {
    font-size: 2.2rem; /* Moderate font size for H1 */
    margin-bottom: 1.5rem; /* Space below H1 */
    line-height: 1.2; /* Line height for readability */
    color: #6B1E2E; /* Dark Maroon, consistent with previous headings */
}

.trustPillarUnit h2 {
    font-size: 1.8rem; /* Moderate font size for H2 */
    margin-bottom: 1.2rem; /* Space below H2 */
    line-height: 1.3;
    color: #6B1E2E;
}

.trustPillarUnit h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    margin-bottom: 1rem; /* Space below H3 */
    line-height: 1.4;
    color: #6B1E2E;
}

.trustPillarUnit h4 {
    font-size: 1.3rem; /* Moderate font size for H4 */
    margin-bottom: 0.8rem; /* Space below H4 */
    line-height: 1.5;
    color: #6B1E2E;
}

.trustPillarUnit h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    margin-bottom: 0.6rem; /* Space below H5 */
    line-height: 1.6;
    color: #6B1E2E;
}

/* Paragraph styles within .trustPillarUnit */
.trustPillarUnit p {
    font-size: 1rem; /* Standard font size for paragraphs */
    margin-bottom: 1rem; /* Space below paragraphs */
    line-height: 1.7; /* Line height for readability */
    color: #333333; /* Dark Grey, consistent with previous body text */
}

/* Unordered list styles within .trustPillarUnit */
.trustPillarUnit ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 20px; /* Indentation for list items */
    color: #333333;
}

/* List item styles within .trustPillarUnit */
.trustPillarUnit li {
    font-size: 1rem; /* Standard font size for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Line height for readability */
    color: #333333;
}

/* Optional: Last paragraph/list item in a block might not need bottom margin */
.trustPillarUnit p:last-child,
.trustPillarUnit ul:last-child,
.trustPillarUnit ol:last-child {
    margin-bottom: 0;
}
