/* ===================================
   Hero Section Styles (index.html)
   =================================== */

/* Hero Section - Modern Design */
.hero {

    text-align: center;
    padding: 3rem 9rem;
    background: var(--green-primary);
    color: white;
    border-radius: 24px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-green-lg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero h1 {
    font-size: 3.7rem;
    font-weight: 1000;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
    position: inherit;
    z-index: 1;
    font-weight: 900;
    line-height: 1.7;
    letter-spacing: -0.02em;
}

/* Button Styles - Modern 2025 */
.btn {
    display: inline;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    background-color: var(--green-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
    height: 70%;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background-color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-lg);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--yellow-primary);
    box-shadow: var(--shadow-yellow);
}

.btn-secondary:hover {
    background-color: var(--yellow-dark);
    box-shadow: var(--shadow-yellow-lg);
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Media queries removed */