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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html, body {
    scroll-padding-top: 0;
    scroll-margin-top: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1a1a;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
    border-bottom: 2px solid #EAC435;
}

.nav.visible {
    transform: translateY(0);
    opacity: 1;
}

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

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.nav-link:hover {
    color: #1a1a1a;
    background: #EAC435;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #EAC435;
    margin: 3px 0;
    transition: 0.3s;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 100%, 3px 100%);
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px) brightness(0.5) contrast(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(70, 130, 180, 0.5) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(184, 115, 51, 0.5) 100%),
        radial-gradient(circle at 30% 30%, rgba(210, 105, 30, 0.3) 0%, transparent 50%),
        rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding-bottom: 140px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    height: 500px;
    width: auto;
    max-width: 95vw;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

/* Hero Event Info Band */
.hero-event-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    z-index: 2;
    border-top: 2px solid #EAC435;
}

.hero-event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.hero-event-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: #EAC435;
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(184, 115, 51, 0.3);
}

.info-value {
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 0;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    cursor: pointer;
    background: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.btn-primary {
    background: #EAC435;
    color: #1a1a1a;
    border-color: #EAC435;
    box-shadow: 0 0 20px rgba(210, 105, 30, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: #EAC435;
    border-color: #EAC435;
    box-shadow: 0 0 30px rgba(210, 105, 30, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #EAC435, #B87333);
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 100%, 5px 100%);
}

.section-header p {
    color: #ccc;
    font-size: 1rem;
    margin-top: 30px;
    text-align: center;
}

.section-subtitle {
    color: #999;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Artists */
.artists {
    background: #1a1a1a;
    position: relative;
}

.artists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 60% 40%, rgba(70, 130, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(184, 115, 51, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.artists > * {
    position: relative;
    z-index: 2;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.artist-card {
    background: #2C2C2C;
    border: 2px solid #B87333;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    height: 300px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: #EAC435;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.artist-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.artist-overlay {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #3C3C3C 0%, #2C2C2C 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.artist-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(234, 196, 53, 0.05) 0%, transparent 70%),
        repeating-linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.01) 1px, transparent 3px);
    pointer-events: none;
}

.artist-overlay > * {
    position: relative;
    z-index: 2;
}

.artist-overlay h3 {
    color: #EAC435;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1;
}

.beer-card .artist-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.artist-genre {
    color: #B87333;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.artists-more {
    text-align: center;
    margin-top: 2rem;
}

.artists-more p {
    color: #1a1a1a;
    background: #EAC435;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
    transition: all 0.3s ease;
}


.schedule-grid {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 0.8rem;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: center;
}

.schedule-item {
    background: #3C3C3C;
    border: 2px solid #B87333;
    padding: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.schedule-item:hover {
    background: #4A4A4A;
    border-color: #EAC435;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.schedule-time {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: #EAC435;
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
}

.schedule-event {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.3;
    font-weight: 500;
}

.schedule-item:hover .schedule-time {
    color: #fff;
    text-shadow: 0 0 10px rgba(234, 196, 53, 0.5);
}

.schedule-item:hover .schedule-event {
    color: #fff;
}

/* Schedule item types */
.schedule-performance {
    border-color: #D2691E;
    background: linear-gradient(135deg, #D2691E 0%, #B8651A 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(210, 105, 30, 0.3);
}

.schedule-performance .schedule-time {
    color: #1a1a1a;
    font-weight: 700;
    text-shadow: none;
}

.schedule-performance .schedule-event {
    color: #1a1a1a;
    font-weight: 600;
    text-shadow: none;
}

.schedule-performance:hover {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 35px rgba(210, 105, 30, 0.4);
}

.schedule-tba {
    border-color: #555;
    background: linear-gradient(135deg, #2A2A2A 0%, #1a1a1a 100%);
    opacity: 0.6;
    cursor: default;
}

.schedule-tba .schedule-time {
    color: #777;
}

.schedule-tba .schedule-event {
    color: #555;
    font-style: italic;
}

.schedule-tba:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #2A2A2A 0%, #1a1a1a 100%) !important;
    border-color: #555 !important;
}

.schedule-tba:hover .schedule-time {
    color: #777 !important;
    text-shadow: none !important;
}

.schedule-tba:hover .schedule-event {
    color: #555 !important;
}

.schedule-event-type {
    border-color: #666;
    background: linear-gradient(135deg, #3C3C3C 0%, #2C2C2C 100%);
}

.schedule-event-type .schedule-time {
    color: #999;
}

.schedule-event-type .schedule-event {
    color: #ccc;
}

.schedule-event-type:hover {
    transform: none;
    border-color: #666;
    background: linear-gradient(135deg, #3C3C3C 0%, #2C2C2C 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.schedule-more {
    text-align: center;
    margin-top: 4rem;
}

.schedule-more p {
    color: #1a1a1a;
    background: #EAC435;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

/* Beer Selection */
.breweries {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%),
        url('https://files.petsq.works/beatsnbrews/sb-01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.breweries::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    pointer-events: none;
    z-index: 1;
}

.breweries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(184, 115, 51, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(210, 105, 30, 0.15) 0%, transparent 40%),
        repeating-linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 1px, transparent 2px, transparent 40px);
    pointer-events: none;
    z-index: 1;
}

.breweries > * {
    position: relative;
    z-index: 2;
}

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

/* Festival Exclusive Beer */
.brewery-highlight {
    background:
        linear-gradient(135deg, #3C3C3C 0%, #2C2C2C 100%),
        linear-gradient(45deg, rgba(234, 196, 53, 0.1) 0%, transparent 50%);
    padding: 2rem;
    border-radius: 0;
    width: 100%;
    max-width: 1000px;
    border: 3px solid #EAC435;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    box-shadow:
        0 15px 35px rgba(0,0,0,0.6),
        inset 0 2px 10px rgba(234, 196, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.brewery-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0%, rgba(234, 196, 53, 0.02) 1px, transparent 3px),
        repeating-linear-gradient(-45deg, transparent 0%, rgba(234, 196, 53, 0.01) 1px, transparent 6px);
    pointer-events: none;
}

.special-launch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #EAC435;
}

.special-launch-header h3 {
    color: #EAC435;
    margin-bottom: 0;
    font-size: 2rem;
    text-shadow: 0 0 5px rgba(234, 196, 53, 0.15);
}

.launch-badge {
    background: #EAC435;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 100%, 5px 100%);
    box-shadow: 0 0 15px rgba(234, 196, 53, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.beer-showcase {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    align-items: center;
}

.beer-image {
    text-align: center;
    position: relative;
}

.beer-mockup {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: all 0.3s ease;
}

.beer-image:hover .beer-mockup {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
}

.beer-info h4 {
    color: #EAC435;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', cursive;
    text-shadow: 0 0 4px rgba(234, 196, 53, 0.15);
}

.beer-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.beer-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.beer-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid #555;
}

.beer-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #B87333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

/* Beer Grid */
.beer-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.beer-grid-container h3 {
    color: #EAC435;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.beer-grid-container > p {
    color: #ccc;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.beer-grid-container > p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #EAC435, #B87333);
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 100%, 3px 100%);
}

.beer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.beer-card {
    /* Inherits from .artist-card styles */
}

.beer-more {
    text-align: center;
    margin-top: 3rem;
}

.beer-more p {
    color: #1a1a1a;
    background: #EAC435;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* What Makes Us Unique */
.unique {
    background: #1a1a1a;
    position: relative;
    padding: 80px 0;
}

.unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 40% 60%, rgba(70, 130, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 139, 34, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.unique > * {
    position: relative;
    z-index: 2;
}

.unique-scattered {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.unique-item {
    position: relative;
    width: 100%;
}

.unique-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.unique-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.unique-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.95) 100%);
    padding: 4rem 1.5rem 1.5rem;
    text-align: center;
    z-index: 3;
}

.unique-content h3 {
    color: #EAC435;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.unique-content p {
    color: #fff;
    line-height: 1.4;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* Location */
.location {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%),
        url('https://files.petsq.works/beatsnbrews/stadshaven.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.location::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    pointer-events: none;
    z-index: 1;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(184, 115, 51, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(70, 130, 180, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 1px, transparent 2px, transparent 60px);
    pointer-events: none;
    z-index: 1;
}

.location > * {
    position: relative;
    z-index: 2;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-image {
    overflow: hidden;
    position: relative;
}

.location-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #4682B4, #B87333, #4682B4);
    z-index: -1;
    border-radius: 0;
    opacity: 0.3;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.location-image:hover img {
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.02);
}

.location-info h3 {
    color: #B87333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.location-info p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-address {
    background: #3C3C3C;
    padding: 1.5rem;
    border-radius: 0;
    border: 3px solid #EAC435;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.location-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #EAC435, #B87333);
}

.location-map {
    margin-top: 4rem;
    border-radius: 0;
    overflow: hidden;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    filter: contrast(1.1) saturate(0.9);
}

/* Event Information */
.event-info {
    background: #1a1a1a;
    position: relative;
}

.event-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
    z-index: 1;
}

.event-info > * {
    position: relative;
    z-index: 2;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.event-info-section {
    padding: 0;
}

.event-info-section h3 {
    color: #EAC435;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.event-info-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: left;
}

.event-info-item {
    margin-bottom: 0.8rem;
}

.event-info-item:last-child {
    margin-bottom: 0;
}

.event-info-link {
    color: #ccc;
    text-decoration: underline;
    text-decoration-color: #B87333;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.event-info-link:hover {
    color: #EAC435;
    text-decoration-color: #EAC435;
}

/* About */
.about {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%),
        url('https://files.petsq.works/beatsnbrews/bnb-about.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    pointer-events: none;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 60% 40%, rgba(184, 115, 51, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.01) 50%, transparent 52%);
    pointer-events: none;
    z-index: 1;
}

.about > * {
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact */
.contact {
    background: #1a1a1a;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(70, 130, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(184, 115, 51, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact > * {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-signup,
.contact-social,
.contact-location {
    text-align: center;
}

.contact-signup h3,
.contact-social h3,
.contact-location h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.signup-form {
    background: #3C3C3C;
    padding: 2rem;
    border-radius: 0;
    border: 3px solid #EAC435;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    padding: 12px;
    border: 2px solid #EAC435;
    border-radius: 4px;
    background: #2C2C2C;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #B87333;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #B87333;
    text-transform: uppercase;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70,130,180,0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: #B87333;
    color: #1a1a1a;
}

.social-icon {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-location p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #111;
    padding: 0 0 2rem 0;
    border-top: 2px solid #B87333;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(70, 130, 180, 0.1) 0%, transparent 50%, rgba(184, 115, 51, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-logo-wide {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-wide img {
    width: calc(100vw - 2rem);
    height: auto;
    object-fit: contain;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal.active .modal-nav {
    display: flex !important;
}

.modal-content {
    background: #3C3C3C;
    padding: 2rem;
    border-radius: 0;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: calc(1rem + 40px);
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: #B87333;
}


.modal h2 {
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.modal p {
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form input {
    padding: 12px;
    border: 2px solid #EAC435;
    border-radius: 4px;
    background: #2C2C2C;
    color: #fff;
    font-size: 1rem;
}

.modal-form input:focus {
    outline: none;
}

/* Artist Modal */
.artist-modal-content {
    background: #2C2C2C;
    padding: 0;
    border-radius: 0;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
}

/* Modal Navigation Buttons */
.modal-nav {
    position: fixed !important;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(234, 196, 53, 0.95) !important;
    border: 3px solid #EAC435 !important;
    color: #1a1a1a !important;
    font-size: 2.2rem;
    font-weight: 900;
    cursor: pointer;
    z-index: 9999 !important;
    transition: all 0.3s ease;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    touch-action: manipulation;
    user-select: none;
}

.modal-nav:hover {
    background: #EAC435;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(234, 196, 53, 0.7);
    border-color: #fff;
}

.modal-nav-prev {
    left: calc(50% - 485px);
}

.modal-nav-next {
    right: calc(50% - 485px);
}

.modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(136, 136, 136, 0.5);
}

.modal-nav:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.artist-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.artist-modal-image {
    position: relative;
    overflow: hidden;
}

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

.artist-modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
}

.artist-modal-info h2 {
    color: #EAC435;
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.artist-modal-genre {
    color: #B87333;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-modal-bio {
    color: #E8E8E8;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.artist-modal-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.artist-modal-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #EAC435;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    background: rgba(234, 196, 53, 0.1);
    border: 1px solid #EAC435;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
    transition: all 0.3s ease;
}

.artist-modal-social .social-link:hover {
    background: #EAC435;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.artist-modal-social .social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-modal-social .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(82%) sepia(59%) saturate(287%) hue-rotate(15deg) brightness(97%) contrast(87%);
    transition: filter 0.3s ease;
}

.artist-modal-social .social-link:hover .social-icon img {
    filter: brightness(0) saturate(100%) invert(7%) sepia(6%) saturate(885%) hue-rotate(314deg) brightness(98%) contrast(87%);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive styles for beer details */
.beer-details-mobile {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-logo img {
        height: 450px;
    }

    .hero-content {
        padding-bottom: 180px;
    }

    .section-header h2 {
        font-size: 4rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }

    .location-image {
        order: -1;
    }

    .location-image img {
        height: 300px;
    }

    .location-map {
        margin-top: 2rem;
    }

    .location-map iframe {
        height: 300px;
    }

    .hero-event-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .artist-card {
        height: 200px;
    }

    .artist-card:nth-child(even),
    .beer-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .artist-overlay {
        padding: 1rem;
    }

    .artist-overlay h3 {
        font-size: 1.6rem;
    }

    .beer-card .artist-overlay h3 {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
    }

    .artist-genre {
        font-size: 0.8rem;
    }

    .brewery-content {
        gap: 2rem;
    }

    .unique-scattered {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .unique-image-container {
        height: 350px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .event-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-logo-wide {
        padding: 1.5rem 0.5rem;
    }

    .footer-logo-wide img {
        max-height: 80px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }

    /* Schedule Mobile */
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        overflow-x: visible;
        padding: 0;
    }

    .schedule-item {
        padding: 1.2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        min-width: unset;
    }

    .schedule-time {
        font-size: 1.1rem;
        font-weight: 600;
        color: #EAC435;
        flex-shrink: 0;
    }

    .schedule-event {
        font-size: 1rem;
        color: #E8E8E8 !important;
        font-weight: 500;
        text-align: right;
        flex-grow: 1;
        margin-left: 1rem;
    }

    /* Festival Exclusive Mobile Changes */
    .beer-showcase {
        display: grid;
        grid-template-columns: 30% 70%;
        gap: 1rem;
        align-items: start;
    }

    .beer-showcase .beer-image {
        text-align: center;
        padding-right: 0;
        margin-right: 0.5rem;
    }

    .beer-showcase .beer-info .beer-details {
        display: none;
    }

    .beer-details-mobile {
        display: block;
        margin-top: 1rem;
        width: 100%;
    }

    .beer-mockup {
        max-width: 80px;
        width: 80px;
        margin-left: auto;
        margin-right: auto;
    }

    .beer-info h4 {
        font-size: 1.3rem;
    }

    /* Artist Modal Mobile */
    .artist-modal-content {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        height: calc(100svh - 40px);
        max-height: calc(100svh - 40px);
        margin: 20px;
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    }

    .artist-modal-grid {
        grid-template-columns: 1fr;
        height: 100%;
        grid-template-rows: 40vh 1fr;
    }

    .artist-modal-image {
        height: 100%;
        max-height: none;
    }

    .artist-modal-info {
        padding: 2rem 1.5rem 4rem 1.5rem;
        height: 100%;
        overflow-y: auto;
        background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    }

    .modal-close {
        background: rgba(0, 0, 0, 0.8);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 1rem;
        right: calc(1rem + 10px);
        font-size: 1.8rem;
        z-index: 3000;
    }

    .modal-close:hover {
        background: rgba(0, 0, 0, 0.9);
    }


    .artist-modal-info h2 {
        font-size: 2.5rem;
    }

    .artist-modal-genre {
        font-size: 1rem;
    }

    .artist-modal-bio {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 30px;
    }

    .artist-modal-social .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* Mobile navigation buttons */
    .modal-nav {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        border-width: 2px;
        top: 40%;
    }

    .modal-nav-prev {
        left: 0px;
    }

    .modal-nav-next {
        right: 0px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero-logo img {
        height: 350px;
    }

    .hero-content {
        padding-bottom: 200px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

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

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

    .artist-card {
        height: 180px;
    }

    .artist-card:nth-child(even),
    .beer-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .artist-overlay {
        padding: 0.8rem;
    }

    .artist-overlay h3 {
        font-size: 1.4rem;
    }

    .beer-card .artist-overlay h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    .artist-genre {
        font-size: 0.7rem;
    }

    .beer-grid-container h3 {
        color: #EAC435 !important;
        font-size: 2rem !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }

    .beer-more p {
        color: #1a1a1a !important;
        background: #EAC435 !important;
        font-family: 'Bebas Neue', cursive !important;
        font-weight: 400 !important;
        font-size: 1rem !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        padding: 0.5rem 1rem !important;
        display: inline-block !important;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    }

    .beer-mockup {
        max-width: 100px;
    }

    .beer-info h4 {
        font-size: 1.2rem;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-event-info {
        padding: 1.5rem 0;
    }

    .hero-event-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-info-section h3 {
        font-size: 0.9rem;
    }

    .event-info-text {
        font-size: 0.85rem;
    }

    .info-value {
        font-size: 1.1rem;
    }

    .schedule-item {
        padding: 1rem;
    }

    .schedule-time {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .schedule-event {
        font-size: 0.9rem;
    }

    /* Artist Modal Mobile Small */
    .artist-modal-content {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        height: calc(100svh - 20px);
        max-height: calc(100svh - 20px);
        margin: 10px;
    }

    .artist-modal-grid {
        grid-template-rows: 40vh 1fr;
    }

    .artist-modal-info {
        padding: 1.5rem 1rem 4rem 1rem;
        height: 100%;
        background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    }

    .artist-modal-info h2 {
        font-size: 2rem;
    }

    .artist-modal-genre {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .artist-modal-bio {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 30px;
    }

    .artist-modal-social {
        gap: 0.5rem;
    }

    .artist-modal-social .social-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 100%, 5px 100%);
    }

    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        border-width: 2px;
        top: 40%;
    }

    .modal-nav-prev {
        left: 5px;
    }

    .modal-nav-next {
        right: 5px;
    }
}

/* Desktop layout (769px and up) */
@media (min-width: 769px) {
    .beer-showcase {
        display: grid;
        grid-template-columns: 1fr 3fr;
        gap: 3rem;
        align-items: center;
    }

    .beer-showcase .beer-image {
        text-align: center;
        padding-right: 0;
    }

    .beer-showcase .beer-info .beer-details {
        display: block;
        margin-top: 1.5rem;
        width: auto;
    }

    .beer-details-mobile {
        display: none;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    /* Disable BBB bottle hover interaction on mobile and tablet */
    .beer-image:hover .beer-mockup {
        transform: none;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .unique-scattered {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .unique-image-container {
        height: 350px;
    }

    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #4682B4;
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    .btn-primary {
        border-width: 3px;
    }

    .btn-secondary {
        border-width: 3px;
    }

    .nav {
        border-bottom-width: 3px;
    }

    .hero-event-info {
        border-top-width: 3px;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero-video,
    .modal {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        background: #f0f0f0;
        min-height: 50vh;
    }
}