/* Magic Hour Lemonade LP Styles */

:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #FFE66D;
    --text-dark: #2C3E50;
    --text-light: #34495E;
    --text-muted: #7F8C8D;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.6));
    --hero-overlay: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    
    --font-main: 'Noto Sans JP', sans-serif;
    --font-accent: 'Inter', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: var(--gradient-overlay),
                url('https://page.gensparksite.com/v1/base64_upload/a958f244b93abb9cb3dac2f32169bb23');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-main);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.cta-button.primary:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-family: var(--font-main);
}

/* What Is Section */
.what-is {
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-overlay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Drink Ways Section */
.drink-ways {
    background: var(--white);
}

.drink-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.drink-card {
    background: linear-gradient(145deg, var(--light-gray), var(--white));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.drink-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 107, 53, 0.3);
}

.drink-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-overlay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
}

.drink-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.drink-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.drink-card p:last-child {
    color: var(--text-light);
}

.drink-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Story Section */
.story {
    background: var(--gradient-overlay);
    color: var(--white);
    text-align: center;
}

.story .section-title {
    color: var(--white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.story-quote {
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    opacity: 0.9;
    position: relative;
}

.story-quote::before,
.story-quote::after {
    content: '"';
    font-size: 2.5rem;
    opacity: 0.7;
}

/* Social Section */
.social {
    background: var(--light-gray);
}

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

.social-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #E4405F, #C13584);
    color: var(--white);
}

.social-link.twitter:hover {
    background: #1DA1F2;
    color: var(--white);
}

.social-link.shop:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* BtoB Section */
.btob {
    background: var(--white);
}

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

.btob-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btob-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.btob-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    min-width: 30px;
}

.btob-cta {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* Legal/Footer */
.legal {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0;
}

.credits {
    text-align: center;
    margin-bottom: 2rem;
}

.credits p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.legal-note {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.references {
    max-width: 800px;
    margin: 0 auto;
}

.references h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.references ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.references a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.references a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .drink-cards {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .btob-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .references ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .feature-card,
    .drink-card {
        padding: 2rem 1.5rem;
    }
    
    .btob-feature {
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

/* Focus styles for accessibility */
.cta-button:focus,
.social-link:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}