/* =====================
   GENEL AYARLAR
===================== */
:root {
    --primary-color: #D59B2D;
    --secondary-color: #FFFFFF;
    --dark-color: #333333;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background: #31231E;
}

body.home-page {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    background: #000000;
}

/* =====================
   HEADER TOP BAR
===================== */
.header-top {
    background: #000000;
    color: var(--secondary-color);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

body.home-page .header-top {
    background: #000000;
    backdrop-filter: blur(10px);
}

.header-contact span {
    color: var(--secondary-color);
}

.header-contact i {
    color: var(--primary-color);
}

.language-switcher a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 5px 10px;
    margin-left: 5px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: all 0.3s;
}

.language-switcher a:hover,
.language-switcher a.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* =====================
   MAIN HEADER
===================== */
.main-header {
    background: #1a1410;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .navbar-nav .nav-link {
    color: var(--secondary-color);
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

body.home-page .main-header {
    background: transparent;
    box-shadow: none;
    position: absolute;
    width: 100%;
    top: 44px;
}

body.home-page .navbar-nav .nav-link {
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

body.home-page .navbar-nav .nav-link:hover,
body.home-page .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

body.home-page .btn-donate {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(213, 155, 45, 0.4);
}

.main-header .navbar {
    padding: 15px 0;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--primary-color);
}

.btn-donate {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

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

/* =====================
   SLIDER
===================== */
.slider-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    background: #000000;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    color: var(--secondary-color);
    width: 40%;
    max-width: 600px;
}

.slider-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slider-content .btn-slider {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.slider-content .btn-slider:hover {
    background: transparent;
    border-color: var(--secondary-color);
}

/* =====================
   BAĞIŞ FORMU
===================== */
.donate-form-section {
    position: fixed;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 3;
    width: 45%;
    max-width: 600px;
}

.donate-form-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.donate-form-card h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.form-control,
.form-select {
    padding: 12px 20px;
    border: 2px solid rgba(213, 155, 45, 0.3);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s;
    background: rgba(26, 20, 16, 0.8);
    color: var(--secondary-color);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(213, 155, 45, 0.25);
    background: rgba(26, 20, 16, 0.9);
    color: var(--secondary-color);
}

.form-select option {
    background: #1a1410;
    color: var(--secondary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background: #c28a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 155, 45, 0.3);
}

/* Form Label */
.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* Hızlı Miktar Butonları */
.quick-amount-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-quick-amount {
    flex: 1;
    padding: 12px 20px;
    background: rgba(213, 155, 45, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-quick-amount:hover,
.btn-quick-amount.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 155, 45, 0.3);
}

/* Güvenlik Sorusu */
.security-question {
    background: rgba(26, 20, 16, 0.6);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(213, 155, 45, 0.3);
}

.question-text {
    display: block;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.security-question .form-control {
    margin-bottom: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

/* Checkbox */
.form-check {
    background: rgba(26, 20, 16, 0.6);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(213, 155, 45, 0.3);
}

.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    background: rgba(26, 20, 16, 0.8);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: #d0d0d0;
    margin-left: 10px;
    cursor: pointer;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Ödeme Logoları */
.payment-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.payment-logos i {
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.8;
    transition: all 0.3s;
}

.payment-logos i:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* =====================
   SAYFA İÇERİK
===================== */
.page-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: #31231E;
}

.page-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.content-card {
    background: rgba(26, 20, 16, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    border: 1px solid rgba(213, 155, 45, 0.2);
    color: #e0e0e0;
}

.content-card h3,
.content-card h4 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-card h3:first-child,
.content-card h4:first-child {
    margin-top: 0;
}

.content-card p {
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.content-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.content-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.content-card ul {
    color: #d0d0d0;
}

.content-card strong {
    color: var(--primary-color);
}

/* =====================
   HESAP NUMARALARI
===================== */
.account-card {
    background: linear-gradient(135deg, #D59B2D 0%, #a67b1f 100%);
    color: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(213, 155, 45, 0.3);
}

.account-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.account-card h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.iban-box {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.iban-number {
    font-family: monospace;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.btn-copy {
    background: rgba(255,255,255,0.9);
    color: #31231E;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-copy:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* =====================
   İLETİŞİM
===================== */
.contact-info {
    background: rgba(26, 20, 16, 0.6);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(213, 155, 45, 0.2);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #d0d0d0;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
}

.contact-info-item a {
    color: #d0d0d0;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
    border: 2px solid rgba(213, 155, 45, 0.3);
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* =====================
   BAĞIŞ SAYFA
===================== */
.donate-option {
    background: rgba(26, 20, 16, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid rgba(213, 155, 45, 0.2);
}

.donate-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(213, 155, 45, 0.4);
}

.donate-option i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.donate-option h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.donate-option p {
    color: #d0d0d0;
    margin-bottom: 20px;
}

.btn-donate-option {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-donate-option:hover {
    background: #c28a1f;
    color: var(--secondary-color);
}

/* =====================
   SUCCESS PAGE
===================== */
.success-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #31231E;
}

.success-icon {
    font-size: 100px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(213, 155, 45, 0.5);
}

.success-section h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-section p {
    color: #d0d0d0;
}

/* =====================
   FOOTER
===================== */
.footer-second {
    background: #000000;
    color: var(--secondary-color);
    padding: 0;
    font-size: 12px;
}

.copyright-wrap {
    padding: 8px 0;
}

.pos-rel {
    position: relative;
}

.copyright-text {
    color: var(--secondary-color);
    font-size: 12px;
}

.copyright-links {
    font-size: 12px;
}

.copyright-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.copyright-links a:hover {
    color: var(--primary-color);
}

.ixir-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.ixir-link:hover {
    color: var(--secondary-color);
}

body.home-page .footer-second {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1001;
    background: #000000;
}

body.home-page .copyright-wrap {
    padding: 8px 0;
}


/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1200px) {
    .slider-content {
        width: 45%;
    }
    
    .donate-form-section {
        width: 48%;
    }
}

@media (max-width: 992px) {
    .slider-content {
        width: 90%;
        left: 5%;
        text-align: center;
    }
    
    .donate-form-section {
        position: fixed;
        bottom: 100px;
        top: auto;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .slider-content h2 {
        font-size: 32px;
    }
    
    .slider-content {
        width: 90%;
        left: 5%;
    }
    
    .donate-form-card {
        padding: 25px;
    }
    
    .donate-form-section {
        bottom: 80px;
        width: 90%;
    }
    
    .header-contact span {
        font-size: 12px;
    }
    
    .logo {
        width: 70px;
        height: 70px;
    }
    
    .page-section {
        padding: 40px 0;
    }
    
    .content-card {
        padding: 25px;
    }
    
    .iban-number {
        font-size: 14px;
    }
    
    .copyright-links a {
        display: inline;
        font-size: 11px;
    }
    
    .copyright-text {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    body.home-page .footer-second {
        font-size: 10px;
    }
    
    body.home-page .copyright-wrap {
        padding: 5px 0;
    }
}

@media (max-width: 576px) {
    .slider-content h2 {
        font-size: 22px;
    }
    
    .slider-content {
        width: 90%;
        left: 5%;
    }
    
    .btn-slider {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .donate-form-section {
        bottom: 70px;
        width: 90%;
    }
    
    .donate-form-card {
        padding: 20px;
    }
    
    .donate-form-card h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .quick-amount-buttons {
        flex-direction: column;
    }
    
    .btn-quick-amount {
        font-size: 16px;
    }
    
    .payment-logos i {
        font-size: 40px;
    }
    
    .question-text {
        font-size: 18px;
    }
}

