/* KrampusCalls.ai - Dark Christmas Theme */
/* Mirrors SantaCalls structure with ominous styling */

:root {
    --color-bg: #0a0505;
    --color-bg-dark: #050202;
    --color-ember: #ff4500;
    --color-ember-glow: #ff6b35;
    --color-gold: #b8860b;
    --color-text: #e0e0e0;
    --color-text-muted: #888;
    --color-accent: #8b0000;
    --color-accent-dark: #5c0000;
    --font-display: 'Metal Mania', cursive;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #1a0808 0%, var(--color-bg) 30%, var(--color-bg-dark) 100%);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Header - mirrors SantaCalls */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-ember);
    text-decoration: none;
    text-shadow: 0 0 20px var(--color-ember), 0 0 40px var(--color-accent);
    transition: text-shadow 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 30px var(--color-ember), 0 0 60px var(--color-accent);
}

.nice-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nice-tagline a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.nice-tagline a:hover {
    text-decoration: underline;
}

/* Facebook Share Button */
.share-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: #1877f2;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.share-btn:hover {
    background: #166fe5;
}

.share-btn .share-text {
    font-size: 0.9rem;
    font-weight: 700;
}

.share-btn .share-on {
    font-size: 0.75rem;
    font-weight: 400;
    margin: 0 2px;
}

.share-btn .fb-icon {
    width: 10px;
    height: 18px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-ember);
    text-shadow: 0 0 30px var(--color-ember), 0 0 60px var(--color-accent);
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Coming Soon Box */
.coming-soon-box {
    background: rgba(139, 0, 0, 0.2);
    border: 2px solid var(--color-accent);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.3), inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.coming-soon-badge {
    display: inline-block;
    background: var(--color-ember);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    box-shadow: 0 0 20px var(--color-ember);
}

.launch-date {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.teaser-text {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
}

/* Nice CTA */
.nice-cta {
    text-align: left;
}

.nice-cta p {
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-nice {
    background: linear-gradient(135deg, #165B33 0%, #0F4C26 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(22, 91, 51, 0.4);
}

.btn-nice:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(22, 91, 51, 0.5);
}

/* Globe Container */
.globe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.krampus-globe {
    position: relative;
    max-width: 400px;
}

.globe-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px var(--color-ember)) drop-shadow(0 0 80px var(--color-accent));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 40px var(--color-ember)) drop-shadow(0 0 80px var(--color-accent));
    }
    50% {
        filter: drop-shadow(0 0 60px var(--color-ember)) drop-shadow(0 0 100px var(--color-accent));
    }
}

.globe-embers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
}

/* Floating Embers Background */
.embers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.ember {
    position: absolute;
    bottom: -20px;
    width: 8px;
    height: 8px;
    background: var(--color-ember);
    border-radius: 50%;
    opacity: 0;
    animation: rise 5s ease-in infinite;
    box-shadow: 0 0 10px var(--color-ember), 0 0 20px var(--color-ember-glow);
}

.ember:nth-child(1)  { left: 5%;  animation-delay: 0s; animation-duration: 6s; }
.ember:nth-child(2)  { left: 15%; animation-delay: 1s; animation-duration: 5s; }
.ember:nth-child(3)  { left: 25%; animation-delay: 2s; animation-duration: 7s; }
.ember:nth-child(4)  { left: 35%; animation-delay: 0.5s; animation-duration: 5.5s; }
.ember:nth-child(5)  { left: 45%; animation-delay: 1.5s; animation-duration: 6s; }
.ember:nth-child(6)  { left: 55%; animation-delay: 2.5s; animation-duration: 5s; }
.ember:nth-child(7)  { left: 65%; animation-delay: 0.8s; animation-duration: 7s; }
.ember:nth-child(8)  { left: 75%; animation-delay: 1.2s; animation-duration: 5.5s; }
.ember:nth-child(9)  { left: 85%; animation-delay: 2s; animation-duration: 6.5s; }
.ember:nth-child(10) { left: 92%; animation-delay: 0.3s; animation-duration: 5s; }
.ember:nth-child(11) { left: 10%; animation-delay: 3s; animation-duration: 6s; }
.ember:nth-child(12) { left: 80%; animation-delay: 1.8s; animation-duration: 5.5s; }

@keyframes rise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    10% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0.3);
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.features-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-ember);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 20px var(--color-ember);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(139, 0, 0, 0.25);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-ember);
    margin-bottom: 15px;
}

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

.features-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-brand {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 5px;
}

.footer-brand a {
    color: var(--color-ember-glow);
    text-decoration: none;
}

.footer-brand a:hover {
    text-decoration: underline;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-disclaimer {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-content {
        order: 2;
    }

    .globe-container {
        order: 1;
        margin-bottom: 30px;
    }

    .krampus-globe {
        max-width: 280px;
    }

    .nice-cta {
        text-align: center;
    }

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

@media (max-width: 600px) {
    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .nice-tagline {
        display: flex;
        flex-direction: column;
        padding-left: 15px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .coming-soon-box {
        padding: 20px;
    }

    .launch-date {
        font-size: 1.5rem;
    }

    .features-section h2 {
        font-size: 2rem;
    }
}
