/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');
@import url('../fonts/stylesheet.css');
/* Import local AvantGarde fonts */

:root {
    --primary-color: #fff;
    --secondary-color: #000;
    --transition-speed: 0.5s;
}

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

body {
    font-family: 'ITC Avant Garde Std Bk', 'Inter', sans-serif;
    color: var(--secondary-color);
    overflow-x: hidden;
    background-color: #111;
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: transparent;
    transition: background-color 0.8s ease, padding 0.8s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    margin: 0 auto;
    /* Opacity removed to keep logo visible */

    /* INITIAL STATE (Unscrolled):
       - Full viewport width
       - Padding keeps logo at the edge (40px)
    */
    max-width: 100%;
    padding: 0 40px;

    /* Animation: Slower and smoother */
    transition: max-width 1s cubic-bezier(0.25, 1, 0.5, 1), padding 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* SCROLLED STATE:
   - Constrained to content width (1200px)
   - Padding removed (logo aligns with content edge)
*/
header.scrolled .header-container {
    max-width: 1200px;
    padding: 0;
}

/* Ensure Logo alignment on mobile/smaller screens involves padding */
@media (max-width: 1200px) {
    header.scrolled .header-container {
        padding: 0 20px;
        /* Keep some padding if screen is smaller than container */
        max-width: 100%;
    }
}

.header-nav-container {
    display: flex;
    align-items: center;
    gap: 40px;

    /* NEW: Hide nav items initially */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

header.scrolled .header-nav-container {
    opacity: 1;
    pointer-events: auto;
}

.nav-wrapper {
    /* Previously flex, now just a wrapper for nav. Flex is on ul */
    display: block;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 75px;
    width: auto;
    transition: max-height 0.3s ease;
    filter: hue-rotate(190deg) saturate(900%);
}

header.scrolled .logo-img {
    max-height: 55px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'ITC Avant Garde Std Md', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mobile: Center logo initially */
@media (max-width: 900px) {
    header:not(.scrolled) .logo-wrapper {
        position: absolute;
        /* Absolute relative to header */
        top: 20px;
        /* Match standard header padding */
        left: 50%;
        transform: translateX(-50%);
        /* Center Horizontal only, No Scale */
        z-index: 1001;
        /* Ensure above other elements */
        width: auto;
    }

    header.scrolled .logo-wrapper {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        z-index: auto;
    }

    /* Transition properties need to be on the element itself */
    .logo-wrapper {
        transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    }
}

nav a:hover {
    color: var(--primary-color);
}

/* Language Toggle */
.language-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
}

.language-toggle {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2px;
    cursor: pointer;
    font-family: 'ITC Avant Garde Std Md', sans-serif;
    user-select: none;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.toggle-text {
    position: relative;
    z-index: 2;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

/* Hamburger Menu Button (Hidden on Desktop) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

/* Hamburger Animation State */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.toggle-text.active {
    color: #000;
    font-weight: 600;
}

/* Mobile Navigation Styles */
@media (max-width: 900px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        /* Behind hamburger button */
        padding-top: 60px;
        /* Space for header */
    }

    .nav-wrapper.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    nav a {
        font-size: 1.5rem;
        /* Larger font for mobile */
    }

    .language-toggle-wrapper {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1100;
        /* Above everything */
        background-color: rgba(0, 0, 0, 0.6);
        /* Semi-transparent black bubble */
        padding: 8px 12px;
        border-radius: 30px;
        backdrop-filter: blur(5px);
        margin-top: 0;
        transform: scale(1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    /* Start at ES position */
    width: calc(50% - 2px);
    /* Half width minus padding */
    height: calc(100% - 4px);
    background: #fff;
    border-radius: 18px;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* State class for English added via JS */
.language-toggle.en-active .toggle-slider {
    transform: translateX(100%);
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

/* Quote Section */
#quote {
    padding: 50px 0;
    background-color: #0d0d0d;
    scroll-margin-top: 75px;
}

/* Quote Box */
.quote-box {
    text-align: center;
    margin-bottom: 0px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    padding: 0;
    border: none;
}

/* CRT Scanlines Overlay */
#hero::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 20;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

/* Hero Fade Bottom */
.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    /* Smooth fade at bottom 20% */
    background: linear-gradient(to bottom, transparent, #dcdcdc);
    /* Matches content top bg */
    z-index: 22;
    /* Above scanlines */
    pointer-events: none;
}

/* Light Leaks Overlay - INTENSIFIED */
.light-leaks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 25;
    pointer-events: none;
    opacity: 0.9;
    mix-blend-mode: screen;
    animation: leakAnimation 6s infinite alternate ease-in-out;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 60, 20, 0.8) 0%, transparent 10%),
        radial-gradient(circle at 100% 100%, rgba(255, 180, 80, 0.7) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.4) 0%, transparent 10%);
    filter: blur(40px);
}

@keyframes leakAnimation {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: none;
    background-size: cover;
    background-position: center;
    filter: contrast(1.2) brightness(1.1) saturate(1.2) sepia(0.2);
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* VHS Glitch / Tracking Error Transition (0.1s ULTRA FAST) */
.vhs-transition {
    animation: vhsGlitch 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes vhsGlitch {
    0% {
        transform: translate(0);
        opacity: 1;
        filter: blur(0px) hue-rotate(0deg);
    }

    10% {
        transform: translate(-10px, 5px) skewX(-20deg);
        filter: blur(2px) hue-rotate(90deg);
        opacity: 0.8;
    }

    30% {
        transform: translate(15px, -10px) skewX(20deg);
        filter: blur(5px) invert(0.2);
    }

    50% {
        transform: translate(-5px, 20px);
        opacity: 0.2;
        /* Fade out briefly to swap */
    }

    70% {
        transform: translate(10px, -5px) skewX(-10deg);
        opacity: 0.8;
        filter: blur(2px) hue-rotate(-90deg);
    }

    100% {
        transform: translate(0);
        opacity: 1;
        filter: blur(0px) hue-rotate(0deg);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    color: rgba(255, 255, 255, 0.9);
    font-size: 3rem;
    /* Larger arrow */
    line-height: 1;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Shadow for legibility over fade */
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* Content Section with Gradient */
#content {
    /* Gradient from light gray to white towards the bottom */
    background: linear-gradient(to bottom, #dcdcdc 0%, #ffffff 100%);
    padding: 100px 40px;
    /* min-height removed per request */
    position: relative;
    z-index: 30;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Remove default header padding override to rely on transition logic */
@media (min-width: 1200px) {
    header {
        padding: 20px 0;
    }
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 900px) {
    .content-grid {
        grid-template-columns: 1.6fr 1fr;
        /* Wider text column */
    }

    .content-grid.reverse-grid {
        grid-template-columns: 1fr 1.6fr;
        /* Narrower image, wider text */
    }
}

.text-column {
    display: flex;
    flex-direction: column;
}

/* Sketches Column Logic */
.image-column {
    width: 100%;
    height: 80%;
    /* Updated height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Updated alignment */
    align-items: center;
    gap: 0;
}

.sketch-image {
    width: 70%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Requested Filter */
    filter: contrast(1.1) brightness(0.95) blur(0.5px) opacity(0.8);
    transition: transform 0.3s ease;

    /* Blending / "Crossfade" Logic */
    /* Negative margin to pull them together */
    margin-bottom: -60px;
    /* Gradient mask to fade top and bottom edges for smooth join */
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.sketch-image:last-child {
    margin-bottom: 0;
}

h1,
h2 {
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'ITC Avant Garde Std Md', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
}

h4 {
    margin-bottom: 0px;
}

p {
    line-height: 1.4;
    /* Updated to 1.4 */
    margin-bottom: 25px;
    color: #222;
    font-family: 'ITC Avant Garde Std Bk', sans-serif;
    font-size: 1.05rem;
    text-align: justify;
    /* Justified text */
}

/* Nominations Section */
#nominations {
    background-color: #fff;
    padding: 80px 40px;
    position: relative;
    z-index: 30;
}

.image-column-single {
    width: 100%;
    padding-top: 10vh;
    /* Added padding per request */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align top */
}

.grammy-sketch {
    width: 85%;
    /* Updated width */
    height: auto;
    object-fit: contain;

    /* Matching sketch-image filter and mask */
    filter: blur(0.5px) opacity(0.8);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);

    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.grammy-sketch:hover {
    transform: rotate(0deg) scale(1.02);
    /* Improve visibility on hover */
    filter: contrast(1.1) brightness(1) blur(0) opacity(1);
    mask-image: none;
    -webkit-mask-image: none;
}

.nomination-block h3 {
    font-family: 'ITC Avant Garde Std Md', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #444;
}

.year-block {
    margin-bottom: 30px;
    border-left: 2px solid #eee;
    padding-left: 20px;
}

.year {
    font-family: 'ITC Avant Garde Std Md', sans-serif;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 0px;
    /* Fixing h4 margin issue */
}

.nomination-items {
    list-style: none;
}

.nomination-items li {
    margin-bottom: 0px;
    font-family: 'ITC Avant Garde Std Bk', sans-serif;
    font-size: 1rem;
    color: #333;
}

.nomination-items .category {
    font-weight: 600;
    color: #111;
}

.nomination-items .work {
    font-style: italic;
    color: #555;
}


/* Credits Section */
#credits {
    background-color: #111;
    padding: 60px 0;
    color: #fff;
    position: relative;
    z-index: 30;
}

.credits-container {
    max-width: 100%;
}

.credits-title {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 2rem;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Mobile default */
    gap: 0;
    width: 100%;
    margin: 0 auto;
}

/* Tablet */
@media (min-width: 600px) {
    .credits-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Desktop: 12 Columns as requested */
@media (min-width: 1200px) {
    .credits-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.credit-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #222;
}

.credit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: none;
    /* Grayscale removed */
}

.credit-item:hover img {
    transform: scale(1.05);
    z-index: 2;
}

/* Modal */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-content {
        flex-direction: row;
        height: 400px;
    }
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .modal-image {
        width: 400px;
        height: 100%;
    }
}

.modal-body {
    display: flex;
    flex-direction: column;
    /* Mobile */
    width: 100%;
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
    }
}

.modal-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.info-group {
    margin-bottom: 20px;
}

.info-group .label {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.info-group .value {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'ITC Avant Garde Std Md', sans-serif;
}

.spotify-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #1DB954;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.spotify-btn:hover {
    transform: scale(1.05);
}

.credits-footer {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 35px;
    /* Standardized to 2px */
    border: 1px solid #fff;
    /* Base border White (matches Text) */
    border-radius: 4px;
    /* Standardized */
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    /* Standardized */
    font-weight: 600;
    /* Standardized */
    font-family: "ITC Avant Garde Std Bk", Inter, sans-serif;
    /* Requested Font */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Standardized */
}

.view-all-btn:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    /* Invert border to black */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* FAQ Section */
#faq {
    background-color: #fff;
    padding: 80px 0;
    color: #111;
}

#load-more-faq {
    background-color: #111;
    color: #fff;
    border: 1px solid #fff;
    /* Base border White (matches Text) */
    border-radius: 4px;
    /* Standardized */
    padding: 12px 35px;
    /* Standardized */
    font-family: "ITC Avant Garde Std Bk", Inter, sans-serif;
    /* Requested Font */
    text-transform: uppercase;
    /* Match others */
    letter-spacing: 2px;
    /* Match others */
    font-size: 0.9rem;
    /* Standardized */
    font-weight: 600;
    /* Standardized */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Standardized */
    transition: all 0.3s ease;
}

#load-more-faq:hover {
    background-color: #fff;
    border-color: #000;
    /* Invert border to black */
    color: #000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-main-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #111;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #555;
}

.faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-a-text {
    color: #666;
    line-height: 1.6;
}

/* Quote Modal Specifics */
.quote-modal-content {
    background-color: #000;
    width: 95%;
    max-width: 1200px;
    /* Wide modal for the form */
    height: 90vh;
    padding: 0;
    /* Remove padding to let iframe fill */
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #333;
}

.quote-modal-content .close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 10;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 12px;
    border-radius: 4px;
}

.quote-frame-wrapper {
    flex: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#quote-iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Section */
#contact {
    background-color: #0d0d0d;
    color: #fff;
    padding: 0 0 100px 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

/* Quote Box - Now Top Centered */
.quote-box {
    text-align: center;
    margin-bottom: 0px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /* Remove heavy box styling if user wants just text, but keeping it subtle is good.
       Let's make it transparent or very subtle. */
    background: transparent;
    padding: 0;
    border: none;
}

.quote-box h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #fff;
}

.quote-box p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.quote-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 35px;
    /* Standardized */
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    /* Standardized from 700 */
    letter-spacing: 2px;
    /* Standardized to 2px */
    border: 1px solid #000;
    /* Base border Black (matches Text) */
    border-radius: 4px;
    /* Standardized */
    font-size: 0.9rem;
    /* Standardized implicitly */
    font-family: "ITC Avant Garde Std Bk", Inter, sans-serif;
    /* Requested Font */
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Standardized */
}

.quote-btn:hover {
    background-color: #000;
    /* Invert to black */
    color: #fff;
    /* Invert to white */
    border-color: #fff;
    /* Ensure border is visible */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* Standardized Hover */
}

.contact-content {
    /* No longer grid */
    max-width: 800px;
    margin: 0 auto;
}

/* Form Styles */
.contact-form-wrapper h3 {
    /* Hide or style the form title? User didn't ask to remove it but with the quote text above,
       maybe just keep it distinct. */
    margin-bottom: 30px;
    font-size: 1.4rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    display: inline-block;
    color: #fff;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
    /* Light gray label */
    text-transform: uppercase;
    letter-spacing: 1px;
}

input,
select,
textarea {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #666;
}

/* Phone Input */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    border: 1px solid #333;
}

.phone-input-wrapper:focus-within {
    border-color: #666;
}

.dial-code-display {
    padding: 0 15px;
    color: #fff;
    background: #222;
    height: 100%;
    /* Fix height issue */
    min-height: 45px;
    /* Ensure match input height if input height varies */
    display: flex;
    align-items: center;
    border-right: 1px solid #333;
    min-width: 60px;
    justify-content: center;
    font-weight: bold;
}

.phone-input-wrapper input {
    border: none;
    flex: 1;
}

.submit-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    /* Standardized */
    padding: 12px 35px;
    /* Standardized */
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    /* Standardized */
    font-size: 0.9rem;
    /* Standardized */
    font-family: "ITC Avant Garde Std Bk", Inter, sans-serif;
    /* Requested Font */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Standardized */
}

.submit-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
    /* Invert border */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* Hover Shadow */
    transform: translateY(-2px);
}

/* Footer */
#main-footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    border-top: 1px solid #222;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 20px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link span {
    font-size: 1rem;
    font-family: 'ITC Avant Garde Std Bk', Inter, sans-serif;
    letter-spacing: 1px;
}

.social-link:hover {
    color: #ccc;
    transform: translateY(-3px);
}

.footer-copyright {
    color: #666;
    font-size: 0.8rem;
    font-family: 'ITC Avant Garde Std Bk', Inter, sans-serif;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .content-grid {
        gap: 0px;
        display: block;
    }

    .sketch-image {
        width: 125%;
        max-width: 125%;
    }

    /* Nominations Section Specifics */
    #nominations .content-grid {
        display: flex;
        grid-template-columns: 1fr;
        gap: 0px;
        align-items: center;
        flex-direction: column-reverse;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    #nominations .container {
        max-width: 1200px;
        margin: 0;
    }

    /* Logo Specifics */
    .logo-img {
        filter: none !important;
    }

    .logo-wrapper {
        position: relative;
        z-index: 1003;
    }
}

/* =========================================
   PRELOADER STYLES
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    width: 150px;
    height: auto;
    animation: pulseLogo 2s infinite ease-in-out;
    filter: none;
    position: relative;
    z-index: 10;
}

.loader-line {
    width: 0;
    height: 2px;
    background-color: #fff;
    animation: loadLine 2s ease-in-out forwards;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes loadLine {
    0% {
        width: 0;
        opacity: 0.5;
    }

    50% {
        width: 100px;
        opacity: 1;
    }

    100% {
        width: 200px;
        opacity: 0;
    }
}