/* Custom CSS for CanchaChilena */
:root {
    --primary-color: #363942;
    --secondary-color: #706c7d;
    --success-color: #193487;
    --light-color: #f8f9fa;
    --dark-color: #222129;
    --white-75: rgba(255, 255, 255, 0.75);
    --white-50: rgba(255, 255, 255, 0.5);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 76px; /* Отступ для fixed navbar */
}

html {
    scroll-behavior: smooth;
}

.text-white-75 {
    color: var(--white-75) !important;
}

.text-white-50 {
    color: var(--white-50) !important;
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #193487 !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}
/* Footer */
.footer-section {
    background: linear-gradient(135deg, #2c3650 0%, #344c5e 100%);
}

.footer-section a:hover {
    color: var(--warning-color) !important;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content p {
    font-size: 0.9rem;
}

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} 

/* new styles  */
:root {
    --primary-color: #363942;
    --secondary-color: #706c7d;
    --success-color: #193487;
    --light-color: #f8f9fa;
    --dark-color: #222129;
    --white-75: rgba(255, 255, 255, 0.75);
    --white-50: rgba(255, 255, 255, 0.5);
}

/* Загальні стилі */
body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    background-color: #ffffff;
}

/* Стилі для головного екрану */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(25, 52, 135, 0.7) 0%, rgba(34, 33, 41, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.hero-title {
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--success-color);
}

.hero-subtitle {
    font-weight: 600;
    color: var(--white-75);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hero-description {
    color: var(--white-75);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Медіа-запити для адаптивності */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}
/* Стилі для блоків контенту */
.section-title {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    display: inline-block;
}

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

.card-custom {
    border: none;
    transition: transform 0.2s;
    height: 100%;
}

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

.card-custom .card-body {
    padding: 1.5rem;
}

.card-custom .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.card-custom .card-text {
    color: var(--secondary-color);
}

.news-item {
    padding: 1.5rem;
    border-left: 3px solid var(--success-color);
    background-color: var(--light-color);
    margin-bottom: 1rem;
}

.news-date {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.news-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--light-color);
}

.stat-icon {
    margin-right: 1rem;
    color: var(--success-color);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-text {
    color: var(--secondary-color);
}

.match-fact {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    background-color: var(--light-color);
    padding: 0.35rem 0.75rem;
}