/* ============================================
   SosyalSport - Görsel Tasarıma Birebir Uygun
   ============================================ */

:root {
    --dark-blue: #0f172a;
    --darker-blue: #020617;
    --anthracite: #1e293b;
    --medium-gray: #334155;
    --light-gray: #64748b;
    --green: #22c55e;
    --green-hover: #16a34a;
    --light-green: #4ade80;
    --white: #ffffff;
    --text-light: #e2e8f0;
    --text-dark: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    background-color: var(--darker-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Header ve Navigasyon
   ============================================ */

.navbar {
    background-color: var(--dark-blue) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar-brand .logo-icon {
    width: 32px;
    height: 32px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.navbar-brand:hover {
    color: var(--light-green) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--green) !important;
    background-color: rgba(34, 197, 94, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--green) !important;
}

.login-btn {
    background-color: var(--green);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.navbar-toggler {
    border-color: var(--white);
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 65vh;
    background-image: url("../img/sportshero1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}



.hero-title .highlight {
    color: var(--green);
    display: block;
}

.hero-title .highlight0 {
  
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 750px;
    line-height: 1.8;
}

/* ============================================
   Filtreleme Formu
   ============================================ */

.filter-card {
    background-color: var(--anthracite);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-form-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.filter-form-left {
    flex: 1;
	width: 100%;
}

.filter-form-right {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    min-width: 160px;
	margin-top: 35px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    position: relative;
}

.filter-group label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.filter-group label i {
    margin-right: 0.5rem;
    color: var(--green);
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    appearance: none;
}

.filter-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.filter-group input::placeholder {
    color: var(--text-dark);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    background-color: var(--medium-gray);
}

.match-count {
    color: var(--text-dark);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.match-count strong {
    color: var(--green);
}

.btn-reset {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-reset:hover {
    background-color: var(--medium-gray);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.search-btn {
    background: linear-gradient(135deg, var(--green) 0%, var(--light-green) 100%);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}
/* Modern Filtre Kartı Ana Kutusu */
.filter-card-modern {
    background-color: #1e293b; /* Antrasit arka plan */
    padding: 25px 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* İçerikleri yan yana dizen taşıyıcı */
.filter-container {
    display: row;
    flex-direction: row;
    align-items: flex-end; /* Etiketleri yukarıda, kutuları altta hizalar */
    gap: 20px;
    width: 100%;
}

/* Her bir grup (Label + Input) */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
	margin-bottom:0px;
    flex: 0 0 200px; /* Şehir ve İlçe için sabit genişlik */
}

/* Saha adı inputu için esneklik (Kalan boşluğu doldurur) */
.filter-group.flex-grow {
    flex: 1; 
}

/* Etiketlerin (Label) stili */
.filter-group label {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Giriş alanlarının (Select & Input) stili */
.filter-group select, 
.filter-group input {
    background-color: #0f172a; /* Çok koyu lacivert/siyah */
    border: 1px solid #334155;
    color: #f8fafc;
    height: 50px;
    padding: 0 15px;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-group select:focus, 
.filter-group input:focus {
    border-color: #22c55e; /* Odaklanınca yeşil çerçeve */
}

/* Arama Butonu */
.btn-search-modern {
    background-color: #22c55e;
    color: #ffffff;
    border: none;
    height: 50px;
    padding: 0 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-search-modern:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

/* Tablet ve Mobil Uyumluluk */
@media (max-width: 992px) {
    .mobile-tesis{
		margin-bottom:25px;
	}
	.filter-container {
        flex-wrap: wrap; /* Mobilde sığmazsa aşağı kayar */
    }
    .filter-group {
        flex: 1 1 calc(50% - 20px); /* Tablette 2'li dizilim */
    }
    .filter-group.flex-grow, .button-group {
        flex: 1 1 100%; /* Mobilde tam genişlik */
    }
}
.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, var(--light-green) 0%, var(--green) 100%);
}

.feature-tags {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-tag::before {
    content: '●';
    font-size: 0.6rem;
    color: var(--green);
}

/* ============================================
   Video Modal
   ============================================ */

.modal-content {
    background-color: var(--anthracite);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.modal-header {
    background-color: var(--dark-blue);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.modal-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-body {
    padding: 0.5rem;
    background-color: var(--anthracite);
}
@media (min-width: 940px) {
	
	.modal-body {
		padding: 1.5rem;
	}
	.modal-header {
		padding: 1.5rem;
	}
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--dark-blue);
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.social-share {
    display: flex;
    gap: 1rem;
    justify-content: right;
    flex-wrap: wrap;
	margin-top:15px;
}
@media (max-width: 992px) {
	.social-share {
		gap: 15px;
	}
	#mainDownloadBtn{
		width:100%;
	}
	#btnSwitchCam{
		width:100%;
	}
}
.share-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--white);
    text-decoration: none;
}

.share-btn.whatsapp { background-color: #25D366; }
.share-btn.twitter { background-color: #000000; }
.share-btn.twitter { background-color: #000000; }
.share-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.share-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.share-btn.telegram {
    background-color: #0088cc;
    color: white;
}
.no-video-alert {
    padding: 2rem;
    background-color: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    text-align: center;
    color: #fbbf24;
    font-weight: 600;
}

/* ============================================
   Ayın En İyi Golleri
   ============================================ */

.best-goals-section {
    padding: 4rem 0;
    background-color: var(--dark-blue);
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-header-left {
    flex: 1;
}

.section-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
}

.section-subtitle {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.date-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.current-month-display {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    min-width: 150px;
    text-align: center;
}

.date-nav-btn {
    background-color: var(--anthracite);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-nav-btn:hover {
    background-color: var(--green);
    border-color: var(--green);
    transform: scale(1.1);
}

.goals-gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--green) var(--anthracite);
}

.goals-gallery::-webkit-scrollbar {
    height: 8px;
}

.goals-gallery::-webkit-scrollbar-track {
    background: var(--anthracite);
    border-radius: 4px;
}

.goals-gallery::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 4px;
}

/* Mevcut .best-goals-gallery stilini şu şekilde güncelleyin */
.best-goals-gallery {
    display: flex;
    gap: 20px; /* Kartlar arasındaki boşluk */
    overflow-x: hidden; /* Dışarı taşmayı engeller */
    width: 100%; /* Konteyner tam genişlik */
    justify-content: space-between; /* Kartları eşit dağıtır */
}

/* Mevcut .goal-card stilini şu şekilde güncelleyin */
.goal-card {
    /* flex: 0 0 350px;  <-- Bu satırı SİLYORUZ */
    flex: 1; /* Kartların eşit genişlikte yayılmasını sağlar */
    min-width: 0; /* Flexbox kırılmalarını önler */
    background-color: var(--anthracite);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
    border-color: var(--green);
}
.text-emerald-500{
	--tw-text-opacity: 1;
	color:rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.goal-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background-color: var(--dark-blue);
}

.goal-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.goal-card:hover .goal-thumbnail img {
    transform: scale(1.1);
}

.top-goal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.goal-card:hover .play-overlay {
    opacity: 1;
}

.play-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green);
    transition: all 0.3s ease;
}

.goal-card:hover .play-icon-circle {
    background-color: var(--green);
    color: var(--white);
    transform: scale(1.1);
}

.goal-info {
    padding: 1.5rem;
}

.goal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.goal-player {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.player-name {
    color: var(--text-light);
    font-weight: 600;
}

.team-name {
    color: var(--green);
    font-weight: 600;
}

.goal-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.stat-item i {
    color: var(--green);
}

.goal-date {
    color: var(--text-dark);
    font-size: 0.85rem;
}

/* ============================================
   Halı Saha Kartları
   ============================================ */

.pitches-section {
    padding: 4rem 0;
    background-color: var(--darker-blue);
    position: relative;
}

.pitches-section .section-title {
    margin-bottom: 0.5rem;
}

.pitches-section .section-subtitle {
    margin-bottom: 2rem;
}

.pitch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pitch-card {
    background-color: var(--anthracite);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pitch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
    border-color: var(--green);
}

.pitch-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
	object-position: top;
    transition: transform 0.3s ease;
}

.pitch-card:hover .pitch-image {
    transform: scale(1.05);
}

.pitch-info {
    padding: 1.5rem;
}

.pitch-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pitch-location {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pitch-address,
.pitch-phone {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pitch-phone {
    color: var(--green);
}

.pitch-sizes {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.size-badge {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pitch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.feature-item i {
    color: var(--green);
}

.btn-reservation {
    width: 100%;
    background: linear-gradient(135deg, var(--green) 0%, var(--light-green) 100%);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.view-all-btn {
    display: block;
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    background: linear-gradient(135deg, var(--green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}
.navbar-brand .logo-icon img{
	width:100%;
}
.footer-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.copyright {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--green);
    transform: translateX(5px);
}
/* İkonların dış kapsayıcısı (Yan yana dizilimi sağlar) */
.social-icons {
    display: flex !important; /* Alt alta gelmeyi engeller, yan yana dizer */
    flex-direction: row !important; /* Yatay dizilimi garanti eder */
    gap: 12px;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start; /* Sola hizalı başlar */
}

/* İkonun normal hali */
.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--anthracite);
    border-radius: 50%;
    color: var(--white) !important; /* İkon rengini beyaza zorla */
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Üzerine gelince (Hover) durumu */
.social-icon:hover {
    background-color: var(--green) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3); /* Hafif yeşil ışıltı */
}

/* Hover anında içindeki ikonun rengini garantiye alalım */
.social-icon:hover i {
    color: var(--white) !important;
    display: block !important;
}
.contact-info {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-info h4 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: right;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.powered-by {
    color: var(--text-dark);
    font-size: 0.85rem;
}

/* ============================================
   Responsive
   ============================================ */

@media (min-width: 1200px) {
   
	.search-btn {
		margin-top:-23px;
    }
}
@media (max-width: 1200px) {
    .filter-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-form-container {
        flex-direction: column;
    }
    
    .filter-form-right {
        flex-direction: row;
        min-width: auto;
        width: 100%;
    }
    
    .btn-reset,
    .search-btn {
        flex: 1;
    } 
	.search-btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .filter-form-right{
		margin-top:0;
	}
    .filter-row{
		margin-bottom:0;
	}
    .hero-description {
        font-size: 1.1rem;
    }
    
    .filter-card {
        padding: 1.5rem;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .pitch-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .goal-card {
        flex: 0 0 320px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .filter-card {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .goal-card {
        flex: 0 0 280px;
    }
}

/* ============================================
   Animasyonlar
   ============================================ */

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Trim Page Styles */
body.video-trim-page {
  background: linear-gradient(180deg, #d4f1e8 0%, #e8f8f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-trim-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  margin-top:15px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Trim Header */
.trim-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.header-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #f0fdf9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content h1 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.header-content p {
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
}

/* Current Time Section */
.current-time-section {
  background: #f8fafb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.time-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 8px;
}

.time-display {
  font-size: 32px;
  font-weight: 700;
  color: #00d4aa;
  font-family: 'Courier New', monospace;
}

/* Trim Controls Section */
.trim-controls-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.control-card {
  background: #f8fafb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 8px;
}

.time-input {
  width: 100%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  font-family: 'Courier New', monospace;
  text-align: center;
  transition: all 0.2s ease;
  outline: none;
}

.time-input:focus {
  border-color: #00d4aa;
  background: #f0fdf9;
}

.time-input::placeholder {
  color: #cbd5e1;
}

/* Duration Section */
.duration-section {
  background: #f8fafb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.duration-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 8px;
}

.duration-display {
  font-size: 28px;
  font-weight: 700;
  color: #22c55e;
  font-family: 'Courier New', monospace;
}

/* Create Clip Button */
.create-clip-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #22c55e;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.create-clip-btn:hover {
  background: #22c55e;
}

.create-clip-btn:active {
  transform: scale(0.98);
}

.create-clip-btn svg {
  flex-shrink: 0;
}

/* Video Trim Page Responsive */
@media (max-width: 520px) {
  .video-trim-container {
    padding: 20px;
  }

  .header-content h1 {
    font-size: 16px;
  }

  .header-content p {
    font-size: 12px;
  }

  .time-display {
    font-size: 28px;
  }

  .trim-controls-section {
    grid-template-columns: 1fr;
  }

  .time-input {
    font-size: 20px;
    padding: 10px 12px;
  }

  .duration-display {
    font-size: 24px;
  }

  .create-clip-btn {
    font-size: 14px;
    padding: 14px;
  }
}

@media (max-width: 380px) {
  .video-trim-container {
    padding: 16px;
  }

  .header-icon {
    width: 40px;
    height: 40px;
  }

  .header-icon svg {
    width: 24px;
    height: 24px;
  }

  .time-display {
    font-size: 24px;
  }

  .time-input {
    font-size: 18px;
    padding: 10px;
  }

  .duration-display {
    font-size: 20px;
  }
}
/* LOGIN MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.login-modal {
    background: #1e293b;
    width: 380px;
    border-radius: 18px;
    padding: 28px;
    color: #fff;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #94a3b8;
    cursor: pointer;
}

.login-modal h2 {
    margin-bottom: 6px;
    font-size: 26px;
}

.subtitle {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.social-buttons .btnLogin {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google { background: #fff; color: #111; }
.facebook { background: #1877f2; color: #fff; }
.instagram {
    background: linear-gradient(90deg,#a855f7,#f97316);
    color: #fff;
}
.twitter { background: #1da1f2; color: #fff; }

.divider {
    text-align: center;
    margin: 18px 0;
    position: relative;
}

.divider span {
    background: #1e293b;
    padding: 0 12px;
    color: #94a3b8;
}

.divider::before {
    content: "";
    position: absolute;
    inset: 50% 0 auto 0;
    height: 1px;
    background: #334155;
    z-index: -1;
}

.login-modal label {
    font-size: 13px;
    color: #cbd5f5;
    margin-bottom: 4px;
    display: block;
}

.login-modal input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: #0f172a;
    color: #fff;
    margin-bottom: 14px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 18px;
}

.forgot {
    color: #22c55e;
    text-decoration: none;
}

.login-btn2 {
    width: 100%;
    padding: 14px;
    background: #22c55e;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.register {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
}

.register a {
    color: #22c55e;
    text-decoration: none;
}
/* Notify Konteynırı */
#notify-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000000;
}

/* Hata Bildirimi */
.notify-error {
    background-color: #ff4d4d;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.notify-exit {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}




/* Beğeni Butonu */
.btn-like {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}
.btn-like.active {
    color: #ef4444;
    transform: scale(1.2);
}
.btn-like:hover {
    color: #f87171;
}

/* Yorumlar Alanı */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comment-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 10px;
}
.comment-text {
    font-size: 13px;
    color: #e2e8f0;
}
.comment-user {
    font-weight: 700;
    color: #22c55e;
    margin-right: 6px;
}
.comment-delete {
    color: #64748b;
    cursor: pointer;
    transition: 0.2s;
}
.comment-delete:hover {
    color: #ef4444;
}

/* Scrollbar Özelleştirme */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }

#notify-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999999;
}

.notify-item {
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out;
}

/* Başarı (İndirme) Mesajı */
.notify-success {
    background-color: #2ecc71; /* Yeşil */
    border-left: 5px solid #2ecc71;
}

/* Hata Mesajı */
.notify-error {
    background-color: #e74c3c; /* Kırmızı */
    border-left: 5px solid #c0392b;
}

.notify-exit {
    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}