/* hero.css - Hero Section Styles */

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-sage) 0%, var(--cream) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(168, 183, 158, 0.6) 0%, rgba(168, 183, 158, 0.3) 40%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--deep-olive);
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-text h1 strong {
    font-weight: 600;
    color: var(--olive);
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(124, 132, 113, 0.15);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(124, 132, 113, 0.2);
}

.card-1 {
    top: 20px;
    left: 0;
    width: 250px;
    animation: floatCard 15s ease-in-out infinite;
}

.card-2 {
    top: 150px;
    right: 20px;
    width: 280px;
    animation: floatCard 15s ease-in-out infinite reverse;
}

.card-3 {
    bottom: 40px;
    left: 60px;
    width: 260px;
    animation: floatCard 15s ease-in-out infinite 5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card h3 {
    color: var(--olive);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.floating-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.icon {
    width: 40px;
    height: 40px;
    background: var(--light-sage);
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    animation: breathe 3s ease-in-out infinite;
}

.btn:hover {
    animation: none;
}

.btn-primary {
    background: var(--olive);
    color: white;
}

.btn-primary:hover {
    background: var(--deep-olive);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 132, 113, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--olive);
    border-color: var(--sage);
}

.btn-secondary:hover {
    background: var(--light-sage);
    border-color: var(--olive);
}

.btn-light {
    background: var(--warm-white);
    color: var(--deep-olive);
    padding: 18px 40px;
    font-size: 16px;
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255,255,255,0.2);
}