/* ==========================================
   FogoBox Coming Soon
   Clean & Minimal Design
   ========================================== */

/* Design Tokens */
:root {
    --color-bg: #1a1a1a;
    --color-text: #ff3d00;
    --color-white: #ffffff;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body,
#main {
    margin: 0;
    padding: 0;
}

/* High Quality Rendering */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Clash Display', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow: hidden;
}

/* ==========================================
   Page Container
   ========================================== */
.framer-page {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
}

/* ==========================================
   Background (Pure Black)
   ========================================== */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: #1a1a1a;
}

.hero-bg-img {
    display: none;
}

/* ==========================================
   Title Row (Logo + Title inline)
   ========================================== */
.title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-logo {
    width: clamp(75px, 15vw, 135px);
    height: clamp(75px, 15vw, 135px);
    /* Official Fogo orange #ff3d00 */
    filter: brightness(0) saturate(100%) invert(24%) sepia(100%) saturate(3000%) hue-rotate(14deg) brightness(100%) contrast(110%);
}

/* ==========================================
   Hero Content (Centered)
   ========================================== */
.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

/* Title */
.hero-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(48px, 14vw, 120px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--color-text);
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

/* Subtitle */
.hero-subtitle {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(18px, 4vw, 32px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.8;
    margin-top: 10px;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .hero-center {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px;
    }

    .logo {
        width: 36px;
        height: 36px;
    }

    .title-line {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

/* ==========================================
   Selection & Protection
   ========================================== */
/* Disable text selection */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

::selection {
    background: transparent;
}