/* home.css - Updated Version without Booking Form */
:root {
    /* Removed form specific variables */
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xxl);
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/vanue1.jpeg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-black);
    line-height: 1.05;
    color: white;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
    color: var(--accent-pink);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

/* Removed all booking toggle button styles */

/* Removed all booking form styles */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.features {
    padding: var(--space-xxl) 0;
    background-color: var(--secondary-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background-color: var(--primary-light);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--accent-pink);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition-normal);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-dark));
    opacity: 0.2;
    z-index: -1;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-card:hover .feature-icon::before {
    transform: scale(1.2);
}

.feature-card h3 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Removed form styles */

/* Mobile Optimizations */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-height) + var(--space-lg)) 0 var(--space-xl);
        min-height: 80vh;
        position: relative;
        overflow: hidden;
    }
    
    .hero-background {
        background-position: center 40%;
        background-size: cover;
        background-attachment: scroll;
        width: 100%;
        height: 100%;
    }
    
    .hero::before {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

    .hero p {
        font-size: 1.1rem !important;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .features-grid {
        gap: var(--space-md);
    }

    .feature-card {
        padding: var(--space-lg);
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: var(--space-md);
    }

    .features {
        padding: var(--space-xl) 0;
    }

    .scroll-indicator {
        font-size: 1.8rem;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-lg);
        min-height: 75vh;
    }
    
    .hero-background {
        background-position: center 35%;
    }
    
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features {
        padding: var(--space-lg) 0;
    }
    
    .feature-card {
        padding: var(--space-md);
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: var(--space-sm);
    }

    .scroll-indicator {
        font-size: 1.6rem;
        bottom: 15px;
    }
}

/* Very small screen adjustments */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem !important;
    }
    
    .hero p {
        font-size: 0.95rem !important;
    }
}

/* Hero loading state */
.hero.loading .hero-background {
    opacity: 0;
}

.hero .hero-background {
    opacity: 1;
    transition: opacity 0.5s ease;
}