/* Dine & Wine Landing Page - Marketing Optimized */

/* CSS Variables for consistent theming */
:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #F5E6B4;
    --wine-red: #722F37;
    --deep-wine: #8B1538;
    --dark-bg: #1a1614;
    --text-light: #ffffff;
    --text-cream: #F5F5DC;
    --accent-copper: #B87333;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-premium: 0 8px 32px rgba(0, 0, 0, 0.6);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section with Background */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d1b0d 100%);
}

/* Version Info Styling */
.version-info {
    font-size: 0.8rem;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/back.png') center/cover no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 22, 20, 0.3) 80%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
}

.logo {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-copper), var(--wine-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(212, 175, 55, 0.4);
    letter-spacing: -0.02em;
}

.tagline {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    color: var(--text-cream);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.value-proposition {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.9;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-cream);
    opacity: 0.8;
    line-height: 1.5;
}

/* Premium CTA Button */
.cta-container {
    margin-top: 1.5rem;
    position: relative;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--wine-red), var(--deep-wine));
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-width: 280px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.6);
    background: linear-gradient(135deg, var(--deep-wine), var(--wine-red));
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-icon {
    font-size: 1.4rem;
}

.cta-button.disabled {
    background: linear-gradient(135deg, #666, #555);
    color: #ccc;
    cursor: not-allowed;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.cta-button.disabled::before {
    display: none;
}

.cta-button.disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #666, #555);
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-cream);
}

.trust-icon {
    color: var(--primary-gold);
}

/* Process Section */
.process {
    padding: 2rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wine-red), var(--primary-gold));
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.step-title {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-desc {
    color: var(--text-cream);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Scroll Guide Button */
.scroll-guide {
    margin-top: 1rem;
    text-align: center;
}

.scroll-button {
    background: none;
    border: none;
    color: var(--text-cream);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.75rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    opacity: 0.8;
}

.scroll-button:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.scroll-button.bounce .scroll-icon {
    animation: bounce 0.6s ease-in-out;
}

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

.scroll-icon {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

/* Process Section CTA */
.process-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-cta {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-copper));
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.secondary-cta:hover {
    background: linear-gradient(135deg, var(--accent-copper), var(--primary-gold));
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* Status Information */
.status-info {
    margin: 2rem 0;
    width: 100%;
    max-width: 600px;
}

.status-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 0 auto;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.status-card.status-success {
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(76, 175, 80, 0.1);
}

.status-card.status-warning {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.1);
}

.status-card.status-info {
    border-color: rgba(33, 150, 243, 0.3);
    background: rgba(33, 150, 243, 0.1);
}

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

.status-icon {
    font-size: 1.5rem;
}

.status-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.status-message {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-cream);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        margin: 0.5rem;
        padding: 1rem;
        min-height: 95vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .logo {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.5rem;
    }
    
    .tagline {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
        margin-bottom: 1rem;
    }
    
    .value-proposition {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 0.75rem 0;
    }
    
    .feature {
        padding: 0.5rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .feature-desc {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .cta-container {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: 200px;
        width: 100%;
        max-width: 320px;
    }
    
    .trust-indicators {
        gap: 0.8rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .process {
        padding: 1.5rem 1rem;
        min-height: 90vh;
    }
    
    .process-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        line-height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .step-desc {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .scroll-button {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .process-cta {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .process {
        min-height: 95vh;
        padding: 1rem;
    }
    
    .process-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .process-steps {
        gap: 0.8rem;
        max-width: 350px;
    }
    
    .step {
        padding: 0.8rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        line-height: 35px;
        margin-bottom: 0.5rem;
    }
    
    .step-title {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .step-desc {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin: 0.25rem;
        padding: 0.75rem;
        border-radius: 16px;
        min-height: 98vh;
    }
    
    .logo {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 0.4rem;
    }
    
    .tagline {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
        margin-bottom: 0.8rem;
    }
    
    .value-proposition {
        font-size: clamp(0.75rem, 2.5vw, 0.95rem);
        margin-bottom: 0.8rem;
    }
    
    .features {
        gap: 0.4rem;
        margin: 0.5rem 0;
    }
    
    .feature {
        padding: 0.4rem;
    }
    
    .feature-icon {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }
    
    .feature-title {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }
    
    .feature-desc {
        font-size: 0.65rem;
    }
    
    .cta-container {
        margin-top: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .trust-indicators {
        gap: 0.6rem;
        margin-top: 0.4rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
}

/* Ultra-small screens optimization */
@media (max-width: 360px) {
    .hero-content {
        padding: 0.5rem;
        min-height: 100vh;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        margin: 0.4rem 0;
    }
    
    .feature {
        padding: 0.3rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
    }
    
    .feature-icon {
        font-size: 1.2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature-title {
        font-size: 0.75rem;
        margin-bottom: 0.1rem;
    }
    
    .feature-desc {
        font-size: 0.6rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #FFD700;
        --wine-red: #FF0000;
        --text-light: #FFFFFF;
        --glass-bg: rgba(0, 0, 0, 0.8);
        --glass-border: #FFFFFF;
    }
    
    .hero-content {
        border: 2px solid white;
    }
}