:root {
    --primary: #f59e0b; /* Golden Amber - Legacy feel */
    --primary-dark: #b45309;
    --accent: #3b82f6; /* Trusting Blue */
    --bg-dark: #0f172a;
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.overlay-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-dim);
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Hook Section */
.hook {
    padding: 10rem 0;
    background: var(--bg-dark);
}

.rhyme-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.rhyme-item {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dim);
    font-weight: 600;
    padding: 1rem;
    border-left: 4px solid var(--primary);
    background: var(--glass);
    transition: color 0.3s ease;
}

.rhyme-item strong {
    color: var(--text-light);
    text-transform: uppercase;
}

.rhyme-item:hover {
    color: var(--primary);
}

/* Story Section */
.story {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #1e293b);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.story-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 5px;
}

.story-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dim);
}

.price-tag {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: inline-block;
}

.price-tag span {
    display: block;
    color: var(--text-dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.price-tag h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Features Section */
.features {
    padding: 8rem 0;
}

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

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dim);
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-masonry {
    columns: 3 300px;
    column-gap: 1.5rem;
}

.gallery-masonry img {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.gallery-masonry img:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* CTA Section */
.cta {
    padding: 8rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    padding: 5rem 2rem;
    border-radius: 40px;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    top: -50px;
    left: -50px;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.cta-card p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--text-dim);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-cta.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
    .story-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3.5rem; }
    .cta-card h2 { font-size: 2.5rem; }
    .overlay-content h1 { font-size: 2.5rem; }
}

/* Fade In Animations */
.fade-in { animation: fadeIn 1.5s ease forwards; }
.fade-in-delayed { animation: fadeIn 1.5s ease 0.5s forwards; opacity: 0; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
