/* ==========================================
   SUPREMACY.PARTY - Global Styles
   =========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

/* ==========================================
   SCROLL PROGRESS BAR
   =========================================== */

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #a0a0a0);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* ==========================================
   HERO SECTION
   =========================================== */

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 14vw, 10rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #f5f5f5;
    text-align: center;
    z-index: 1;
    position: relative;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    word-break: break-word;
}

/* ==========================================
   SECTIONS - ALTERNATING
   =========================================== */

section {
    width: 100vw;
    padding: 80px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    animation: fadeInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

section:first-of-type {
    animation-delay: 0.1s;
}

section:nth-of-type(n+2) {
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-primary {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.section-secondary {
    background-color: #1a1a1a;
}

/* ==========================================
   SECTION HEADINGS
   =========================================== */

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #f5f5f5;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   CONTENT GRID
   =========================================== */

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
}

/* ==========================================
   CONTENT BLOCKS
   =========================================== */

.content-block {
    background: transparent;
    padding: 32px;
    border: 1px solid #2a2a2a;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.2s ease;
    position: relative;
}

.section-secondary .content-block {
    border: 1px solid #0d5f6f;
    background-color: rgba(13, 95, 111, 0.05);
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: #d4af37;
    transition: height 0.3s ease;
}

.content-block:hover::before {
    height: 100%;
}

.content-block:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

/* ==========================================
   BLOCK CONTENT
   =========================================== */

.block-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #d4af37;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.block-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #a0a0a0;
    flex-grow: 1;
}

.section-primary .block-text {
    color: #a0a0a0;
}

.section-secondary .block-text {
    color: #c0c0c0;
}

/* ==========================================
   ACCENT BARS
   =========================================== */

.accent-bar {
    width: 100vw;
    height: 4px;
    background-color: #d4af37;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* ==========================================
   FOOTER
   =========================================== */

.footer {
    width: 100vw;
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 60px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 0.08em;
    color: #d4af37;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: #707070;
}

/* ==========================================
   INTERACTIVE STATES
   =========================================== */

a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #f5f5f5;
    border-bottom-color: #d4af37;
}

a:active {
    opacity: 0.6;
}

button {
    font-family: 'Inter', sans-serif;
    padding: 12px 24px;
    border: 1px solid #d4af37;
    background-color: transparent;
    color: #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
}

button:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

button:active {
    opacity: 0.3;
    transition: opacity 0.15s ease;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .hero-title {
        padding: 0 20px;
    }

    .content-block {
        padding: 24px;
    }

    .footer-content {
        padding: 0 24px;
    }

    body {
        font-size: 16px;
    }
}

/* ==========================================
   UTILITIES
   =========================================== */

.text-gold {
    color: #d4af37;
}

.text-muted {
    color: #707070;
}

.hidden {
    display: none;
}

/* ==========================================
   ACCESSIBILITY
   =========================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ==========================================
   HIGH CONTRAST MODE
   =========================================== */

@media (prefers-contrast: more) {
    .section-heading {
        text-shadow: none;
    }

    .hero-title {
        text-shadow: none;
    }

    .content-block {
        border-width: 2px;
    }
}
