/* 
* VRC Benelux Website Stylesheet
* Created for vrcbenelux.com
* Optimized for mobile responsiveness and SEO
*/

:root {
    /* Primary color palette - Gaming theme */
    --primary-color: #ff4655; /* Valorant red */
    --secondary-color: #0f1923; /* Dark blue */
    --accent-color: #18e6ff; /* Cyan accent */
    --text-color: #f9f9f9;
    --dark-text: #333333;
    --light-bg: #f5f5f5;
    --dark-bg: #0f1923;
    --gray-bg: #1f2731;
    --gradient-bg: linear-gradient(135deg, var(--secondary-color) 0%, #1a2c3e 100%);

    /* Font variables */
    --title-font: 'Orbitron', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header h2 {
    font-family: var(--title-font);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header.light h2 {
    color: var(--text-color);
}

.section-divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

section {
    padding: 8rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #e43144;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(15, 25, 35, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu li {
    margin: 0 1.5rem;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.5rem;
    position: relative;
}

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

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

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

.register-btn a {
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    color: white !important;
}

.register-btn a:hover {
    background-color: #e43144;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.register-btn a:before {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 25, 35, 0.7), rgba(15, 25, 35, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--text-color);
    position: relative;
    padding: 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--title-font);
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--primary-color);
    display: block;
}

.hero-content h2 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

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

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

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.7rem;
    color: var(--dark-text);
}

.about-stats {
    display: flex;
    justify-content: space-between;
}

.stat-box {
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
    background: var(--gradient-bg);
    color: white;
    flex: 1;
    margin: 0 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--title-font);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tournament Section */
.tournament-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.tournament-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 350px;
    text-align: center;
    padding: 0 0 3rem 0;
}

.tournament-card:hover {
    transform: translateY(-10px);
}

.tournament-card.featured {
    box-shadow: 0 15px 40px rgba(255, 70, 85, 0.2);
    border: 2px solid var(--primary-color);
}

.tournament-season {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.tournament-season.spring {
    background: linear-gradient(to right, #43cea2, #185a9d);
}

.tournament-season.summer {
    background: linear-gradient(to right, #ff4e50, #f9d423);
}

.tournament-season.fall {
    background: linear-gradient(to right, #b24592, #f15f79);
}

.tournament-card h3 {
    margin: 2rem 0 1rem;
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.tournament-date {
    font-size: 1.4rem;
    color: #777;
    margin-bottom: 1rem;
}

.tournament-prize {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.tournament-card p {
    margin: 0 2rem 3rem;
    font-size: 1.5rem;
    color: #555;
}

/* Gaming Module Section */
#gaming-module {
    background-color: var(--light-bg);
    padding: 6rem 0;
}

.gaming-resources {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.resource-category h3 {
    font-family: var(--title-font);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.resource-links li {
    margin-bottom: 1.2rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
}

.resource-links a {
    font-size: 1.6rem;
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.resource-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Register Section */
#register {
    background: var(--gradient-bg);
    color: white;
}

.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.register-form {
    background-color: white;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.6rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 70, 85, 0.2);
}

.register-info h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.register-info ul {
    margin-bottom: 3rem;
}

.register-info li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.register-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.register-contact h3 {
    margin-top: 4rem;
    font-size: 2.2rem;
}

.register-contact p {
    font-size: 1.8rem;
}

.register-contact a {
    color: var(--accent-color);
}

.register-contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.footer-logo p {
    margin-top: 2rem;
    opacity: 0.8;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #bbb;
    transition: all 0.2s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
    opacity: 0.6;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        padding: 2rem 0;
        flex-direction: column;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .about-content,
    .gaming-resources,
    .register-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-box {
        margin: 0;
    }
    
    .tournament-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .tournament-card {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .register-form {
        padding: 3rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
