/* ============================================
   BABY DOGE — Premium Light Theme
   Color Palette: Warm Golden / Amber
   ============================================ */

:root {
    --gold-50: #fffbeb;
    --gold-100: #fef3c7;
    --gold-200: #fde68a;
    --gold-300: #fcd34d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --gold-700: #b45309;
    --brown-600: #78350f;
    --brown-700: #5c2d0e;
    --brown-800: #451a03;
    --cream: #fffdf7;
    --cream-dark: #fef7e8;
    --warm-white: #fefcf3;
    --text-primary: #3d2000;
    --text-secondary: #78522a;
    --text-muted: #a07850;
    --shadow-sm: 0 2px 8px rgba(180, 83, 9, 0.08);
    --shadow-md: 0 8px 30px rgba(180, 83, 9, 0.12);
    --shadow-lg: 0 20px 60px rgba(180, 83, 9, 0.15);
    --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.3);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Fredoka', 'Inter', sans-serif; }

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

/* ============================================
   Floating Paw Particles
   ============================================ */
.paw-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.paw-particle {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    animation: floatPaw 8s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes floatPaw {
    0%   { transform: translateY(100vh) rotate(0deg) scale(0.5); opacity: 0; }
    15%  { opacity: 0.25; }
    85%  { opacity: 0.15; }
    100% { transform: translateY(-10vh) rotate(360deg) scale(1); opacity: 0; }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 253, 247, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(180, 83, 9, 0.08);
    border-bottom: 1px solid rgba(253, 230, 138, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--brown-700);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--gold-300);
    box-shadow: var(--shadow-sm);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold-600); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.35);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--brown-700);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 30%, rgba(253, 230, 138, 0.35) 0%, rgba(255, 253, 247, 0.6) 50%, var(--cream) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero-mascot-wrap {
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-mascot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--gold-300);
    box-shadow: 0 0 0 8px rgba(253, 211, 77, 0.15), var(--shadow-glow);
    animation: floatMascot 4s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(254, 243, 199, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-300);
    color: var(--gold-700);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--brown-700), var(--gold-600), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(180, 83, 9, 0.15));
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: #fff;
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
    background: rgba(254, 243, 199, 0.8);
    color: var(--gold-700);
    border: 2px solid var(--gold-300);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gold-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* ============================================
   Elon Tweet Card (Hero)
   ============================================ */
.elon-tweet-card {
    background: #fff;
    border: 1px solid #e8dcc8;
    border-radius: var(--radius-md);
    padding: 24px;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease-out 0.65s both;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.tweet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tweet-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.tweet-author { flex: 1; }

.tweet-name {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.tweet-handle {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.tweet-x-icon { flex-shrink: 0; }

.tweet-body p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.tweet-footer {
    border-top: 1px solid #f0e6d6;
    padding-top: 12px;
}

.tweet-link {
    color: var(--gold-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.tweet-link:hover { color: var(--gold-700); }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--gold-400), transparent);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gold-100);
    color: var(--gold-700);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--gold-200);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--warm-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.about-card {
    background: #fff;
    border: 1px solid rgba(253, 211, 77, 0.2);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-300);
}

.about-card:hover::before { transform: scaleX(1); }

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

.about-card h3 {
    font-size: 1.3rem;
    color: var(--brown-700);
    margin-bottom: 10px;
}

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

.about-image {
    text-align: center;
}

.floating-mascot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--gold-300);
    box-shadow: var(--shadow-glow);
    animation: floatMascot 4s ease-in-out infinite;
    object-fit: cover;
}

@keyframes floatMascot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   Elon Gallery Section
   ============================================ */
.elon-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.elon-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.elon-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    border: 3px solid var(--gold-200);
}

.elon-img-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.elon-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   Memes Section
   ============================================ */
.memes-section {
    padding: 120px 0;
    background: var(--warm-white);
}

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

.memes-grid-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold-200);
    transition: transform 0.4s, box-shadow 0.4s;
}

.memes-grid-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   Community Section
   ============================================ */
.community {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--gold-50) 100%);
}

.community-card {
    background: linear-gradient(135deg, #fff8e7, #fff3d0);
    border: 2px solid var(--gold-300);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.community-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.community-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--brown-700);
    margin-bottom: 16px;
}

.community-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.community-mascot {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold-300);
    box-shadow: var(--shadow-glow);
    animation: floatMascot 4s ease-in-out infinite;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--brown-800);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold-500);
}

.footer-tagline {
    color: var(--gold-400);
    font-weight: 600;
    font-size: 1rem;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 500px;
    margin-top: 8px;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 253, 247, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gold-200);
        box-shadow: var(--shadow-md);
    }

    .hero-content { padding: 140px 20px 60px; }

    .elon-tweet-card { padding: 18px; }

    .community-card {
        flex-direction: column;
        padding: 40px 28px;
        text-align: center;
    }

    .community-mascot {
        width: 160px;
        height: 160px;
    }

    .elon-gallery {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

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

@media (max-width: 480px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 { font-size: 2.8rem; }

    .community-card { padding: 30px 20px; }
}
