/* Dape Price Studio - Landing Page Styles */

/* Hero Section - Magazine Cover Style */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    order: 2;
    text-align: center;
}

.hero-text h1 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.hero-image {
    order: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Features Section */
.features-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Products Section */
.products-section {
    padding: 80px 24px;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

.products-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--secondary);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Brand Story Section */
.story-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.story-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.story-text h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Stats Section */
.stats-section {
    padding: 60px 24px;
    background: var(--primary);
    color: var(--bg-white);
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.stat-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 24px;
    background: var(--bg);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.newsletter-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        padding: 80px 40px;
    }
    
    .hero-text {
        order: 1;
        text-align: left;
    }
    
    .hero-text h1 {
        font-size: 56px;
    }
    
    .hero-text p {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-image img {
        height: 600px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .story-content {
        grid-template-columns: 1fr 1fr;
        padding: 0 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-item h3 {
        font-size: 48px;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex: 1;
    }
}
