/* ========================================
   CSS Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --dark-green: #063A26;
    --moss-green: #B7DA9B;
    --white: #FFFFFF;

    /* Spacing */
    --header-top-spacing: 20px;
    --max-width: 1300px;
}

html {
    scroll-behavior: smooth;
    /* Add scroll padding to account for fixed header */
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   Loading Overlay
   ======================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-green);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(183, 218, 155, 0.3);
    border-top-color: var(--moss-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Password Gate
   ======================================== */
.password-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-green) 0%, #084d33 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.password-gate-content {
    text-align: center;
    max-width: 500px;
    padding: 40px;
    animation: fadeInUp 0.8s ease-out;
}

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

.gate-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    background: white;
    border: 3px solid white;
    border-radius: 50%;
    padding: 10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.gate-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 56px;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.gate-tagline {
    font-size: 12px;
    color: var(--moss-green);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 40px;
}

.gate-message {
    font-size: 32px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

.gate-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.password-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.password-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(183, 218, 155, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-input:focus {
    border-color: var(--moss-green);
    background: rgba(255, 255, 255, 0.15);
}

.password-submit {
    padding: 15px 35px;
    background: var(--moss-green);
    color: var(--dark-green);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.password-submit:hover {
    background: #a8cc88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 218, 155, 0.3);
}

.password-submit:active {
    transform: translateY(0);
}

.password-error {
    color: #ff6b6b;
    font-size: 14px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ========================================
   Floating Pill Header
   ======================================== */
.floating-header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 100px;
}

.header-container {
    background: #063A26;
    border-radius: 100px;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: opacity 0.2s ease;
}

.logo-section:hover {
    opacity: 0.8;
}

.logo-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
}

.brand-tagline {
    font-size: 9px;
    color: var(--moss-green);
    letter-spacing: 1.4px;
    font-weight: 500;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    outline: none;
}

.nav-link:hover {
    color: var(--moss-green);
}

.nav-link.active {
    color: var(--moss-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--moss-green);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.nav-link:focus {
    outline: none;
}

.nav-link:focus-visible {
    outline: 2px solid var(--moss-green);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Shop Now Button */
.shop-button {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--moss-green);
    color: var(--dark-green);
    padding: 9px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--moss-green);
    outline: none;
}

.shop-button:hover {
    background: var(--white);
    color: var(--dark-green);
    border-color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(183, 218, 155, 0.4);
}

.shop-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(183, 218, 155, 0.3);
}

/* Coming Soon Button Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
    20%, 40%, 60%, 80% { transform: translateX(8px); }
}

.coming-soon-btn {
    cursor: not-allowed;
}

.coming-soon-btn:hover {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
    transform: translateY(0) scale(1);
}

.coming-soon-btn:active {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.shop-button:focus-visible {
    outline: 2px solid var(--moss-green);
    outline-offset: 4px;
}

.shop-button i {
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-button:hover i {
    transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.hero-text h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(60px, 12vw, 120px);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8),
                 0 4px 8px rgba(0, 0, 0, 0.6),
                 0 8px 16px rgba(0, 0, 0, 0.4);
    letter-spacing: 4px;
    margin: 0;
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
    padding: 120px 20px 80px;
    background: #ffffff;
    scroll-margin-top: 100px;
}

.products-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(32px, 5vw, 42px);
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f5f5f5;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    z-index: 10;
    border: 2px solid #000;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image {
    width: 150%;
    height: 150%;
    object-fit: contain;
}

.product-info {
    padding: 24px 22px;
}

.product-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 0.8px;
}

.product-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 18px;
}

.product-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    outline: none;
}

.product-button:active {
    transform: translateY(0) scale(0.97);
}

.product-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.product-button i {
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-button:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Mealworms Product Colors */
.product-card.mealworms .product-name {
    color: var(--dark-green);
}

.mealworms-button {
    background: var(--moss-green);
    color: var(--dark-green);
    border-color: var(--moss-green);
}

.mealworms-button:hover {
    background: var(--dark-green);
    color: var(--moss-green);
    border-color: var(--dark-green);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 18px rgba(6, 58, 38, 0.3);
}

/* Larvae Product Colors */
.product-card.larvae .product-name {
    color: #5E0F0A;
}

.larvae-button {
    background: #F9EDE1;
    color: #5E0F0A;
    border-color: #F9EDE1;
}

.larvae-button:hover {
    background: #5E0F0A;
    color: #F9EDE1;
    border-color: #5E0F0A;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 18px rgba(94, 15, 10, 0.3);
}

/* ========================================
   Blog Section - Rebuilt
   ======================================== */
.blog-section {
    padding: 120px 20px 100px;
    background: #ffffff;
    position: relative;
    scroll-margin-top: 100px;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, #f8f9fa 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Search Box */
.blog-search-wrapper {
    max-width: 600px;
    margin: 40px auto;
}

.blog-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search-box i {
    position: absolute;
    left: 24px;
    color: var(--moss-green);
    font-size: 18px;
    z-index: 1;
}

.blog-search-box input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    border: 2px solid #e0e0e0;
    border-radius: 60px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.blog-search-box input:focus {
    outline: none;
    border-color: var(--moss-green);
    box-shadow: 0 4px 20px rgba(183, 218, 155, 0.2);
    transform: translateY(-1px);
}

/* Posts Container */
.blog-posts-container {
    margin: 40px 0;
    min-height: 400px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    animation: fadeIn 0.6s ease-out;
}

/* Post Card */
.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.post-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(6, 58, 38, 0.08);
    border-color: rgba(183, 218, 155, 0.3);
}

.post-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #063A26, #B7DA9B);
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-card-image img {
    transform: scale(1.1);
}

.post-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.post-card:hover .post-card-overlay {
    opacity: 1;
}

.post-card-content {
    padding: 28px;
}

.post-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #063A26;
    margin-bottom: 14px;
    letter-spacing: 1px;
    line-height: 1.2;
    transition: all 0.3s ease;
    font-weight: 400;
}

.post-card:hover .post-card-title {
    color: #0a5a3a;
    letter-spacing: 1.5px;
}

.post-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.post-card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-card-meta i {
    color: var(--moss-green);
    font-size: 14px;
}

/* Loading State */
.blog-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top-color: var(--moss-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.blog-loading p {
    font-size: 16px;
    color: #999;
    font-weight: 500;
}

/* Empty/Error States */
.blog-empty-state,
.blog-error-state {
    text-align: center;
    padding: 80px 20px;
}

.blog-empty-state h3,
.blog-error-state h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: var(--dark-green);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.blog-empty-state p,
.blog-error-state p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.retry-btn {
    padding: 12px 28px;
    background: var(--dark-green);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.retry-btn:hover {
    background: var(--moss-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 218, 155, 0.3);
}

.retry-btn i {
    margin-right: 8px;
}

/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.pagination-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--dark-green);
    background: white;
    color: var(--dark-green);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 58, 38, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-pages {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-number {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 2px solid #e0e0e0;
    background: white;
    color: var(--dark-green);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.page-number:hover {
    background: var(--moss-green);
    color: white;
    border-color: var(--moss-green);
    transform: translateY(-2px);
}

.page-number.active {
    background: var(--dark-green);
    color: white;
    border-color: var(--dark-green);
}

.page-ellipsis {
    color: #999;
    font-weight: 600;
    padding: 0 8px;
    user-select: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* OLD STYLES REMOVED - Using new blog-widget styles only */

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

/* ========================================
   Responsive Design
   ======================================== */

/* Tablets and smaller laptops */
@media (max-width: 1024px) {
    .header-container {
        padding: 10px 25px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .floating-header {
        width: 92%;
        top: 15px;
    }

    .header-container {
        padding: 10px 20px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-tagline {
        font-size: 9px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    /* Hide navigation on mobile */
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        min-height: 600px;
    }

    /* Products section responsive */
    .products-section {
        padding: 100px 20px 60px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-image-wrapper {
        height: 350px;
    }

    .product-info {
        padding: 30px 25px;
    }

    .product-button {
        width: 100%;
        justify-content: center;
    }

    /* Blog section responsive */
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .post-card-image {
        height: 200px;
    }

    .blog-pagination {
        gap: 8px;
    }

    .pagination-btn,
    .page-number {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 14px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .floating-header {
        width: 90%;
        top: 10px;
    }

    .header-container {
        padding: 8px 15px;
        border-radius: 40px;
    }

    .logo-section {
        gap: 10px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-tagline {
        font-size: 8px;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .hero-section {
        min-height: 500px;
    }

    /* Products section mobile */
    .products-section {
        padding: 90px 15px 50px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-wrapper {
        height: 300px;
    }

    .product-info {
        padding: 25px 20px;
    }

    /* Pagination responsive for small screens */
    .pagination-number {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
        padding: 0 10px;
    }

    .pagination-ellipsis {
        font-size: 14px;
    }

    .product-name {
        font-size: 28px;
    }

    .product-description {
        font-size: 15px;
    }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--moss-green);
    outline-offset: 4px;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .floating-header {
        position: relative;
        top: 0;
        transform: none;
    }

    .hero-image {
        filter: brightness(1);
    }
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 120px 20px 80px;
    background: white;
    scroll-margin-top: 100px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.about-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    color: var(--dark-green);
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: left;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--dark-green);
    color: white;
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: var(--moss-green);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.value-card:hover i {
    color: white;
}

.value-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: white;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-green);
    padding: 30px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    color: white;
    font-size: 14px;
    margin: 0;
}
