/* wildtogethr.com - Mystical Western Gaming Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --desert-sand: #e8c49c;
    --mystic-purple: #6b2e8c;
    --thunder-gold: #ffd700;
    --dark-forest: #1a1a2e;
    --magic-violet: #9b59b6;
    --lightning-blue: #3498db;
    --witch-green: #27ae60;
    --text-light: #f4f4f4;
    --text-dark: #2c3e50;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--dark-forest) 0%, #0f0f1e 50%, var(--mystic-purple) 100%);
    min-height: 100vh;
    background-attachment: fixed;
}

/* Navbar - Floating Card Style */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--thunder-gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--thunder-gold);

    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(155, 89, 182, 0.3);
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--magic-violet);
    text-shadow: 0 0 20px var(--thunder-gold);
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.nav-links a:hover {
    background: linear-gradient(135deg, var(--mystic-purple), var(--magic-violet));
    border-color: var(--thunder-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--thunder-gold);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section - Split Design */
.hero {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Full-bleed: make hero span the full viewport width while keeping content centered */
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    /* Override global section constraints so hero can be full-bleed */
    max-width: none;
    margin: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.534) 0%,
        rgba(107, 46, 140, 0.507) 50%,
        rgba(26, 26, 46, 0.514) 100%
    );
    backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--thunder-gold), var(--magic-violet), var(--witch-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

.hero p {
    font-size: 1.3rem;
    color: var(--desert-sand);
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--thunder-gold), #ffed4e);
    color: var(--dark-forest);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 3px solid var(--thunder-gold);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, var(--magic-violet), var(--mystic-purple));
    color: var(--text-light);
}

/* Section Styles */
section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--thunder-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--desert-sand);
    margin-bottom: 3rem;
    font-style: italic;
}

/* About Section - Side by Side Cards */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    background: rgba(26, 26, 46, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--mystic-purple);
    box-shadow: 0 8px 30px rgba(107, 46, 140, 0.4);
}

.about-text h3 {
    color: var(--thunder-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-highlights {
    background: rgba(107, 46, 140, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--thunder-gold);
}

.about-highlights h4 {
    color: var(--thunder-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-highlights ul {
    list-style: none;
}

.about-highlights li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.about-highlights li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--thunder-gold);
    font-size: 1.2rem;
}

/* Features Grid - Hexagon Style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(107, 46, 140, 0.4));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) rotate(2deg);
    border-color: var(--thunder-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

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

.feature-card h3 {
    color: var(--thunder-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Games Section */
.games-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.game-wrapper {
    text-align: center;
}

.game-wrapper h3 {
    text-align: center;
    color: var(--thunder-gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.game-frame {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border: 3px solid var(--thunder-gold);
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    background: #000;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.game-frame:hover {
    border-color: var(--magic-violet);
    box-shadow: 0 15px 50px rgba(155, 89, 182, 0.5);
    transform: translateY(-3px);
}

/* Reviews Section - Carousel Style */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(107, 46, 140, 0.3);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--thunder-gold);
    position: relative;
    transition: all 0.3s ease;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--thunder-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.reviewer-name {
    color: var(--thunder-gold);
    font-weight: bold;
}

.reviewer-rating {
    color: var(--thunder-gold);
    margin-top: 0.5rem;
}

/* Footer - Multi-column Grid */
.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 3rem 2rem 1rem;
    border-top: 3px solid var(--thunder-gold);
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--thunder-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--thunder-gold);
    padding-left: 5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-disclaimer-card {
    background: linear-gradient(135deg, rgba(107, 46, 140, 0.4), rgba(26, 26, 46, 0.6));
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--thunder-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.footer-disclaimer-card h4 {
    color: var(--thunder-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-disclaimer-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--desert-sand);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    background: rgba(26, 26, 46, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--mystic-purple);
    box-shadow: 0 10px 40px rgba(107, 46, 140, 0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--thunder-gold);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--mystic-purple);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.6);
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--thunder-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--thunder-gold), #ffed4e);
    color: var(--dark-forest);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

/* Content Pages */
.content-section {
    max-width: 900px;
    margin: 2rem auto;
    background: rgba(26, 26, 46, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--mystic-purple);
}

.content-section h2 {
    color: var(--thunder-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-section h3 {
    color: var(--magic-violet);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-section p,
.content-section ul,
.content-section ol {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Disclaimer Popup */
.disclaimer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.disclaimer-popup.active {
    display: flex;
}

.disclaimer-content {
    background: linear-gradient(135deg, var(--dark-forest), var(--mystic-purple));
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    border: 3px solid var(--thunder-gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
    position: relative;
}

.disclaimer-content h2 {
    color: var(--thunder-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.disclaimer-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.disclaimer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.accept-btn,
.decline-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.accept-btn {
    background: linear-gradient(135deg, var(--thunder-gold), #ffed4e);
    color: var(--dark-forest);
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.decline-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.decline-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 2px solid var(--thunder-gold);
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .disclaimer-content {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}
