/* ============================================
   WAR OF THE ROSES 2026 — Styles
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #001b2a;
    color: #efe8d3;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---------- Typography ---------- */
.section-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.title-icon {
    display: inline-block;
    color: #fecb00;
    font-size: 0.6em;
    vertical-align: middle;
    margin: 0 0.4em;
    opacity: 0.7;
}

.script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background: #fecb00;
    color: #001b2a;
}

.btn-vote {
    background: #f27ebc;
    color: #001b2a;
    margin-top: 2.5rem;
}

.btn-outline {
    background: transparent;
    color: #efe8d3;
    border: 2px solid #efe8d3;
}

.btn-outline:hover {
    background: #efe8d3;
    color: #001b2a;
}

/* ============================================
   FLOATING PETALS ANIMATION
   ============================================ */
.petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.petal {
    position: absolute;
    top: -60px;
    font-size: 1.5rem;
    color: rgba(180, 40, 50, 0.2);
    animation: petalFall linear infinite;
}

.petal-1 {
    left: 5%;
    animation-duration: 12s;
    animation-delay: 0s;
    font-size: 1.2rem;
}

.petal-2 {
    left: 15%;
    animation-duration: 15s;
    animation-delay: 2s;
    font-size: 1.8rem;
    color: rgba(242, 126, 188, 0.15);
}

.petal-3 {
    left: 30%;
    animation-duration: 10s;
    animation-delay: 4s;
    font-size: 1rem;
}

.petal-4 {
    left: 50%;
    animation-duration: 18s;
    animation-delay: 1s;
    font-size: 1.5rem;
    color: rgba(254, 203, 0, 0.12);
}

.petal-5 {
    left: 65%;
    animation-duration: 14s;
    animation-delay: 3s;
    font-size: 1.3rem;
}

.petal-6 {
    left: 80%;
    animation-duration: 11s;
    animation-delay: 5s;
    font-size: 1.6rem;
    color: rgba(242, 126, 188, 0.15);
}

.petal-7 {
    left: 90%;
    animation-duration: 16s;
    animation-delay: 0.5s;
    font-size: 1.1rem;
}

.petal-8 {
    left: 42%;
    animation-duration: 13s;
    animation-delay: 6s;
    font-size: 1.4rem;
    color: rgba(254, 203, 0, 0.1);
}

@keyframes petalFall {
    0% {
        transform: translateY(-60px) rotate(0deg) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg) translateX(80px);
        opacity: 0;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    width: 100%;
    min-height: 80vh;
    /* Give it enough height to show the collage */
    background-color: #0d1b2a;
    /* Overlay a dark gradient at the bottom over the wotr.png image, and a solid blue tint over the whole image */
    background-image: linear-gradient(to top, rgba(13, 27, 42, 1) 0%, rgba(13, 27, 42, 0) 40%),
        linear-gradient(rgba(13, 27, 42, 0.5), rgba(13, 27, 42, 0.5)),
        url('images/wotr.png');
    background-size: cover;
    background-position: center 60%;
    /* Shifted down from the top to show more people/less building */
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    /* Use flexbox to easily position the cover img at the bottom */
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    /* Give it a little breathing room from the very bottom edge */
}

.hero-cover-img {
    max-width: 800px;
    width: 90%;
    height: auto;
    display: block;
    margin-top: auto;
    /* Pushes the image down within the flex container */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    /* Add a shadow to pop it off the background */
}



/* ============================================
   SECTION DIVIDERS
   ============================================ */
.section-divider {
    height: 30px;
    width: 100%;
    background: transparent;
    overflow: hidden;
}

.section-divider svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   EVENT DETAILS
   ============================================ */
.event-details {
    padding: 6rem 2rem;
    background-image:
        linear-gradient(rgba(4, 25, 48, 0.8), rgba(1, 16, 36, 0.9)),
        url('images/band.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: local;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(239, 232, 211, 0.05);
    border-bottom: 1px solid rgba(239, 232, 211, 0.05);
}

.event-details-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.event-details-inner.harvey-street-layout {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.harvey-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(4.5rem, 9vw, 8.5rem);
    color: #f1e1b8;
    /* Beige/Cream */
    line-height: 0.75;
    margin: 0;
    letter-spacing: -0.04em;
    /* Packed tightly */
    text-transform: uppercase;
    transform: scaleY(1.25);
    /* Stretched vertically */
    transform-origin: bottom left;
    margin-bottom: 2rem;
}

.harvey-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: #f1e1b8;
    margin-top: 0;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.ampersand {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5em;
    margin-right: 0.25rem;
}

.harvey-date {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #e69a9a;
    /* Dusty Pink */
    margin: 0;
    line-height: 0.75;
    letter-spacing: -0.06em;
    /* Extremely packed lettering */
    text-transform: uppercase;
    transform: scaleY(1.25);
    /* Stretched vertically */
    transform-origin: top left;
    margin-bottom: 0.5rem;
}

.harvey-bottom-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.harvey-greek {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: #f1e1b8;
    line-height: 1;
    letter-spacing: 0.05em;
}

.harvey-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.harvey-info p {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #f1e1b8;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.harvey-link {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #f1e1b8;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}

.harvey-link:hover {
    opacity: 0.7;
}

/* ============================================
   SCHEDULE
   ============================================ */
.schedule {
    padding: 3rem 2rem;
    background: #001b2a;
    position: relative;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-card {
    background: rgba(239, 232, 211, 0.05);
    border: 1px solid rgba(239, 232, 211, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(254, 203, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(254, 203, 0, 0.3);
}

.schedule-card:hover::before {
    opacity: 1;
}

.schedule-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    filter: grayscale(0.3);
}

.schedule-day {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.schedule-date {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.schedule-event-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.schedule-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    opacity: 0.65;
}

.schedule-detail {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    opacity: 0.65;
    margin-top: 0.3rem;
}

/* ============================================
   POINT SYSTEM
   ============================================ */
.points-system {
    padding: 5rem 2rem;
    background: #0a0a0a;
    text-align: center;
}

.points-system-small {
    padding: 2.5rem 2rem;
}

.points-simple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(254, 203, 0, 0.08);
    border: 1px solid rgba(254, 203, 0, 0.3);
    border-radius: 12px;
    padding: 1.25rem 2.5rem;
}

.points-simple .points-value {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: #fecb00;
}

.points-simple .points-label {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.4rem;
    opacity: 0.9;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.points-card {
    background: rgba(239, 232, 211, 0.06);
    border: 1px solid rgba(239, 232, 211, 0.12);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.3s ease;
}

.points-card:hover {
    transform: translateY(-3px);
    border-color: rgba(254, 203, 0, 0.3);
}

.points-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.points-value {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 2rem;
    color: #fecb00;
    margin-bottom: 0.25rem;
}

.points-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.8;
}

.points-bonus {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(62, 122, 142, 0.15);
    border: 1px solid rgba(62, 122, 142, 0.3);
    border-radius: 10px;
    padding: 2rem;
}

.points-bonus-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.points-bonus-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1rem;
}

.points-bonus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.bonus-points {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fecb00;
}

.bonus-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    opacity: 0.7;
}

.points-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* ============================================
   NOMINEES
   ============================================ */
.nominees {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #001b2a 0%, #012235 100%);
    text-align: center;
}

.nominees-header-img {
    display: block;
    max-width: 700px;
    width: 90%;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
}

.nominees-voting-info {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: #fecb00;
    margin-bottom: 3rem;
}

.nominees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.nominee-card {
    background: var(--nominee-bg, #666);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #1a1a1a;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.nominee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nominee-info {
    text-align: center;
}

.nominee-org {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nominee-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    letter-spacing: 0.05em;
    margin-top: 0;
    margin-bottom: 0.2rem;
}

.nominee-points {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fecb00;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
    border: 1px solid rgba(254, 203, 0, 0.2);
}

.nominee-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin-top: 0.5rem;
}

.nominee-crest {
    width: 120px;
    height: 160px;
    object-fit: contain;
}

.nominee-photo-placeholder {
    width: 140px;
    height: 180px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.nominee-photo {
    width: 140px;
    height: 180px;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SPONSORS
   ============================================ */
.sponsors {
    padding: 1.25rem 2rem;
    background: #0a0a0a;
    text-align: center;
}

.sponsors .section-title {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.3rem;
    opacity: 0.6;
}

.sponsor-logo-img {
    display: block;
    max-width: 140px;
    width: 50%;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.sponsor-logo-img:hover {
    opacity: 1;
}

/* ============================================
   POINT SYSTEM (FULL)
   ============================================ */
.points-full {
    padding: 3rem 2rem;
    background: #001b2a;
    text-align: center;
}

.points-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    max-width: 800px;
    margin: 2.5rem auto 0;
    text-align: left;
}

.points-full-card {
    padding: 0;
}

.points-full-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: #efe8d3;
    margin-bottom: 0.3rem;
}

.points-full-detail {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* ============================================
   LEADERBOARD
   ============================================ */
.leaderboard {
    padding: 3rem 2rem;
    background: #001b2a;
    text-align: center;
}

.standings-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.65;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
}

.podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

.podium-spot {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podium-rank {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.podium-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.podium-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
}

.first .podium-rank {
    color: #fecb00;
}

.first .podium-bar {
    height: 180px;
    background: linear-gradient(180deg, #fecb00, #b8920a);
}

.second .podium-rank {
    color: #c0c0c0;
}

.second .podium-bar {
    height: 130px;
    background: linear-gradient(180deg, #c0c0c0, #888);
}

.third .podium-rank {
    color: #cd7f32;
}

.third .podium-bar {
    height: 90px;
    background: linear-gradient(180deg, #cd7f32, #8b5a2b);
}

/* ============================================
   CHARITY
   ============================================ */
.charity {
    padding: 3rem 2rem;
    background: #0d1b2a;
    /* Solid dark navy to match image */
    text-align: center;
}

.charity-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.charity-content {
    flex: 1 1 450px;
    text-align: left;
}

.charity .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #efe8d3;
    font-family: 'Cinzel', serif;
    font-weight: 900;
}

.charity-icon {
    font-size: 2rem;
    color: #9c2738;
    /* darker red like image */
    margin-bottom: 2rem;
    animation: heartbeat 2s ease-in-out infinite;
    text-align: left;
}

.charity-gallery {
    flex: 1 1 450px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    padding: 1rem;
}

.charity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.charity-img:hover {
    transform: scale(1.03);
}

.charity-img-main {
    grid-column: 1 / 3;
    aspect-ratio: 16 / 9;
}

.charity-img-sub1,
.charity-img-sub2 {
    aspect-ratio: 1 / 1;
}

/* Decorative floating roses */
.charity-rose {
    position: absolute;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 10;
    pointer-events: none;
    opacity: 0.8;
}

.charity-rose-1 {
    top: 5%;
    left: 2%;
    transform: rotate(-15deg);
    font-size: 2.5rem;
}

.charity-rose-2 {
    bottom: -2%;
    right: 5%;
    transform: rotate(25deg);
    font-size: 3rem;
}

.charity-rose-3 {
    top: 45%;
    right: -5%;
    transform: rotate(10deg);
}

.charity-rose-4 {
    bottom: 40%;
    left: -3%;
    transform: rotate(-30deg);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .charity-content {
        text-align: center;
    }

    .charity-icon {
        text-align: center;
    }
}

.charity-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #efe8d3;
}

.charity-text b {
    font-weight: 700;
    color: #ffffff;
}

.charity-footer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 1rem;
}

.charity-badge {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   FOLLOW / INSTAGRAM
   ============================================ */
.follow-section {
    padding: 1.5rem 2rem;
    background: #0a0a0a;
    text-align: center;
}

.follow-content {
    max-width: 350px;
    margin: 0 auto;
}

.follow-section .section-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.instagram-card {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.instagram-card:hover {
    opacity: 0.8;
}

.instagram-icon {
    color: #efe8d3;
    opacity: 0.85;
}

.instagram-icon svg {
    width: 26px;
    height: 26px;
}

.instagram-handle {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fecb00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-handle:hover {
    color: #f27ebc;
}

.instagram-cta {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 2.5rem 2rem;
    background: #000;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.footer-rose {
    font-size: 1.2rem;
    color: rgba(180, 40, 50, 0.6);
    margin-bottom: 0.5rem;
}

.footer-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

/* Tablet / Half-screen */
@media (max-width: 900px) {
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nominees-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .event-venue {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero-rose {
        width: 100px;
        height: 100px;
    }
}

/* Small tablet / narrow half-screen */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .hero-rose {
        width: 80px;
        height: 80px;
        opacity: 0.4;
    }

    .event-details,
    .schedule,
    .nominees,
    .sponsors,
    .leaderboard,
    .charity,
    .follow-section {
        padding: 3.5rem 1.5rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .nominees-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .nominee-photo-placeholder {
        width: 110px;
        height: 140px;
    }

    .nominees-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nominees-header-img {
        width: 200px;
    }

    .nominees-header-text {
        text-align: center;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .podium {
        max-width: 400px;
    }

    .first .podium-bar {
        height: 140px;
    }

    .second .podium-bar {
        height: 100px;
    }

    .third .podium-bar {
        height: 70px;
    }

    .instagram-handle {
        font-size: 1.5rem;
    }
}

/* Large phones */
@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .hero-year {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
    }

    .hero-subtitle-top {
        font-size: 0.8rem;
    }

    .hero-rose {
        display: none;
    }

    .event-details,
    .schedule,
    .nominees,
    .sponsors,
    .leaderboard,
    .charity,
    .follow-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .schedule-card {
        padding: 1.5rem;
    }

    .nominees-grid {
        grid-template-columns: 1fr;
        /* Switch to 1 column on small screens to prevent squashing */
        gap: 1.5rem;
        /* Increase gap slightly so they have room to breathe when stacked */
    }

    .nominee-card {
        padding: 1.5rem 1rem;
    }

    .nominee-org {
        font-size: 1.2rem;
    }

    .nominee-photo-placeholder {
        width: 90px;
        height: 115px;
    }

    .nominees-voting-info {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .event-venue {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .event-description {
        font-size: 1.1rem;
    }

    .event-date {
        font-size: 0.95rem;
    }

    .podium {
        gap: 0.5rem;
        max-width: 320px;
    }

    .podium-rank {
        font-size: 1rem;
    }

    .podium-name {
        font-size: 0.8rem;
    }

    .first .podium-bar {
        height: 110px;
    }

    .second .podium-bar {
        height: 80px;
    }

    .third .podium-bar {
        height: 55px;
    }

    .charity-text {
        font-size: 1rem;
    }

    .sponsor-placeholder {
        width: 160px;
        height: 80px;
    }

    .btn {
        padding: 11px 24px;
        font-size: 0.85rem;
    }

    .instagram-card {
        padding: 2rem 1.5rem;
    }

    .instagram-handle {
        font-size: 1.3rem;
    }

    .section-divider {
        height: 40px;
    }
}

/* Small phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }

    .nominees-grid {
        grid-template-columns: 1fr;
    }

    .nominee-photo-placeholder {
        width: 120px;
        height: 155px;
    }

    .title-icon {
        display: none;
    }
}