* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
    font-family: 'Playfair Display', serif;
}

.tagline {
    font-size: 12px;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #666;
}

/* Video Showcase Section */
.video-showcase {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.video-container-showcase {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.video-container-showcase video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for better text readability */
}

.video-overlay .hero-content {
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    margin-bottom: 50px;
}

.video-overlay .hero-content h2 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-overlay .hero-content p {
    font-size: 18px;
    color: #f8f9fa;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.video-overlay .cta-button {
    background: #ffffff;
    color: #1a1a1a;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-overlay .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.video-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Remove old hero section styles */
.hero {
    display: none;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 80px;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border: 2px solid #1a1a1a;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-mockup {
    width: 120px;
    height: 200px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle {
    width: 60px;
    height: 140px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bottle-cap {
    width: 40px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.bottle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
}

.mockup-1 .bottle {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.mockup-2 .bottle {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.mockup-2 .bottle-label {
    color: white;
}

.mockup-3 .bottle {
    background: linear-gradient(135deg, #ffeef7 0%, #f8e8f0 100%);
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features span {
    font-size: 14px;
    color: #2c2c2c;
    font-weight: 500;
}

/* Waitlist Section */
.waitlist {
    padding: 120px 0;
    background: white;
}

.waitlist-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.waitlist-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.waitlist-form {
    margin-bottom: 60px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group input {
    flex: 1;
    min-width: 300px;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-button {
    background: #1a1a1a;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-button:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
}

.form-note {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.waitlist-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 500;
}

.benefit-icon {
    font-size: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-brand p {
    font-size: 14px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-showcase {
        height: 70vh; /* Better height on mobile */
        margin-top: 85px; /* Adequate margin for mobile header */
    }

    .video-overlay .hero-content {
        max-width: 90%;
        margin-bottom: 30px;
    }

    .video-overlay .hero-content h2 {
        font-size: 38px; /* Slightly smaller for better fit */
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .video-overlay .hero-content p {
        font-size: 16px;
    }

    .video-overlay .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .video-indicator {
        bottom: 20px;
    }

    .indicator-dot {
        width: 10px;
        height: 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .form-group {
        flex-direction: column;
        align-items: center;
    }
    
    .form-group input {
        min-width: 100%;
    }
    
    .waitlist-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .video-showcase {
        height: 60vh; /* Keep reasonable height on small screens */
        margin-top: 120px; /* Increase margin for taller header */
    }

    .video-overlay .hero-content {
        max-width: 95%;
        margin-bottom: 20px;
    }

    .video-overlay .hero-content h2 {
        font-size: 28px; /* Reduce font size more for better fit */
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    .video-overlay .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .video-overlay .cta-button {
        padding: 10px 25px;
        font-size: 13px;
    }

    .video-indicator {
        bottom: 15px;
    }

    .indicator-dot {
        width: 8px;
        height: 8px;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px; /* Add padding to account for stacked layout */
    }
    
    .header {
        padding: 15px 0; /* Reduce header padding on mobile */
    }
    
    .section-title {
        font-size: 28px;
    }
}

.product-img {
    display: block;
    max-width: 380px;
    width: 100%;
    height: auto;
    margin: 2rem auto 2rem auto;
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: #fff;
    transition: all 0.3s ease;
}

.product-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

@media (min-width: 600px) {
    .product-img {
        max-width: 520px;
    }
}

@media (min-width: 900px) {
    .product-img {
        max-width: 600px;
    }
}

@media (min-width: 1200px) {
    .product-img {
        max-width: 650px;
    }
}

/* Video Play Button Overlay */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: #333;
}

.video-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

/* iOS Specific Improvements */
@supports (-webkit-overflow-scrolling: touch) {
    .video-container-showcase video {
        -webkit-playsinline: true;
        playsinline: true;
    }
} 

/* Legal Sections */
.legal-section {
    padding: 120px 0;
    background: white;
}

.legal-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.legal-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

.legal-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
}

.legal-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
} 