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

:root {
    --gold: #C47B2C;
    --gold-dark: #8C5C2B;
    --gold-light: #D4A04A;
    --cream: #FFFAEB;
    --cream-dark: #F5EED9;
    --bg-section: #FFF8E7;
    --text-dark: #4A3520;
    --text-muted: #8B7355;
    --gradient: linear-gradient(135deg, #D4A04A 0%, #C47B2C 50%, #8C5C2B 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

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

/* Decorative Stars */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    color: var(--gold-light);
    opacity: 0.4;
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 { top: 15%; left: 10%; font-size: 1.2rem; animation-delay: 0s; }
.star-2 { top: 25%; right: 15%; font-size: 0.9rem; animation-delay: 0.5s; }
.star-3 { top: 45%; left: 5%; font-size: 0.8rem; animation-delay: 1s; }
.star-4 { top: 60%; right: 8%; font-size: 1rem; animation-delay: 1.5s; }
.star-5 { top: 80%; left: 20%; font-size: 0.7rem; animation-delay: 2s; }
.star-6 { top: 35%; right: 25%; font-size: 1.1rem; animation-delay: 2.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 160, 74, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(196, 123, 44, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 60%, rgba(140, 92, 43, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.title-image {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 20px rgba(196, 123, 44, 0.3));
}

.subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 30px rgba(196, 123, 44, 0.4);
}

.play-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(196, 123, 44, 0.6);
}

.play-icon {
    font-size: 1rem;
}

/* Marble Animation */
.marble-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.marble {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(212, 160, 74, 0.7) 40%,
        rgba(196, 123, 44, 0.4) 100%);
    box-shadow:
        inset -4px -4px 8px rgba(140, 92, 43, 0.4),
        0 0 20px rgba(212, 160, 74, 0.5);
    animation: fall 4s ease-in-out infinite;
}

.marble:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
}

.marble:nth-child(2) {
    left: 50%;
    animation-delay: 1.3s;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(196, 123, 44, 0.7) 40%,
        rgba(140, 92, 43, 0.4) 100%);
    box-shadow:
        inset -3px -3px 6px rgba(140, 92, 43, 0.4),
        0 0 15px rgba(196, 123, 44, 0.5);
}

.marble:nth-child(3) {
    left: 80%;
    animation-delay: 2.6s;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(140, 92, 43, 0.7) 40%,
        rgba(100, 70, 35, 0.4) 100%);
    box-shadow:
        inset -2px -2px 4px rgba(100, 70, 35, 0.4),
        0 0 12px rgba(140, 92, 43, 0.5);
}

@keyframes fall {
    0% {
        top: -40px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(30px) rotate(180deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: translateX(-20px) rotate(360deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--gold);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
    animation: fadeInUp 1s ease 0.5s both;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
    border-top: 1px solid rgba(140, 92, 43, 0.1);
    position: relative;
    z-index: 1;
}

.section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--gold-dark);
}

.section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.8;
}

.section strong {
    color: var(--gold-dark);
}

/* Inspiration */
.inspiration {
    margin-top: 40px;
    padding: 32px;
    background: var(--cream-dark);
    border-radius: 16px;
    border: 1px solid rgba(140, 92, 43, 0.15);
}

.inspiration h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold-dark);
}

.video-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.video-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(196, 123, 44, 0.1);
    border: 1px solid rgba(196, 123, 44, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.video-card:hover {
    background: rgba(196, 123, 44, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 123, 44, 0.2);
}

.video-icon {
    font-size: 2rem;
}

.video-card small {
    color: var(--text-muted);
}

.inspiration-desc {
    font-size: 1rem !important;
    color: var(--text-muted);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(140, 92, 43, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(140, 92, 43, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 123, 44, 0.3);
    box-shadow: 0 8px 30px rgba(196, 123, 44, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--gold-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Credits */
.credit-list {
    display: grid;
    gap: 16px;
    max-width: 600px;
    margin-top: 32px;
}

.credit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(140, 92, 43, 0.1);
    box-shadow: 0 2px 8px rgba(140, 92, 43, 0.05);
}

.credit-label {
    font-weight: 500;
    color: var(--text-muted);
}

.credit-value {
    color: var(--text-dark);
}

.credit-value a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.credit-value a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(140, 92, 43, 0.1);
    position: relative;
    z-index: 1;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 auto;
}

.copyright {
    margin-top: 12px !important;
    font-size: 0.85rem !important;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .title-image {
        max-width: 300px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .credit-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .video-links {
        flex-direction: column;
    }

    .video-card {
        width: 100%;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
