.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 10rem !important;
    text-align: center;
    padding: 0 2rem;
    max-width: 1000px;
    margin: 0 auto;
   
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Lustria', 'Lustria Placeholder', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    min-width: 160px;
}

.hero-btn-primary {
    background-color: #2c2c2c;
    color: #ffffff;
    border-color: #2c2c2c;
}

.hero-btn-primary:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.3);
}

.hero-btn-secondary {
    background-color: transparent;
    color: #2c2c2c;
    border-color: #2c2c2c;
}

.hero-btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeIn 1s ease-out 0.5s both;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(44, 44, 44, 0.4);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.scroll-arrow:hover {
    border-color: rgba(44, 44, 44, 0.7);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: rgba(44, 44, 44, 0.5);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 0;
    }
}


@media (max-width: 1024px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-title {
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        max-width: 600px;
    }

    .hero-scroll-indicator {
        bottom: 2rem;
    }
}


@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 550px;
    }

    .hero-content {
        padding: 0 1.5rem;
           scale: 0.85;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-arrow {
        width: 25px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-content {
        padding: 0 1rem;
         scale: 0.75;
    }

    .hero-title {
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}


@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 6rem 0 3rem;
    }

    .hero-scroll-indicator {
        display: none;
    }
}