/*
Theme Name: BIG Game Night
Theme URI: https://www.byobgamenight.com
Author: BIG
Description: A modern, professional theme for BIG Game Night events
Version: 4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: big-game-night
*/

/* MODERN CORPORATE TEMPLATE CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --primary-white: #ffffff;
    --primary-red: #cc0000;
    --accent-gold: #d4af37;
    --gradient-dark: #1a1a1a;
    --gradient-light: #2d2d2d;
    --text-gray: #b0b0b0;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    padding: 1.5rem 3rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-white);
    letter-spacing: -2px;
}

.logo span {
    color: var(--primary-red);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--gradient-dark) 100%);
}

.hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-size: 1rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.hero-title span {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1.2rem 3rem;
    background: var(--primary-red);
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
}

.btn-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-white);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Video Section */
.video-section {
    padding: 6rem 3rem;
    background: var(--gradient-dark);
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.video-placeholder {
    text-align: center;
}

.video-placeholder .icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.video-placeholder p {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

/* Brand Section */
.brand-section {
    padding: 6rem 3rem;
    background: var(--primary-black);
}

.brand-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.brand-text h2 span {
    color: var(--primary-red);
}

.brand-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-image {
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 3rem;
    background: var(--gradient-dark);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    background: var(--gradient-light);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .content {
    transform: translateY(0);
}

.gallery-item h3 {
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.gallery-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Sponsors Section */
.sponsors-section {
    padding: 6rem 3rem;
    background: var(--primary-black);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-card {
    background: var(--gradient-light);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sponsor-card:hover {
    transform: translateY(-10px);
    background: var(--gradient-dark);
    border-color: var(--primary-red);
}

.sponsor-card h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sponsor-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 3rem;
    background: var(--gradient-dark);
}

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

.contact-form {
    background: var(--gradient-light);
    padding: 3rem;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--primary-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-full {
    grid-column: 1 / -1;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
}

/* Payment Section */
.payment-section {
    padding: 6rem 3rem;
    background: var(--primary-black);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-card {
    background: var(--gradient-light);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.payment-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.payment-card h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.payment-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.payment-card .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-white);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-card .btn:hover {
    background: var(--accent-gold);
    transform: scale(1.05);
}

/* Comments Section */
.comments-section {
    padding: 6rem 3rem;
    background: var(--gradient-dark);
}

.comments-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.comment-input-area {
    background: var(--gradient-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.comment-input-area textarea {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--primary-white);
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    margin-bottom: 1rem;
}

.comment-input-area textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comment-item {
    background: var(--gradient-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: 700;
    color: var(--accent-gold);
}

.comment-time {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.comment-body {
    color: var(--primary-white);
    line-height: 1.7;
}

/* Social Section */
.social-section {
    padding: 6rem 3rem;
    background: var(--primary-black);
}

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

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: var(--gradient-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--primary-white);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: block;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    background: var(--gradient-dark);
}

.social-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-card h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.social-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--primary-black);
    padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
}

.footer-social h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-links a {
    width: 45px;
    height: 45px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .brand-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-black);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .logo {
        font-size: 2rem;
    }
}