/* ========================================
   Colorado Beef Festival - Main Stylesheet
   ======================================== */

/* ========================================
   CSS Variables (Design System)
   ======================================== */
:root {
    /* Colors */
    --primary-red: #F31A24;
    --secondary-red: #B22222;
    --off-white: #F9F6F0;
    --white: #FFFFFF;
    --black: #1F1B1C;
    --dark-gray: #494949;

    /* Typography */
    --font-heading: 'Black Mustang', sans-serif;
    --font-subheading: 'Archivo Black', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-max: 1200px;

    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   Container & Layout Utilities
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--black);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--dark-gray);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: var(--black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 100px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-family: var(--font-subheading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-smooth);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 40px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-red);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
}

.btn-secondary:hover {
    background: var(--off-white);
}

.btn-large {
    padding: 18px 50px;
    font-size: 16px;
}

.btn-xl {
    padding: 20px 60px;
    font-size: 18px;
}

/* ========================================
   Chefs Section
   ======================================== */
.section-chefs {
    background: var(--off-white);
}

.chef-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.chef-card {
    text-align: center;
    padding: 20px;
}

.chef-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--dark-gray);
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-name {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--black);
}

.chef-restaurant {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.chef-bio {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--black);
    line-height: 1.5;
}

/* ========================================
   VIP Section
   ======================================== */
.section-vip {
    background: var(--primary-red);
    padding: 0;
}

.vip-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.vip-image {
    overflow: hidden;
}

.vip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vip-content {
    padding: 80px 60px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vip-title {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.vip-subtitle {
    font-family: var(--font-subheading);
    font-size: 24px;
    margin-bottom: 30px;
}

.vip-benefits {
    margin-bottom: 40px;
}

.vip-benefits li {
    font-family: var(--font-body);
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 0;
}

.vip-benefits strong {
    font-weight: 700;
}

/* ========================================
   What to Expect Section
   ======================================== */
.section-expect {
    background: var(--white);
}

.expect-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.expect-title {
    font-family: var(--font-heading);
    font-size: 64px;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--black);
}

.expect-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--dark-gray);
    margin-top: 20px;
}

.expect-intro {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--black);
}

.expect-list {
    list-style: none;
}

.expect-list li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--black);
}

.expect-list strong {
    font-family: var(--font-subheading);
    color: var(--primary-red);
    display: block;
    margin-bottom: 5px;
}

/* ========================================
   Music Section
   ======================================== */
.section-music {
    background: var(--off-white);
}

.headliner-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.headliner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headliner-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.headliner-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    font-family: var(--font-subheading);
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 15px;
    width: fit-content;
}

.headliner-name {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--black);
}

.headliner-bio {
    font-family: var(--font-body);
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--black);
}

.headliner-meta {
    display: flex;
    gap: 30px;
    align-items: center;
}

.music-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--black);
    transition: var(--transition-smooth);
}

.music-link:hover {
    color: var(--primary-red);
}

.set-time {
    font-family: var(--font-subheading);
    font-size: 14px;
    color: var(--dark-gray);
}

/* Artist Grid */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.artist-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.artist-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--dark-gray);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card h3,
.artist-card p,
.artist-meta {
    padding: 0 20px;
}

.artist-name {
    font-family: var(--font-subheading);
    font-size: 20px;
    margin: 15px 20px 10px;
    color: var(--black);
}

.artist-bio {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.artist-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.music-link-small {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--black);
    transition: var(--transition-smooth);
}

.music-link-small:hover {
    color: var(--primary-red);
}

.set-time-small {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--dark-gray);
}

/* Music CTA */
.music-cta {
    text-align: center;
    padding: 40px 20px;
}

.music-cta-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--black);
}

/* ========================================
   Tickets Section
   ======================================== */
.section-tickets {
    background: var(--white);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.ticket-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 8px;
    border: 3px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
}

.ticket-card-featured {
    border-color: var(--primary-red);
    background: var(--white);
}

.ticket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    font-family: var(--font-subheading);
    font-size: 12px;
    padding: 8px 20px;
    white-space: nowrap;
}

.ticket-type {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--black);
    text-align: center;
}

.ticket-plus {
    font-family: var(--font-subheading);
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--black);
    text-align: center;
}

.ticket-features {
    list-style: none;
}

.ticket-features li {
    font-family: var(--font-body);
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--black);
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 10px;
}

/* Event Logistics */
.event-logistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--off-white);
    border-radius: 8px;
}

.logistics-item {
    text-align: center;
}

.logistics-label {
    font-family: var(--font-subheading);
    font-size: 18px;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.logistics-value {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
}

.tickets-cta {
    text-align: center;
}

/* ========================================
   Ranchers Section
   ======================================== */
.section-ranchers {
    background: var(--off-white);
}

.rancher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.rancher-card {
    text-align: center;
    padding: 20px;
}

.rancher-image {
    width: 200px;
    height: auto;
    margin: 0 auto 20px;
}

.rancher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rancher-name {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--black);
}

.rancher-location {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.rancher-bio {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--black);
    line-height: 1.5;
}

/* ========================================
   Partners/Sponsors Section
   ======================================== */
.section-partners {
    background: var(--white);
}

.sponsor-tier {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.sponsor-presenting img {
    max-width: 300px;
    height: auto;
}

.sponsor-prime img {
    max-width: 180px;
    height: auto;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

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

.sponsor-heritage img {
    max-width: 150px;
    height: auto;
    opacity: 0.7;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: var(--font-subheading);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-event-info {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--off-white);
}

.footer-heading {
    font-family: var(--font-subheading);
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--off-white);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--white);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--off-white);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 48px;
    }

    .hero-title {
        font-size: 56px;
    }

    .expect-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expect-title {
        font-size: 48px;
    }

    .vip-container {
        grid-template-columns: 1fr;
    }

    .vip-content {
        padding: 60px 40px;
    }

    .headliner-card {
        grid-template-columns: 1fr;
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {

    /* Header */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        background: var(--black);
        width: 70%;
        height: calc(100vh - 90px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        right: 0;
    }

    /* Hero */
    .hero-title {
        font-size: 40px;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    /* Typography */
    .section-title {
        font-size: 36px;
    }

    .section {
        padding: 60px 20px;
    }

    /* Grids */
    .chef-grid,
    .rancher-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    /* VIP Section */
    .vip-title {
        font-size: 32px;
    }

    .vip-subtitle {
        font-size: 18px;
    }

    .vip-benefits li {
        font-size: 16px;
    }

    /* Expect Section */
    .expect-title {
        font-size: 36px;
    }

    .expect-intro {
        font-size: 16px;
    }

    /* Headliner */
    .headliner-name {
        font-size: 28px;
    }

    .headliner-bio {
        font-size: 16px;
    }

    .headliner-content {
        padding: 30px 20px;
    }

    /* Tickets */
    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .event-logistics {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    /* Buttons */
    .btn-large,
    .btn-xl {
        padding: 15px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .vip-title {
        font-size: 28px;
    }

    .expect-title {
        font-size: 28px;
    }
}

/* ========================================
   Accessibility & Focus States
   ======================================== */
*:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

    .header,
    .footer,
    .btn {
        display: none;
    }

    .hero-video {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* ========================================
   Animation Classes (Optional)
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}
