/* Custom styles */
.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.glass-dark {
    background: rgba(20, 83, 45, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.2);
    border-color: #4CAF50;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 1280px guideline container */
.guideline {
    max-width: 1280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Button system */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
    border-radius: 9999px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.01em;
    font-size: 1rem;
    transition: all 0.22s ease;
    border: 1px solid transparent;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.btn-primary {
    background: linear-gradient(135deg, #2E7D32, #1f6b28);
    color: #fff;
    border-color: #1f6b28;
    box-shadow: 0 14px 32px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2c8b36, #1a5c22);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(46, 125, 50, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #1B5E20;
    border: 1px solid #1f6b28;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
}

.btn-secondary:hover {
    background: rgba(46, 125, 50, 0.08);
    border-color: #164c1e;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
}

.btn-accent {
    background: linear-gradient(135deg, #ffd54f, #fbc02d);
    color: #1B5E20;
    border-color: #f1b800;
    box-shadow: 0 14px 32px rgba(253, 216, 53, 0.35);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #ffcd38, #f4b400);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(253, 216, 53, 0.45);
}

/* Navbar adjustments for mid widths */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav-links {
        gap: 1.25rem;
    }

    .nav-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .nav-cta svg {
        display: none;
    }
}

/* Navbar adjustments for mobile */
@media (max-width: 767px) {
    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .nav-cta svg {
        display: none;
    }
}
