@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Base Styles */
body {
    background-color: #121416;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* 0px radius enforcement */
* {
    border-radius: 0 !important;
}

/* Editorial Typography */
h1, .display-txt {
    font-size: clamp(2.75rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 500;
}

h2, .headline-txt {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 500;
}

h3, .title-txt {
    font-size: 1.125rem;
    font-weight: 500;
}

p, .body-txt {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #c3c7c9;
    line-height: 1.6;
}

.label-txt {
    font-size: clamp(0.6875rem, 1vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Essential Buttons */
.btn-ghost {
    border: 1px solid rgba(67, 71, 73, 0.2);
    color: #ffb5a0;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.btn-ghost:hover {
    border-color: #ffb5a0;
    background: rgba(255, 181, 160, 0.05);
}

/* Glassmorphic Nav */
.glass-nav {
    background-color: rgba(30, 32, 34, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(67, 71, 73, 0.2);
}

/* Video Background Placeholder */
.video-placeholder {
    background: linear-gradient(to bottom, rgba(18, 20, 22, 0.3) 0%, rgba(18, 20, 22, 1) 100%),
                url('../images/hero-bg-placeholder.jpg') center/cover no-repeat;
    background-color: #1a1c1e; /* Fallback */
}

/* Reveal on Scroll default states */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
