/* Hero Section Styles */

.hero {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-content {
    flex: 1;
    text-align: left;
    padding-right: 3rem;
}

.hero-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    text-align: left;
}

.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(100, 255, 218, 0.3));
    display: block;
    object-fit: contain;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    margin-top: 10px;
    transform: translateY(30px);
}

.cta-button:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px; /* Add padding top for mobile navbar */
    }
    
    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: left;
    }
    
    .hero-logo {
        order: -1;
    }
    
    .hero-logo img {
        max-width: 250px;
    }

    .hero-title {
        display: none; /* Hide ESEN text on small screens */
    }
    .hero-subtitle {
        display: none; /* Hide subtitle on small screens */
    }
    .hero-description {
        display: none; /* Hide description on small screens */
    }
}
