/* Bootstrap-Compatible Custom Styles for Nomadic Roots Herbal */

/* CSS Custom Properties for Theme Colors */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    --accent-primary: #8B4513;
    --accent-secondary: #A0522D;
    --accent-hover: #654321;
    --border-color: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --overlay-bg: rgba(255, 255, 255, 0.9);
    --footer-bg: #2c3e50;
    --footer-text: #bdc3c7;
    --footer-border: #34495e;
}

/* Dark Mode Colors */
.dark-mode {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3a3a3a;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --accent-primary: #D2691E;
    --accent-secondary: #CD853F;
    --accent-hover: #B8860B;
    --border-color: #404040;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.4);
    --overlay-bg: rgba(26, 26, 26, 0.9);
    --footer-bg: #1a1a1a;
    --footer-text: #b0b0b0;
    --footer-border: #404040;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Account for fixed navbar height plus buffer */
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Enable theme transitions only after page load */
body.transitions-enabled {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.transitions-enabled * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oooh Baby', cursive;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

p {
    color: var(--text-secondary);
}

/* Bootstrap Button Overrides */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-primary));
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

/* Navigation Customization */
.navbar {
    background: var(--overlay-bg) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--accent-primary) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--accent-hover) !important;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-text h2 {
    color: var(--accent-primary);
    font-size: 2rem;
    font-family: 'Oooh Baby', cursive;
}

.logo-text span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: -8px;
    display: block;
}

.nav-link {
    color: var(--text-primary) !important;
    font-family: 'Oooh Baby', cursive;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 8px;
}

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

/* Animated navigation underline */
.navbar-nav {
    position: relative;
}

.navbar-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.navbar-nav:hover::after {
    opacity: 1;
}

.nav-item {
    display: flex;
    padding: 0 0.2rem;
}

.nav-item:hover ~ .navbar-nav::after,
.nav-item:hover .navbar-nav::after {
    opacity: 1;
}

/* Individual nav item underlines for positioning */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-image-bg {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: calc(100% + 20px);
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-text {
    background: var(--overlay-bg);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px var(--shadow-light);
    margin: 2rem 0;
}

.hero-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.welcome-text {
    font-size: 1.1rem;
    color: var(--accent-secondary);
    font-style: italic;
    margin-top: 2rem;
}

/* Section spacing fix */
section {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
}

/* Ensure sections connect seamlessly */
.hero + .services,
.services + .big3for33,
.big3for33 + .gatherings,
.gatherings + .meet-leanna,
.meet-leanna + .connect {
    margin-top: 0;
    border-top: none;
}

/* Remove default margins from main and container elements */
main {
    margin: 0;
    padding: 0;
}

.container, .container-fluid {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
}

/* Fix hero section container spacing */
.hero .container-fluid {
    margin: 0;
    padding: 0;
    height: 100%;
}

.hero .row {
    margin: 0;
    height: 100%;
}

/* Services Section */
.services {
    background: var(--bg-secondary);
    padding: 4rem 0;
    margin: 0;
    margin-top: 0 !important;
}

/* Override Bootstrap padding for seamless connection */
.services.py-5 {
    padding-top: 4rem !important;
    margin-top: 0 !important;
}

.section-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.services-text h2 {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.services-list {
    margin-top: 2rem;
}

.services-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.services-list i {
    color: var(--accent-primary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Big 3 for 33 Service Section */
.big3for33 {
    background: var(--bg-primary);
    padding: 4rem 0;
    position: relative;
    margin: 0;
}

.big3for33::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(160, 82, 45, 0.05));
    pointer-events: none;
}

.service-badge {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.service-name {
    font-size: 1.1rem;
}

.big3-text h2 {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.big3-features {
    margin: 2rem 0;
}

.feature-item {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
}

.service-includes {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.service-includes h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.includes-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.includes-list i {
    color: var(--accent-primary);
    margin-right: 1rem;
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
}

.big3-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.big3-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.service-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.big3-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.testimonial-highlight {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    margin-top: 2rem;
    text-align: center;
}

.testimonial-highlight blockquote {
    margin: 0;
    font-style: italic;
}

.testimonial-highlight p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-highlight cite {
    color: var(--accent-primary);
    font-weight: 600;
    font-style: normal;
}

/* Gatherings Section */
.gatherings {
    background: var(--bg-secondary);
    padding: 4rem 0;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.gathering-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.gathering-card:hover {
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.card-img-top {
    height: 400px;
    object-fit: cover;
}

.card-title {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.gathering-time {
    color: var(--accent-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.card-text {
    color: var(--text-secondary);
}

/* Meet LeAnna Section */
.meet-leanna {
    background: var(--bg-primary);
    padding: 4rem 0;
    margin: 0;
}

.herbalist-photo {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.herbalist-text h2 {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.blockquote {
    border-left: 4px solid var(--accent-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 10px;
}

.blockquote p {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.blockquote-footer {
    color: var(--accent-secondary);
    font-size: 0.9rem;
    font-style: normal;
}

/* Connect Section */
.connect {
    background: var(--bg-secondary);
    padding: 4rem 0;
    margin: 0;
}

.connect-text h2 {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.contact-item {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light);
    margin-top: 2rem;
}

.contact-item i {
    color: var(--accent-primary);
    font-size: 2rem;
}

.contact-item h4 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-item a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-hover);
}

.connect-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

/* Form Styles */
.form-control {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--footer-bg) !important;
    color: var(--footer-text);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/passion-flower-with-bee.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer h3,
.footer h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--footer-text);
    margin-bottom: 0.5rem;
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer .text-light {
    color: var(--footer-text) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .text-light:hover {
    color: var(--accent-secondary) !important;
}

.footer-bottom {
    border-top: 1px solid var(--footer-border) !important;
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Theme Toggle in Navigation */
/* Integrated Theme Toggle */
.nav-theme-toggle {
    background: var(--bg-primary);
    border: 2px solid var(--text-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 20px;
    width: 60px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 0 0 15px;
    overflow: hidden;
    font-family: 'Oooh Baby', cursive;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

/* Nav item alignment for theme toggle */
.nav-item .nav-theme-toggle {
    align-self: center;
}

.nav-theme-toggle:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--bg-secondary);
    transform: none;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.nav-theme-toggle:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* Theme toggle icons */
.nav-theme-toggle i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Dark mode theme toggle styling */
.dark-mode .nav-theme-toggle {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
    color: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.dark-mode .nav-theme-toggle:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--bg-tertiary);
}

/* Hamburger Menu Styling */
.navbar-toggler {
    border: 2px solid var(--text-secondary);
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 0.375rem 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.15);
}

.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%28102, 102, 102, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Dark mode hamburger menu */
.dark-mode .navbar-toggler {
    border-color: var(--text-secondary);
    background: var(--bg-secondary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.dark-mode .navbar-toggler:hover,
.dark-mode .navbar-toggler:focus {
    border-color: var(--accent-primary);
    background: var(--bg-tertiary);
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.2);
}

.dark-mode .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%28176, 176, 176, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Container padding adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Section padding adjustments */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .logo-text h2 {
        font-size: 1.6rem;
    }

    .logo-text span {
        font-size: 0.8rem;
    }

    .hero-intro {
        font-size: 1.1rem;
    }

    /* Hero section mobile padding */
    .hero-text {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    /* Image adjustments */
    .section-image,
    .herbalist-photo,
    .connect-photo,
    .big3-image {
        height: 500px;
    }

    .card-img-top {
        height: 360px;
    }

    /* Card body padding */
    .card-body {
        padding: 1.5rem;
    }
    
    /* Form container padding */
    .contact-form-container,
    .booking-form-container {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    /* Service includes padding */
    .service-includes {
        padding: 1.5rem;
    }
    
    /* Testimonial highlight padding */
    .testimonial-highlight {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    /* Contact item padding */
    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Content section padding */
    .big3-content {
        padding: 1rem;
    }
    
    .herbalist-text {
        padding: 1rem;
    }
    
    .services-text {
        padding: 1rem;
    }
    
    .connect-text {
        padding: 1rem;
    }
    
    /* Footer padding adjustments */
    .footer {
        padding: 3rem 0;
    }
    
    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Feature item adjustments */
    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Navigation adjustments */
    .nav-link {
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    /* Adjust underline for mobile */
    .nav-link::after {
        height: 2px;
        bottom: -3px;
    }
    
    /* Theme toggle mobile adjustments */
    .nav-theme-toggle {
        width: 50px;
        height: 28px;
        font-size: 0.9rem;
        margin: 0 0 0 10px;
        border-radius: 15px;
    }
    
    .nav-theme-toggle i {
        font-size: 0.8rem;
    }
    
    /* Booking page mobile adjustments */
    .booking-page {
        padding-top: 100px !important; /* Slightly less padding needed on mobile */
    }
    
    /* Gathering buttons mobile spacing */
    .gathering-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .gathering-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Mobile hamburger menu improvements */
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        border-width: 2px;
    }
    
    .navbar-toggler-icon {
        width: 1.75em;
        height: 1.75em;
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 1.5rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .service-includes {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .testimonial-highlight {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Dark Mode Image Filters */
.dark-mode .hero-bg-img,
.dark-mode .section-image,
.dark-mode .herbalist-photo,
.dark-mode .connect-photo,
.dark-mode .big3-image,
.dark-mode .card-img-top {
    filter: brightness(0.8) contrast(1.1);
}

/* Booking Page Styles */
.booking-page {
    padding-top: 120px !important; /* Account for fixed navbar with theme toggle */
}

.booking-header h1 {
    color: var(--accent-primary);
    font-family: 'Oooh Baby', cursive;
}

.price-display {
    margin: 1rem 0;
}

.price-display .price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.booking-form-container {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.booking-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.booking-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 2rem;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.booking-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-summary {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.service-summary h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

/* Dark Mode Compatibility */
.dark-mode .btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
}

.dark-mode .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-primary));
    border: none;
}

/* Logo switching for dark mode */
.logo-light {
    display: inline-block;
}

.logo-dark {
    display: none;
}

.dark-mode .logo-light {
    display: none;
}

.dark-mode .logo-dark {
    display: inline-block;
}

/* Custom Checkbox Styling */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    padding-left: 35px;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent-primary);
    background-color: var(--bg-secondary);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
} 

/* Gathering Buttons */
.gathering-buttons {
    text-align: center;
    margin-top: 1.5rem;
}

.gathering-buttons .btn {
    border-radius: 25px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

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

.btn-outline-primary:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
} 

.hero-text-container {
    padding-top: 3em;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    /* Extra small screens - more aggressive padding reduction */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .hero-text {
        padding: 1rem;
        margin: 0.25rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .contact-form-container,
    .booking-form-container {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .service-includes {
        padding: 1rem;
    }
    
    .testimonial-highlight {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .contact-item {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .big3-content {
        padding: 0.75rem;
    }
    
    .herbalist-text {
        padding: 0.75rem;
    }
    
    .services-text {
        padding: 0.75rem;
    }
    
    .connect-text {
        padding: 0.75rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-intro {
        font-size: 1rem;
    }
    
    /* Gathering buttons mobile spacing for small screens */
    .gathering-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .gathering-buttons .btn:last-child {
        margin-bottom: 0;
    }
} 