/* ============================================
   Aspom Travel Agency - Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
    --gold: #D4AF37;
    --dark-navy: #000000;
    --deep-blue: #111111;
    --cream: #FFFFFF;
    --soft-white: #FFFFFF;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-navy);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.75) 0%, rgba(30, 58, 95, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Decorative Elements */
.gold-line {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
    z-index: 3;
}

/* Feature Cards */
.feature-card {
    transition: all 0.4s ease;
    text-align: center;
    padding: 2rem;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image-card {
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s ease;
}

.feature-image-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Touch device support - show content on tap */
@media (hover: none) {
    .feature-image-card .absolute.inset-0.bg-gradient-to-t {
        opacity: 1 !important;
    }
    .feature-image-card p {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .feature-image-card h3 {
        transform: translateY(0) !important;
    }
    .feature-image-card .w-0 {
        width: 3rem !important;
    }
}

/* Form Styles */
.form-input {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0 !important;
    padding-left: 0;
}

.form-input:focus {
    outline: none;
    border-bottom-color: black;
    box-shadow: none;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Buttons */
.btn-gold {
    background: black;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-gold:hover {
    background: white;
    color: black;
    border: 1px solid black;
}

.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 17, 40, 0.9);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 4rem;
    border-radius: 0;
    max-width: 600px;
    width: 90%;
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
    border: 1px solid black;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
        letter-spacing: 0.1em;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
