/* Home Page Styles */

.hero-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: 'Beckan', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brand-highlight {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-dark);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5a30 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-color: var(--accent-gold);
}

.cta-button.secondary:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cocktail-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cocktail-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.cocktail-left {
    left: 5%;
    top: 15%;
}

.cocktail-right {
    right: 5%;
    bottom: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 768px) {
    .hero-main {
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .cocktail-decoration {
        width: 150px;
        height: 150px;
    }
}
