/* ===========================================
   HERO SECTION STYLES
   =========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 18, 42, 0.6);
    z-index: -1;
}

.hero-content {
    width: 100%;
    padding: 60px 20px 80px;
    text-align: center;
    z-index: 1;
}

.hero-logo {
    max-width: 45vw;
    height: auto;
    padding: 20px 0;
    margin-top: 20vh;
    margin-bottom: 30vh;
    display: inline-block;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 90vw;
    }
}

.hero-content h1 {
    font-family: 'Noto Serif Display',
        serif;
    color: #ffffff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: heroTitleIn 0.8s ease-out;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: heroTextIn 0.8s ease-out 0.2s backwards;
}

/* ==================== */
/* CTA BUTTONS */
/* ==================== */

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroButtonsIn 0.8s ease-out 0.4s backwards;
}

.btn {
    font-family: 'Noto Sans', sans-serif;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-duration) var(--transition-ease);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left var(--transition-duration) var(--transition-ease);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

/* Primary Button - Inquire Now */
.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(105, 143, 63, 0.4);
}

.btn-primary:hover {
    background-color: #556a2f;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(105, 143, 63, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Secondary Button - View Gallery */
.btn-secondary {
    background-color: transparent;
    color: var(--bone);
    border: 2px solid var(--bone);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--bone);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(10, 18, 42, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* ==================== */
/* SCROLL INDICATOR */
/* ==================== */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: rgba(255, 255, 255, 0.7);
    fill: none;
    stroke-width: 2;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        margin-top: 70px;
        padding: 0 15px;
    }

    .hero-content {
        padding: 40px 20px 60px;
        width: 100%;
    }

    .hero-content h1 {
        font-family: 'Noto Serif Display', serif;
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

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

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}