/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', Georgia, serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #f5f5f5;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Realistic Smoke Animation */
.realistic-smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
    opacity: 1;
    transition: opacity 2s ease-out;
    background: rgba(0, 0, 0, 0.3);
}

.realistic-smoke-container.fade-out {
    opacity: 0;
}

.smoke-wisp {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle, rgba(220, 220, 220, 0.4) 0%, rgba(180, 180, 180, 0.3) 30%, rgba(140, 140, 140, 0.2) 60%, transparent 100%);
    border-radius: 50%;
    filter: blur(2px);
    animation: realisticSmoke linear forwards;
}

.smoke-1 {
    width: 80px;
    height: 80px;
    left: 15%;
    animation-duration: 8s;
    animation-delay: 0.2s;
}

.smoke-2 {
    width: 120px;
    height: 120px;
    left: 25%;
    animation-duration: 9s;
    animation-delay: 0.8s;
}

.smoke-3 {
    width: 100px;
    height: 100px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 1.2s;
}

.smoke-4 {
    width: 90px;
    height: 90px;
    left: 45%;
    animation-duration: 8.5s;
    animation-delay: 0.5s;
}

.smoke-5 {
    width: 110px;
    height: 110px;
    left: 55%;
    animation-duration: 9.5s;
    animation-delay: 1.5s;
}

.smoke-6 {
    width: 85px;
    height: 85px;
    left: 65%;
    animation-duration: 7.5s;
    animation-delay: 0.3s;
}

.smoke-7 {
    width: 95px;
    height: 95px;
    left: 75%;
    animation-duration: 8.2s;
    animation-delay: 1.8s;
}

.smoke-8 {
    width: 105px;
    height: 105px;
    left: 20%;
    animation-duration: 9.2s;
    animation-delay: 2.1s;
}

.smoke-9 {
    width: 75px;
    height: 75px;
    left: 70%;
    animation-duration: 7.8s;
    animation-delay: 0.7s;
}

.smoke-10 {
    width: 115px;
    height: 115px;
    left: 40%;
    animation-duration: 8.8s;
    animation-delay: 1.0s;
}

@keyframes realisticSmoke {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.3) rotate(0deg);
    }
    15% {
        opacity: 0.6;
        transform: translateX(15px) scale(0.6) rotate(20deg);
    }
    30% {
        opacity: 0.8;
        transform: translateX(-25px) scale(0.9) rotate(-15deg);
        filter: blur(3px);
    }
    50% {
        opacity: 0.7;
        transform: translateX(40px) scale(1.2) rotate(35deg);
        filter: blur(4px);
    }
    70% {
        opacity: 0.5;
        transform: translateX(-30px) scale(1.5) rotate(-25deg);
        filter: blur(6px);
    }
    85% {
        opacity: 0.3;
        transform: translateX(20px) scale(1.8) rotate(45deg);
        filter: blur(8px);
    }
    100% {
        bottom: 110vh;
        opacity: 0;
        transform: translateX(-15px) scale(2.2) rotate(-10deg);
        filter: blur(12px);
    }
}

.smoke-particle {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.8) 0%, rgba(150, 150, 150, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    animation: smokeRise 4s ease-out forwards;
    opacity: 0;
}

.smoke-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0.5s;
    animation-duration: 3.5s;
}

.smoke-particle:nth-child(2) {
    left: 25%;
    animation-delay: 1s;
    animation-duration: 4s;
}

.smoke-particle:nth-child(3) {
    left: 40%;
    animation-delay: 0.8s;
    animation-duration: 3.8s;
}

.smoke-particle:nth-child(4) {
    left: 55%;
    animation-delay: 1.3s;
    animation-duration: 4.2s;
}

.smoke-particle:nth-child(5) {
    left: 70%;
    animation-delay: 0.3s;
    animation-duration: 3.6s;
}

.smoke-particle:nth-child(6) {
    left: 85%;
    animation-delay: 1.1s;
    animation-duration: 3.9s;
}

.smoke-particle:nth-child(7) {
    left: 15%;
    animation-delay: 1.8s;
    animation-duration: 4.1s;
}

.smoke-particle:nth-child(8) {
    left: 75%;
    animation-delay: 0.6s;
    animation-duration: 3.7s;
}

@keyframes smokeRise {
    0% {
        bottom: -60px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    20% {
        opacity: 0.8;
        transform: translateX(10px) scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-15px) scale(1.2);
    }
    80% {
        opacity: 0.3;
        transform: translateX(20px) scale(1.5);
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(-10px) scale(2);
    }
}

/* Main Container */
.main-container {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.brand-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #f5f5f5;
    margin: 0;
    letter-spacing: 0.05em;
}

.main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #f5f5f5;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: #b0b0b0;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 400;
    line-height: 1.4;
}

.pre-order-btn {
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.pre-order-btn:hover {
    background: #c19b26;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

/* Fade in animations */
.fade-in-text {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-text:nth-child(1) { animation-delay: 4.5s; }
.fade-in-text:nth-child(2) { animation-delay: 5s; }
.fade-in-text:nth-child(3) { animation-delay: 5.5s; }
.fade-in-text:nth-child(4) { animation-delay: 6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Section */
.product-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #f5f5f5;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.subtitle-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: #b0b0b0;
    display: block;
    margin-top: 10px;
}

.product-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    background: transparent;
    mix-blend-mode: multiply;
    opacity: 0.95;
}

.product-img:hover {
    transform: translateY(-5px) scale(1.02);
    opacity: 1;
}

/* Alternative: Create a dark overlay to blend the image */
.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(26, 26, 26, 0.3) 70%);
    pointer-events: none;
    z-index: 1;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: #1a1a1a;
}

.features-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 20px 10px;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
    border-radius: 0;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: grayscale(0%);
    opacity: 0.8;
}

.feature-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #f5f5f5;
    font-weight: 500;
    line-height: 1.3;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.final-cta-btn {
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.final-cta-btn:hover {
    background: #c19b26;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #f5f5f5;
    padding: 60px 20px 40px;
    border-top: 2px solid #d4af37;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-contact {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    color: #b0b0b0;
    margin-top: 20px;
}

.footer-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #c19b26;
    text-decoration: underline;
}

/* Fade in content animation */
.fade-in-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: white;
}

.loading-overlay.show {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .product-image {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .pre-order-btn,
    .final-cta-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}