/* 
  Declaration Speaker: Premium Design System
  Colors: Spiritual Gold, Calm Powder Blue, Elegant Slate
*/

@import url('https://fonts.googleapis.com/css2?family=Gabriela&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-blue: #B0E0E6;
    /* Powder Blue */
    --accent-gold: #D4AF37;
    /* Metallic Gold */
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --bg-light: #F8FAFC;
    --text-dark: #0B1120;
    --text-muted: #475569;
    --card-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
    font-family: 'Gabriela', serif;
    font-weight: 400;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Glassmorphism Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.brand span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    padding: 10rem 5% 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(176, 224, 230, 0.2) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.hero-text-side {
    z-index: 2;
    text-align: left;
}

.hero-top-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.hero-top-accent::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.hero-text-side h1 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-text-side h1 span {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 25%, #fff 50%, #D4AF37 75%, #B8860B 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-text-side p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 550px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.cta-secondary {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
    transition: var(--transition);
}

.cta-secondary:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.hero-image-side {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.image-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--gold-gradient);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 0.3;
    }

    to {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* Video Section */
.video-section {
    background: #fff;
    padding: 10rem 5%;
}

.video-card {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 1.5rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    background: #000;
    line-height: 0;
    /* Remove potential extra space at bottom */
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    /* Prevent video from being too tall on some screens */
    object-fit: contain;
    /* Ensure the whole video is visible */
}

.video-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--gold-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    z-index: 3;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--gold-gradient);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(212, 175, 55, 0.6);
}

/* Bundle Section */
.section {
    padding: 8rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.bundle-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.bundle-card:hover {
    transform: translateY(-10px);
}

.bundle-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.bundle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
}

/* Experience Section */
.experience {
    background: var(--text-dark);
    color: white;
    border-radius: 60px;
    margin: 0 2%;
    padding: 8rem 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.experience h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.experience p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.promise-list {
    list-style: none;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.promise-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: left;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 24px;
    transition: var(--transition);
    cursor: zoom-in;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 6rem 5% 4rem;
    background: white;
    text-align: center;
}

.footer-quote {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    #mobile-menu-btn {
        display: block !important;
    }

    nav {
        flex-direction: column;
        padding: 1rem 5%;
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin-right: 0 !important;
        text-align: center;
        padding: 0.8rem;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 8px;
        display: block;
        font-size: 1.1rem;
    }

    .hero,
    .experience {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding: 8rem 5% 4rem;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-text-side {
        order: 2;
    }

    .hero-image-side {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-text-side h1 {
        font-size: 2.8rem;
    }

    .hero-text-side p {
        margin: 0 auto 3rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .video-section {
        padding: 6rem 5%;
    }

    .video-badge {
        right: 20px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .experience {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 1.15rem;
        /* Larger text for readability */
    }

    .hero {
        padding: 6rem 5% 4rem;
        /* Even tighter for true mobile phones */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.25rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 4rem 5%;
    }

    .section-title h2 {
        font-size: 2.25rem;
    }

    .experience {
        padding: 4rem 5%;
        margin: 0;
        border-radius: 0;
        gap: 3rem;
    }
}

/* DIY Section */
.diy-section {
    background: #f8fafc;
    position: relative;
    padding: 8rem 5%;
}

.diy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
}

.diy-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.diy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.diy-card.highlight {
    background: white;
    border: 2px solid var(--accent-gold);
}

.diy-step {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--gold-gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.diy-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.diy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.diy-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.diy-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #f1f5f9;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.diy-link:hover {
    background: var(--accent-gold);
    color: white;
}

.diy-card.highlight .diy-link {
    background: var(--accent-gold);
    color: white;
}

.diy-footer-note {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: rgba(176, 224, 230, 0.1);
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
    color: var(--text-muted);
}

.diy-footer-note i {
    color: var(--primary-blue);
    margin-right: 10px;
}

@media (max-width: 992px) {
    .diy-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* Ready-Made Section */
.ready-made-section {
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    text-align: center;
}

.ready-made-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ready-made-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    display: inline-block;
}

.revealed-info {
    animation: fadeInUp 0.5s ease forwards;
}