:root {
    --primary-green: #2d8a27;
    --accent-orange: #ff6d00;
    --champion-gold: #ffcc00;
    --earth-brown: #5d4037;
    --background-mint: #f4f9f4;
    --text-dark: #1a2a1a;
    --glass-white: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: var(--background-mint);
    min-height: 100vh;
    padding-top: 80px;
    /* Offset for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Glassmorphism Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px 0 rgba(31, 38, 135, 0.15);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 1050;
}

/* OFF CANVASTYLES - MOBILE ONLY */
@media (max-width: 991.98px) {
    .offcanvas {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .offcanvas-body {
        padding: 20px !important;
        overflow-y: auto;
        display: block !important;
    }

    .offcanvas-body .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .offcanvas-body .nav-item {
        width: 100%;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .offcanvas-body .nav-link {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.2rem;
        padding: 15px 0;
        color: #2c3e50 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block !important;
        width: 100%;
        text-align: left;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .offcanvas-body .dropdown-menu {
        background: transparent;
        border: none;
        padding-left: 20px;
        box-shadow: none;
        position: static !important;
        display: block !important;
    }

    .offcanvas-body .dropdown-item {
        color: #2c3e50 !important;
        padding: 10px 0;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .offcanvas-body .btn-magic {
        margin-top: 20px;
        display: block !important;
    }
}


/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-green), var(--accent-orange), var(--champion-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Custom Buttons */
.btn-magic {
    background: linear-gradient(45deg, var(--accent-orange), #ff9100);
    border: none;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.btn-magic:hover {
    background: linear-gradient(45deg, #ff9100, var(--accent-orange));
    transform: scale(1.05) translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 109, 0, 0.4);
}

/* Hero Section Redesign */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: -80px;
    /* Pull up under fixed navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    font-weight: 600;
}

/* Section Dividers (Wavy) */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.divider-fill-mint {
    fill: var(--background-mint);
}

.divider-stripe {
    fill: none;
    stroke: var(--accent-orange);
    stroke-width: 8;
    stroke-linecap: round;
}

/* Inner Page Heroes */
.hero-inner {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    /* Navbar height offset */
    overflow: hidden;
}

.hero-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-inner-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .hero-inner {
        height: 300px;
    }

    .hero-inner-title {
        font-size: 2.5rem;
    }
}

.divider-fill-white {
    fill: white;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn-magic {
        width: 100%;
        margin-bottom: 10px;
    }
}