/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, #F7EFE7 0%, #F7EFE7 100%) !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 239, 231, 0.95) 0%, rgba(247, 239, 231, 0.9) 100%) !important;
    z-index: -1;
}

.hero-box {
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    min-height: 70vh;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
    border: 3px solid #D48245;
    box-shadow: 0 10px 30px rgba(212, 130, 69, 0.2);
    animation: moveIn 3s;
}

.hero h1 {
    font-size: 64px !important;  
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: #2C3E50 !important;
    font-family: 'CormorantGaramond', serif !important;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 36px !important;
    color: #34495E !important;
    padding-top: 20px;
    font-weight: 400;
    font-family: 'Noto Serif', serif !important;
}

.hero p span:nth-child(1) {
    color: #D48245 !important; /* connect */
}

.hero p span:nth-child(2) {
    color: #E67E22 !important; /* collect */
}

.hero p span:nth-child(3) {
    color: #D48245 !important; /* build */
}

.hero-button {
    font-size: 24px !important;
    background-color: #D48245;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;   
    margin-top: 100px;
    left: 10%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: 'Sora', sans-serif;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #E67E22;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 130, 69, 0.3);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px !important;
    }
    
    .hero p {
        font-size: 32px !important;
    }
    
    .hero-box {
        width: 90%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 36px !important;
    }

    .hero p {
        font-size: 24px !important;
    }

    .hero-box {
        width: 95%;
        margin-top: 80px;
        min-height: auto;
        padding: 25px;
    }
    
    .hero-button {
        font-size: 20px !important;
        padding: 12px 25px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px !important;
    }

    .hero p {
        font-size: 20px !important;
    }

    .hero-box {
        width: 98%;
        margin-top: 70px;
        padding: 20px;
    }

    .hero-button {
        font-size: 18px !important;
        padding: 10px 20px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 390px) {
    .hero h1 {
        font-size: 24px !important;
    }

    .hero p {
        font-size: 18px !important;
    }

    .hero-box {
        width: 98%;
        margin-top: 60px;
        padding: 15px;
    }

    .hero-button {
        font-size: 16px !important;
        padding: 8px 16px;
        margin-top: 1rem;
    }
} 