/**
 * HızlıBahis Main Stylesheet
 * Version: 1.0.1
 */

:root {
    --primary-dark: #0D1B2A;
    --primary-medium: #1B263B;
    --primary-light: #415A77;
    --accent: #FFD700;
    --accent-hover: #FFC107;
    --text-light: #ffffff;
    --text-medium: #e5e5e5;
    --text-dark: #0D1B2A;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

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

button {
    cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
}

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

/* Header */
.site-header {
    background-color: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    padding: 10px 0;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.desktop-nav {
    display: flex;
    margin: 0 20px;
}

.nav-link {
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    margin: 0 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.hero-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    color: white;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(13, 27, 42, 1) 0%, rgba(13, 27, 42, 0.7) 50%, rgba(13, 27, 42, 0.5) 100%);
    z-index: 1;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--primary-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    display: block;
}

.btn-cta {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Feature Grid */
.feature-grid {
    padding: 50px 0;
    background-color: var(--primary-dark);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background-color: var(--primary-medium);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, var(--primary-medium) 0%, rgba(27, 38, 59, 0) 100%);
}

.feature-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}

.feature-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Promotions Section */
.promotions-section {
    padding: 60px 0;
    background-color: var(--primary-medium);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--accent);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promotion-card {
    background-color: var(--primary-dark);
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.promotion-title {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.promotion-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

.bonus-terms {
    background-color: var(--primary-light);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.terms-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.terms-list {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-medium);
}

.terms-list li {
    margin-bottom: 5px;
}

/* Sports Betting Section */
.sports-section {
    padding: 60px 0;
    background-color: var(--primary-dark);
}

.sports-heading {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.sports-description {
    margin-bottom: 30px;
}

.sport-item {
    background-color: var(--primary-medium);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.sport-item-title {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.benefits-card {
    background-color: var(--primary-medium);
    padding: 25px;
    border-radius: 8px;
    height: 100%;
    box-shadow: var(--shadow);
}

.benefits-title {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.check-icon {
    color: var(--accent);
    margin-right: 10px;
    flex-shrink: 0;
}

/* Casino & Live Casino Sections */
.casino-section, .live-casino-section {
    padding: 60px 0;
}

.casino-section {
    background-color: var(--primary-dark);
}

.live-casino-section {
    background-color: var(--primary-medium);
}

.game-card {
    background-color: var(--primary-dark);
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-providers {
    background-color: var(--primary-medium);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.providers-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.providers-list {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-medium);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-heading {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-medium);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .logo-wrapper {
        margin-bottom: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .grid-container,
    .promotions-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .promotion-card, 
    .benefits-card, 
    .game-card {
        margin-bottom: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .grid-container,
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-banner {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .feature-grid,
    .promotions-section,
    .sports-section,
    .casino-section,
    .live-casino-section {
        padding: 40px 0;
    }
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--text-dark);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    z-index: 999;
    padding: 20px;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
}