/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif; /* Keep consistent or choose a distinct one */
    color: #212529;
}

.text-primary-gradient {
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}



.bg-gradient-green-blue {
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    color: #fff;
}

.bg-gradient-blue-green {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: #fff;
}

.bg-gradient-yellow-green {
    background: linear-gradient(135deg, #FFC107 0%, #4CAF50 100%);
    color: #fff;
}

.bg-light-blue {
    background-color: #e3f2fd; /* Light blue tint */
}

/* Buttons */
.btn {
    text-decoration: none !important;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #fff;
}

.btn-primary:hover {
    background-color: #388E3C;
    border-color: #388E3C;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: #4CAF50;
    border-color: #4CAF50;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background-color: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navbar */
#mainNav {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#mainNav .navbar-brand {
    color: #4CAF50;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

#mainNav .navbar-brand:hover {
    color: #2196F3;
}

#mainNav .navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: #2196F3;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    padding-top: 5rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-icon-item {
    color: #FFC107;
}

.hero-icon-item .icon-large {
    font-size: 3.5rem;
    transition: transform 0.3s ease;
}

.hero-icon-item:hover .icon-large {
    transform: scale(1.1);
}

.hero-icon-item p {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-feature {
    color: #333;
}

.about-feature i {
    color: #FFC107;
}

.about-feature h5 {
    color: #212529;
}

/* Services Section */
.service-step {
    background-color: #fff;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.service-step .step-icon i {
    color: #2196F3;
}

.service-step h3 {
    color: #212529;
}

.service-step p {
    color: #6c757d;
}

/* Events Section */
.event-item {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.event-img-container {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.event-item .card-title {
    color: #4CAF50;
}

.event-item .card-text {
    color: #6c757d;
}

.event-item .card-body i {
    color: #2196F3;
}

/* Booking Modal */
.modal-content {
    border-radius: 1rem;
}

.modal-header {
    background-color: #4CAF50;
    color: #fff;
    border-bottom: none;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-title {
    color: #fff;
}

.form-control:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 0.25rem rgba(33, 150, 243, 0.25);
}

/* Gallery Section */
.gallery-filter-btn {
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.gallery-grid .gallery-item {
    height: 100%; /* Ensure equal height containers */
    display: flex;
    align-items: stretch;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid .gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Team Section */
.team-card, .team-member-card {
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover, .team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.founder-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #FFC107;
}

.team-member-card img {
    height: 250px;
    object-fit: cover;
}

.team-member-card .card-body {
    background-color: #fff;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.team-member-card .card-title {
    color: #212529;
}

.team-member-card p {
    color: #4CAF50;
}

/* Stats Section */
.stats-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid #FFC107;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stats-circle:hover {
    transform: scale(1.05);
    border-color: #2196F3;
}

.stats-circle h3 {
    color: #4CAF50;
    font-size: 3.5rem;
}

.stats-circle p {
    color: #333;
    font-weight: 600;
}

/* How It Works Section */
.accordion-item {
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: none;
}

.accordion-button {
    background-color: #fff;
    color: #212529;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #4CAF50;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
    border-color: #4CAF50;
}

.accordion-body {
    background-color: #f0f8ff; /* Light blue */
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    padding: 1.5rem;
}

.accordion-body img {
    border-radius: 0.5rem;
}

/* FAQ Section */
.faq-questions .list-group-item {
    border: none;
    border-left: 4px solid transparent;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.faq-questions .list-group-item:hover {
    background-color: #e9ecef;
    border-left-color: #2196F3;
}

.faq-questions .list-group-item.active {
    background-color: #2196F3;
    color: #fff;
    border-left-color: #4CAF50;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-answers {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-answers h5 {
    color: #4CAF50;
}

/* Contact Section */
.contact-map {
    height: 450px;
    width: 100%;
    border: 5px solid #FFC107;
}

/* Footer */
.footer {
    background-color: #212529 !important;
    color: #f8f9fa;
}

.footer .navbar-brand {
    color: #fff;
}

.footer .logo-img-footer {
    height: 35px;
    width: auto;
}

.footer h5 {
    color: #4CAF50;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #FFC107;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 0.75rem;
    z-index: 1050;
    transform: translateX(120%); /* Initially off-screen */
    transition: transform 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateX(0); /* Slide in */
}

.cookie-banner .card-title {
    color: #4CAF50;
}

.cookie-banner .card-text {
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1.1rem;
    }
    .hero-icon-item .icon-large {
        font-size: 2.5rem;
    }
    .contact-map {
        height: 300px;
    }
    .event-img-container {
        min-height: 200px;
    }
    .team-card .founder-avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 7rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .hero-icon-item {
        width: 45%; /* Two icons per row */
    }
    .service-step {
        margin-bottom: 1.5rem;
    }
    .faq-questions, .faq-answers {
        padding: 1rem;
    }
    .faq-questions .list-group-item {
        font-size: 0.9rem;
    }
    .faq-answers h5 {
        font-size: 1.25rem;
    }
    /* .stats-circle {
        width: 150px;
        height: 150px;
    } */
    .stats-circle h3 {
        font-size: 2.5rem;
    }
    .team-card .row {
        flex-direction: column;
        text-align: center;
    }
    .team-card .col-md-4, .team-card .col-md-8 {
        width: 100%;
    }
    .team-card .founder-avatar {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    .hero-section .lead {
        font-size: 0.9rem;
    }
    .hero-icon-item {
        width: 100%; /* One icon per row */
    }
    /* .stats-circle {
        width: 120px;
        height: 120px;
    } */
    .stats-circle h3 {
        font-size: 2rem;
    }
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}/* Styles for the consent tunnel grid container */
.consentTunnelGrid {
    padding-top: 3rem; /* Top padding for the content area */
    padding-left: 1.5rem; /* Left padding for the content area */
    padding-right: 1.5rem; /* Right padding for the content area */
    max-width: 960px; /* Maximum width for content readability */
    margin-left: auto; /* Center the content container horizontally */
    margin-right: auto; /* Center the content container horizontally */
}

/* Heading styles within the consent tunnel grid */
.consentTunnelGrid h1 {
    font-size: 1.75rem; /* Moderate font size for primary headings */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2rem; /* Top margin for spacing before h1 */
    margin-bottom: 1rem; /* Bottom margin for spacing after h1 */
    color: #212529; /* Dark color for headings */
}

.consentTunnelGrid h2 {
    font-size: 1.5rem; /* Moderate font size for secondary headings */
    line-height: 1.3;
    margin-top: 1.75rem;
    margin-bottom: 0.9rem;
    color: #212529;
}

.consentTunnelGrid h3 {
    font-size: 1.25rem; /* Moderate font size for tertiary headings */
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #212529;
}

.consentTunnelGrid h4 {
    font-size: 1.1rem; /* Slightly larger than paragraph text */
    line-height: 1.5;
    margin-top: 1.25rem;
    margin-bottom: 0.7rem;
    color: #212529;
}

.consentTunnelGrid h5 {
    font-size: 1rem; /* Similar to paragraph text, but bold by default */
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: #212529;
}

/* Paragraph styles */
.consentTunnelGrid p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Generous line height for readability */
    margin-bottom: 1rem; /* Bottom margin for paragraph spacing */
    color: #333; /* Standard text color */
}

/* Unordered list styles */
.consentTunnelGrid ul {
    list-style: disc; /* Default disc bullet points */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Bottom margin for list spacing */
    color: #333; /* Standard text color */
}

/* Ordered list styles (added for completeness) */
.consentTunnelGrid ol {
    list-style: decimal; /* Default decimal numbering */
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* List item styles */
.consentTunnelGrid li {
    font-size: 1rem; /* Font size for list items */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Spacing between individual list items */
    color: #333; /* Standard text color */
}
