/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    background-attachment: fixed;
    color: white;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CSS Variables */
:root {
    --primary-orange: #FF6B35;
    --dark-bg: #0F0F0F;
    --dark-card: #1A1A1A;
    --dark-secondary: #2A2A2A;
    --white: #FFFFFF;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --green-400: #34D399;
    --yellow-400: #FBBF24;
    --yellow-300: #FCD34D;
    --red-600: #DC2626;
    --spacing: 0.25rem;
    --radius: 1rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
.text-primary {
    color: var(--primary-orange);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    text-align: center;
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
    min-height: 44px;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--gray-500);
    color: var(--white);
}

.btn-secondary:hover {
    background: #4B5563;
}

.btn-white {
    background: var(--white);
    color: var(--primary-orange);
}

.btn-white:hover {
    background: #F3F4F6;
    transform: scale(1.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Glass Effect */
.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.glass-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Hero Pattern */
.hero-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 20px 20px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.6); }
}

@keyframes slide-up {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out;
}

/* Hero Section */
.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    position: relative;
}

.cocktails-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.recipes-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.875rem;
}

/* Featured Drinks Section */
.section-featured {
    padding: 5rem 0;
    background: linear-gradient(to bottom, transparent, rgba(42, 42, 42, 0.3));
}

.drinks-grid {
    max-width: 800px;
    margin: 0 auto;
}

.drinks-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.drinks-row-center {
    display: flex;
    justify-content: center;
}

.drinks-row-center .drink-card {
    max-width: 50%;
}

.drink-card {
    transition: transform 0.3s ease;
}

.drink-card:hover {
    transform: scale(1.05);
}

.drink-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.drink-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.drink-card:hover .drink-image img {
    transform: scale(1.1);
}

.drink-info {
    padding: 1rem;
    text-align: center;
}

.drink-info h3 {
    font-weight: 600;
    transition: color 0.3s ease;
}

.drink-card:hover .drink-info h3 {
    color: var(--primary-orange);
}

.featured-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Special Offer Section */
.section-offer {
    background: linear-gradient(to right, var(--primary-orange), var(--red-600));
    padding: 5rem 0;
    text-align: center;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.offer-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    min-width: 80px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.offer-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    display: inline-block;
}

.live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.slots-remaining {
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    color: var(--yellow-300);
    font-weight: 700;
}

/* Packages Section */
.section-packages {
    padding: 5rem 0;
    background: linear-gradient(to bottom, transparent, var(--dark-secondary));
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.package-card {
    position: relative;
}

.package-featured {
    border: 2px solid var(--primary-orange);
}

.package-badges {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-bestseller {
    background: var(--primary-orange);
    color: var(--white);
}

.badge-value {
    background: var(--yellow-400);
    color: var(--dark-bg);
}

.package-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
}

.package-featured .package-header {
    padding-top: 3rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.25rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.package-description {
    color: var(--gray-400);
}

.promotion-info {
    margin-top: 1rem;
}

.promotion-text {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.promotion-limited {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.package-features {
    padding: 0 1.5rem 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.check-icon {
    color: var(--green-400);
    font-weight: 700;
}

.star-icon {
    color: var(--yellow-400);
}

.feature-highlight {
    font-weight: 600;
    color: var(--primary-orange);
}

.package-card .btn {
    width: 100%;
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

/* Benefits Section */
.section-benefits {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray-400);
}

/* Social Proof Section */
.section-social {
    padding: 5rem 0;
    background: var(--dark-secondary);
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.stars {
    font-size: 1.25rem;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    font-size: 1.25rem;
    font-weight: 600;
}

.rating-count {
    color: var(--gray-400);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 1.5rem;
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
}

.author-role {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Final CTA Section */
.section-final {
    padding: 5rem 0;
    background: var(--dark-secondary);
    text-align: center;
}

.final-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.final-package {
    background: linear-gradient(to right, var(--primary-orange), var(--red-600));
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-package-content {
    color: var(--white);
}

.package-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.final-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.final-old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.75;
}

.final-price {
    font-size: 3rem;
    font-weight: 700;
}

.final-savings {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--yellow-300);
    margin-bottom: 1.5rem;
}

.final-features {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-info {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-pattern {
        background-size: 15px 15px;
    }
    
    .drinks-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .drinks-row-center .drink-card {
        max-width: 70%;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .btn {
        min-height: 44px;
        line-height: 1.5;
    }
    
    .final-pricing {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-hero {
        padding: 2rem 0;
        min-height: auto;
    }
}

/* Accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .animate-float,
    .animate-pulse-glow,
    .animate-slide-up {
        animation: none !important;
    }
    
    .glass-effect:hover {
        transform: none !important;
    }
}