/* ============================================
   Font Faces
   ============================================ */

@font-face {
    font-family: 'Zuume';
    src: url('../fonts/Zuume Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zuume';
    src: url('../fonts/Zuume Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zuume';
    src: url('../fonts/Zuume Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('../fonts/Aktiv Grotesk Ex Hair.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('../fonts/Aktiv Grotesk Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS Variables
   ============================================ */

:root {
    --forest-dark: #0D2818;
    --forest: #1A4D2E;
    --forest-light: #2D6A4F;
    --lime: #7CFC00;
    --lime-bright: #D4FF00;
    --lime-light: #C8FF8C;
    --green-border: #72DD03;
    --white: #FFFFFF;
    --white-muted: rgba(255, 255, 255, 0.6);

    --font-display: 'Zuume', Impact, 'Arial Narrow', sans-serif;
    --font-body: 'Aktiv Grotesk', system-ui, -apple-system, sans-serif;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    font-weight: 200;
    color: var(--white);
    background-color: var(--forest-dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

a {
    color: var(--lime);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--green-border);
}

/* ============================================
   Background Effects
   ============================================ */

.holding-page {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

.holding-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(124, 252, 0, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(45, 106, 79, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(45, 106, 79, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Scan line effect */
.holding-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(124, 252, 0, 0.015) 2px,
        rgba(124, 252, 0, 0.015) 4px
    );
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   Content Container
   ============================================ */

.holding-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    width: 100%;
}

/* ============================================
   Logo
   ============================================ */

.holding-logo {
    margin-bottom: 3rem;
}

.holding-logo img {
    width: clamp(200px, 40vw, 396px);
    height: auto;
}

/* ============================================
   Decorative Rule
   ============================================ */

.holding-rule {
    width: 80px;
    height: 3px;
    background: var(--lime);
    border: none;
    margin: 0 auto 2.5rem;
    box-shadow: 0 0 20px rgba(124, 252, 0, 0.4);
}

/* ============================================
   Typography
   ============================================ */

.holding-heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(48px, 10vw, 120px);
    line-height: 0.85;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.holding-heading span {
    display: block;
    color: var(--lime);
}

.holding-subheading {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: clamp(16px, 2.5vw, 22px);
    line-height: 1.5;
    color: var(--white-muted);
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

/* ============================================
   Contact Info
   ============================================ */

.holding-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-bottom: 2.5rem;
}

.holding-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s ease;
}

.holding-contact a:hover {
    color: var(--lime);
}

.holding-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================
   Social Links
   ============================================ */

.holding-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.holding-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.holding-social a:hover {
    border-color: var(--lime);
    background-color: rgba(124, 252, 0, 0.08);
}

.holding-social svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transition: fill 0.3s ease;
}

.holding-social a:hover svg {
    fill: var(--lime);
}

/* ============================================
   Footer Bar
   ============================================ */

.holding-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 2rem;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.25);
    z-index: 1;
}

/* ============================================
   Pulse Animation on the rule
   ============================================ */

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(124, 252, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(124, 252, 0, 0.7);
    }
}

.holding-rule {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 480px) {
    .holding-page {
        padding: 1.5rem;
    }

    .holding-contact {
        flex-direction: column;
        gap: 1rem;
    }
}
