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

:root {
    --bg-dark: #ffffff; /* Base background (fallback, though gradient covers) */
    --text-primary-dark: #222222; /* Dark text for readability */
    --text-secondary-dark: #555555;
    /* New Pastel Palette inspired by image */
    --pastel-yellow: #fdfd96;
    --pastel-pink: #ffb6c1; /* LightPink */
    --pastel-cyan: #add8e6; /* LightBlue */
    --pastel-blue: #a7d8ff;
    --pastel-mint: #b3ffb3; /* Added light green/mint */

    /* Button/Accent Colors - Unified Outline Style */
    --button-border-color: #000000; /* Black border/text for both */
    --button-text-color: #000000;
    --button-hover-bg: rgba(0, 0, 0, 0.1); /* Subtle dark fill on hover */
    --button-active-bg: rgba(0, 0, 0, 0.2); /* Darker fill when pressed */
    --button-glow: rgba(0, 0, 0, 0.3);

    --font-body: 'Poppins', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark); /* Fallback */
    color: var(--text-primary-dark); /* Default to dark text */
    line-height: 1.6;
    font-size: 16px;
    display: flex;
    flex-direction: column;
}

/* === Animated Gradient Background === */
@keyframes gradientShift {
    0% { background-position: 0% 0%; }      /* Start top-left */
    25% { background-position: 100% 0%; }    /* Move to top-right */
    50% { background-position: 100% 100%; }  /* Move to bottom-right */
    75% { background-position: 0% 100%; }    /* Move to bottom-left */
    100% { background-position: 0% 0%; }     /* Cycle back to top-left */
}

/* === Main Hero/Contact Area === */
main.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Using the same gradient definition */
    background: linear-gradient(-60deg, /* Slightly different angle */
        var(--pastel-pink),
        var(--pastel-yellow),
        var(--pastel-mint),
        var(--pastel-cyan),
        var(--pastel-blue),
        var(--pastel-pink)); /* Cycle back to pink for smoother loop */
    background-size: 300% 300%; /* Keep reduced size */
    animation: gradientShift 18s linear infinite, brightenBg 2s ease-out forwards;
    animation-delay: 0s, 0.5s; /* Delay brightening slightly */
    filter: brightness(0.5); /* Start dim */
}

.hero-content {
    max-width: 600px;
    /* Make background very transparent */
    background: rgba(255, 255, 255, 0.3); /* 30% opaque white */
    padding: 2rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.hero-content > * { /* Target direct children: h1, p, div */
    opacity: 0; /* Start hidden */
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary-dark); /* Dark text */
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease-out 1.5s forwards; /* Delay after bg brighten */
}

.hero .subtitle {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-secondary-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 2s forwards; /* Delay after h1 */
}

.hero .contact-prompt {
    font-size: 1.1rem;
    color: var(--text-secondary-dark); /* Dark secondary text */
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 2.5s forwards;
}

.hero .contact-links-final {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 3s forwards;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease; /* Faster transform */
}

.btn i {
    font-size: 1.1rem;
}

/* Unified Outline Button Style */
.btn-primary,
.btn-secondary {
    background-color: transparent;
    color: var(--button-text-color);
    border: 1px solid var(--button-border-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    background-color: var(--button-hover-bg);
    color: #000; /* Keep text black */
    border-color: #000;
    box-shadow: 0 0 15px 3px var(--button-glow);
    transform: translateY(-3px);
}

.btn-primary:active,
.btn-secondary:active {
    transform: translateY(0px);
    box-shadow: 0 0 5px 1px var(--button-glow);
    background-color: var(--button-active-bg);
    color: #000;
    border-color: #000;
}

/* === Footer Styling Removed === */

/* === Follow Spot Cursor === */
#follow-spot {
    position: fixed;
    width: 300px; /* Adjust size */
    height: 300px;
    border-radius: 50%;
    /* Soft radial gradient - white center, fading transparent */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none; /* Don't interfere with clicks */
    transform: translate(-50%, -50%); /* Center on cursor */
    z-index: 9999; /* Above everything else */
    mix-blend-mode: overlay; /* Blend with background (experiment with blend modes) */
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease; /* Fade in */
}

/* === Power On Sequence === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes brightenBg {
    from { filter: brightness(0.5); }
    to { filter: brightness(1.0); }
}

/* === Typewriter Effect REMOVED === */
/* .typewriter { ... } */
/* @keyframes typing { ... } */
/* @keyframes blink-caret { ... } */

/* Keep fadeIn keyframes if they exist, or add if needed */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} 
