/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    perspective: 1000px;
    margin: 0;
    padding: 0;
    margin-top: -80px;
}

.hero-logo-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -65%) translateZ(0);
    width: 290px;
    height: 290px;
    background-image: url('falcon-logo-vector.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px;
    transform: translateZ(50px);
    will-change: transform;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--cream);
    margin-bottom: 20px;
    animation: slideUp 1s ease;
}

.hero-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    animation: slideUp 1s ease 0.2s both;
}

.subtitle-item {
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

.subtitle-separator {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.7;
}

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

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    border: 2px solid var(--cream);
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    animation: slideUp 1s ease 0.4s both;
    border-radius: 8px;
}

.hero-cta:hover {
    background: var(--cream);
    color: var(--black);
}

.hero-secondary-cta {
    margin-top: 40px;
    animation: slideUp 1s ease 0.6s both;
}

.hero-cta-text {
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-style: italic;
}

.hero-whatsapp-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.hero-whatsapp-btn:hover {
    background: #1EA952;
    transform: translateY(-2px);
}

.hero-whatsapp-btn i {
    margin-right: 8px;
}

/* Slideshow Section */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: translateZ(-50px);
    will-change: transform;
}

.slideshow-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: translateZ(0);
    will-change: transform;
}

.slideshow-slide {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: none;
    transform: translateZ(0);
    will-change: transform, opacity;
}

.slideshow-slide.active {
    opacity: 1;
    animation: slideUpImage 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slideshow-slide.prev {
    animation: slideUpImageExit 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideUpImage {
    from {
        transform: translateY(100%) translateZ(0);
        opacity: 1;
    }
    to {
        transform: translateY(0) translateZ(0);
        opacity: 1;
    }
}

@keyframes slideUpImageExit {
    from {
        transform: translateY(0) translateZ(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%) translateZ(0);
        opacity: 1;
    }
}

/* Navigation Dots */
.slideshow-dots {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--cream);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    transform: translateZ(0);
    will-change: transform;
}

.dot:hover {
    transform: scale(1.2) translateZ(0);
}

.dot.active {
    background: var(--cream);
    box-shadow: 0 0 10px rgba(245, 240, 230, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 3s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--primary-green);
    opacity: 0.5;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
