/* ============================================
   Bold & Vibrant Design - Wood River Bar & Grill
   Energetic, Dynamic, Sports Bar Aesthetic
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS Variables - Bold & Vibrant Colors
   ============================================ */
:root {
    /* Primary Brand Colors - BOLD! */
    --primary-orange: #ff6a00;
    --primary-pink: #ee0979;
    --electric-blue: #00d4ff;
    --bright-yellow: #ffd700;
    --neon-green: #39ff14;
    
    /* Gradients */
    --gradient-fire: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    --gradient-electric: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6a00 0%, #ffd700 100%);
    --gradient-neon: linear-gradient(135deg, #ee0979 0%, #ff6a00 50%, #ffd700 100%);
    
    /* Background Colors */
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --bg-card: #222222;
    --bg-card-hover: #2a2a2a;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #f0f0f0;
    --text-gray: #cccccc;
    
    /* Accent & Effects */
    --shadow-glow: 0 0 20px rgba(255, 106, 0, 0.5);
    --shadow-pink-glow: 0 0 20px rgba(238, 9, 121, 0.5);
    --shadow-blue-glow: 0 0 20px rgba(0, 212, 255, 0.5);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.8rem; }

/* ============================================
   Navigation - Bold Gradient
   ============================================ */
.navbar {
    background: var(--gradient-fire);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 30px;
    height: 4px;
    background: var(--text-white);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   Hero Section - Explosive Impact
   ============================================ */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%),
                url('../images/hero-1.jpg') center/cover;
    padding: 150px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-neon);
    opacity: 0.15;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(255, 106, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons - Vibrant with Glow Effects
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-fire);
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow), 0 12px 30px rgba(255, 106, 0, 0.6);
}

.btn-secondary {
    background: var(--gradient-electric);
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-glow), 0 12px 30px rgba(0, 212, 255, 0.6);
}

/* ============================================
   Section Headings
   ============================================ */
.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--bg-darker);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.about-text strong {
    color: var(--primary-orange);
    font-weight: 700;
}

/* ============================================
   Specials Section - Dynamic Cards
   ============================================ */
.specials-section {
    background: var(--bg-dark);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.special-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.special-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-fire);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.special-card:hover::before {
    opacity: 1;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.4);
}

.special-card h3 {
    color: var(--electric-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.special-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ============================================
   Events Section
   ============================================ */
.events-preview-section {
    background: var(--bg-darker);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-pink);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-fire);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.event-card:hover::before {
    opacity: 0.1;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-pink-glow);
}

.event-card > * {
    position: relative;
    z-index: 1;
}

.event-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bright-yellow);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.event-card h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.event-card p {
    color: var(--text-gray);
}

/* ============================================
   Hours & Location Section
   ============================================ */
.hours-section {
    background: var(--bg-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border-top: 5px solid var(--electric-blue);
}

.info-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.info-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.info-card a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    color: var(--primary-pink);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li span:first-child {
    font-weight: 600;
    color: var(--text-light);
}

.hours-list li span:last-child {
    color: var(--text-gray);
}

.hours-note {
    font-size: 0.9rem;
    color: var(--bright-yellow);
    margin-top: 1rem;
}

.text-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover {
    color: var(--primary-pink);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-fire);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--primary-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--electric-blue);
}

.footer-col a {
    color: var(--electric-blue);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%),
                url('../images/hero-1.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-fire);
    opacity: 0.2;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 4rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* ============================================
   Menu Page Styles
   ============================================ */
.menu-category-section {
    background: var(--bg-dark);
}

.menu-category-section.alt-bg {
    background: var(--bg-darker);
}

.menu-grid {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-pink);
    box-shadow: 0 5px 20px rgba(255, 106, 0, 0.3);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu-item h3 {
    color: var(--text-white);
    font-size: 1.3rem;
}

.menu-item .price {
    color: var(--bright-yellow);
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   Events Page Styles
   ============================================ */
.events-section {
    background: var(--bg-dark);
}

.events-section:nth-child(even) {
    background: var(--bg-darker);
}

.events-list {
    display: grid;
    gap: 2rem;
}

.event-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 2rem;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.event-item:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.event-date-large {
    background: var(--gradient-fire);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
}

.event-date-large .month {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
}

.event-date-large .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.event-date-large .weekday {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.event-details h3 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.event-type {
    color: var(--bright-yellow);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.event-location {
    color: var(--text-gray);
}

/* ============================================
   Gallery Page Styles
   ============================================ */
.gallery-page-section {
    background: var(--bg-dark);
}

.gallery-page-grid {
    display: grid;
    gap: 3rem;
}

.gallery-page-item {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-page-item:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.gallery-page-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.gallery-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-page-item:hover .gallery-page-image img {
    transform: scale(1.1);
}

.gallery-page-content {
    padding: 2rem;
}

.gallery-page-content h3 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.gallery-page-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--bg-darker);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-section {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-pink);
}

.hours-list-simple {
    list-style: none;
    color: var(--text-gray);
}

.hours-list-simple li {
    margin-bottom: 0.5rem;
}

.hours-list-simple strong {
    color: var(--text-light);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-links-contact a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-fire);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary-orange);
}

.map-container iframe {
    display: block;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--gradient-fire);
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .gallery-page-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .event-date-large {
        min-width: 100px;
    }
}
