:root {
    --primary-color: #1b5e20;       /* Dark green */
    --secondary-color: #388e3c;     /* Medium green */
    --accent-color: #ffd700;        /* Gold for accents */
    --dark-color: #0d1e12;          /* Very dark green/almost black */
    --light-color: #e8f5e9;         /* Light green tint */
    --text-light: #ffffff;          /* White text */
    --text-dark: #212121;           /* Dark text */
    --card-color: #fafafa;          /* Off-white for cards */
}

body {
    font-family: 'Oswald', sans-serif;
    color: var(--text-dark);
    background-color: var(--dark-color);
    background-image: url('../img/poker-bg.png');
    background-size: 300px;
    background-blend-mode: overlay;
}

/* Apply fonts to all text elements */
p, a, span, div, button, input, select, textarea, label, li, td, th {
    font-family: 'Oswald', sans-serif;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Oswald', serif !important;
    font-weight: 700;
}

/* Navigation */
.navbar {
    background-color: var(--dark-color);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(27, 94, 32, 0.9), rgba(13, 30, 18, 0.95)), url('../img/poker-table.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 10rem 0;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/cards-pattern.png');
    background-size: 200px;
    opacity: 0.05;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: var(--text-light);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
    padding: 0.75rem 2rem;
    font-weight: bold;
    transition: all 0.3s;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--dark-color);
    color: var(--text-light);
}

section:nth-child(even) {
    background-color: var(--light-color);
    color: var(--text-dark);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

/* Card Dividers */
.card-divider {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.card-symbol {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.heart {
    background-image: url('../img/heart.svg');
}

.club {
    background-image: url('../img/club.svg');
}

.diamond {
    background-image: url('../img/diamond.svg');
}

.spade {
    background-image: url('../img/spade.svg');
}

/* Team Section */
.team-member {
    background-color: var(--card-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 4px solid var(--secondary-color);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.team-info p {
    color: var(--text-dark);
    margin-bottom: 0;
    opacity: 0.7;
}

/* Download Section */
.download-option {
    background-color: var(--card-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid transparent;
}

.download-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.platform-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.download-option h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.download-option p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.btn-download {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.btn-download:hover {
    background-color: transparent;
    color: var(--primary-color);
}

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

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    margin: 0 5px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
