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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e4e4e4;
    background-color: #1a1a1a;
}

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

/* Header Styles */
header {
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 400px;
    height: auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    border-radius: 10px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.2));
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.tagline {
    font-size: 1.2rem;
    color: #b3b3b3;
    position: relative;
    z-index: 2;
}

/* Product Preview Section */
.product-preview {
    margin: 3rem 0;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    background-color: #2c3e50;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.3);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.gallery-item:hover .product-image {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background-color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 3rem;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.3);
}

.feature h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 3rem 0;
    background-color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 3rem;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.shop-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    color: #888;
}

/* Animations */
.fade-in {
    opacity: 1 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .cta {
        padding: 2rem 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-caption {
        opacity: 1;
        padding: 1rem;
    }
    
    .gallery-caption h4 {
        font-size: 1.1rem;
    }
    
    .gallery-caption p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
} 