@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Oswald:wght@500;600&display=swap');

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-color: #F7C042;
    --nav-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    font-size: 14px;
    font-weight: 300;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header & Navbar */
.site-header {
    background-color: var(--bg-color);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    scroll-snap-align: start;
}

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

.site-title {
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 2px;
}

.navbar {
    background-color: var(--nav-bg);
    padding: 15px 40px;
    border-bottom: 1px solid #333;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

/* Dropdown Menu Styling */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color);
    min-width: 240px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.8);
    z-index: 1000;
    border: 1px solid #333;
    padding: 10px 0;
    list-style: none;
    margin: 0;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    text-transform: none; /* Keep text normal case for dropdown */
    letter-spacing: normal;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--accent-color);
    background-color: #1a1a1a;
}

.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: capitalize;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
}

/* Layout Utilities */
.split-section {
    display: flex;
    min-height: 500px;
    width: 100%;
    scroll-snap-align: start;
}

.split-left, .split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left {
    background-color: var(--bg-color);
    padding: 60px 10%;
}

.split-right {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
}

.paragraph {
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000000;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: #dca733;
}

/* Specific Sections */
.services-banner {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--bg-color);
    scroll-snap-align: start;
}

.services-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
    flex-wrap: wrap;
}

.service-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

.services-banner .section-title {
    margin-bottom: 20px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
}

.form-control::placeholder {
    color: #cccccc;
}

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

.form-submit {
    text-align: right;
}

.btn-white {
    background-color: #ffffff;
    color: #000000;
}

.btn-white:hover {
    background-color: #e0e0e0;
}

/* Full Width Image Pages (About & What We Do) */
.full-width-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.full-width-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.full-width-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 20px;
    width: 100%;
}

.full-width-content .paragraph {
    font-size: 16px;
}

/* Tournaments Page */
.tournaments-container {
    height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.oops-text {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Contact Details */
.contact-details {
    margin-top: 40px;
}

.contact-details p {
    margin-bottom: 20px;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #333;
    scroll-snap-align: end;
}

.footer .social-icons {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 12px;
}
