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

body, html {
    width: 100%;
    height: 100%;
    background-color: #050505; /* Deep charcoal/black */
    overflow: hidden; /* Prevent scrolling to keep it a single immersive view */
    color: #ffffff;
}

/* Background Canvas */
#vfx-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind the content */
    pointer-events: none; /* Let interactions pass through */
}

/* Content Layout */
.content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    padding-bottom: 80px; /* Leave room for social icons */
}

/* Logo Styles & Animation */
.main-logo {
    max-width: 90%;
    width: 450px;
    height: auto;
    margin-bottom: 30px;
    /* CSS Fire Flicker Animation */
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 100% { filter: brightness(1) contrast(1) drop-shadow(0 0 10px rgba(255, 69, 0, 0.2)); transform: scale(1); }
    25% { filter: brightness(1.1) contrast(1.05) drop-shadow(0 0 20px rgba(255, 69, 0, 0.4)); transform: scale(1.01); }
    50% { filter: brightness(1.15) contrast(1.1) drop-shadow(0 0 25px rgba(255, 140, 0, 0.5)); transform: scale(1.02); }
    75% { filter: brightness(0.95) contrast(1.05) drop-shadow(0 0 15px rgba(255, 69, 0, 0.3)); transform: scale(0.99); }
}

/* Typography */
.headline {
    font-family: 'Cinzel', serif; /* Luxurious, dramatic font */
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffd700; /* Soft gold */
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 69, 0, 0.2);
}

.subheading {
    font-family: 'Montserrat', sans-serif; /* Clean, modern contrast */
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
    color: #ffdeb3; /* Fiery-tinted off-white */
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.2);
}

/* Always Visible Social Links */
.social-links {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 35px;
    z-index: 20;
}

.social-icon {
    color: #ffd700; /* Match headline gold */
    font-size: 2rem;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.social-icon:hover {
    opacity: 1;
    color: #ff4500; /* Fiery orange on hover */
    transform: translateY(-5px);
    text-shadow: 0 0 20px #ff4500, 0 0 30px #ffd700;
}
