/* Color Palette */
:root {
    --panton-626: #135E4C;  /* Dark teal/green */
    --panton-419: #212322;  /* Very dark gray */
    --panton-na: #EFF2E2;   /* Light cream */
    --panton-2707: #C5D7EC; /* Light blue */
}

/* Custom Font Declarations */

/* NEUE PLAK - For English Titles */
@font-face {
    font-family: 'Neue Plak';
    src: url('fonts/neue-plak-cufonfonts/Neue Plak Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Neue Plak';
    src: url('fonts/neue-plak-cufonfonts/Neue Plak SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* AEONIK PRO - For English Paragraphs */
@font-face {
    font-family: 'Aeonik Pro';
    src: url('fonts/Aeonik Pro/Aeonik Pro Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Aeonik Pro';
    src: url('fonts/Aeonik Pro/Aeonik Pro Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

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

body {
    font-family: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--panton-na);
    color: var(--panton-419);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Brand Section */
.brand-section {
    margin-bottom: 4rem;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    animation: logoFadeIn 1.2s ease-out;
}

.brand-name {
    font-family: 'Neue Plak', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--panton-626);
    margin-bottom: 0.5rem;
}

/* Main Content */
.main-content {
    margin-bottom: 4rem;
}

.title {
    font-family: 'Neue Plak', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--panton-419);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.description {
    font-family: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--panton-419);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Footer */
.footer {
    margin-top: 5rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(19, 94, 76, 0.08);
    border-radius: 50px;
    border: 1px solid var(--panton-626);
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--panton-626);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    font-family: 'Aeonik Pro', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--panton-626);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--panton-2707) 0%, transparent 70%);
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--panton-626) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--panton-2707) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .brand-section {
        margin-bottom: 3rem;
    }

    .main-content {
        margin-bottom: 3rem;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer {
        margin-top: 3rem;
    }

    .status-indicator {
        padding: 0.875rem 1.5rem;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px;
    }

    .brand-name {
        letter-spacing: 0.1em;
    }

    .status-indicator {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
}

