/**
 * Hangah Derneği Teması
 * https://www.hangah.org.tr TAM KOPYASI
 */

/* Reset ve Temel */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; color: #333; background: #fff; }

/* ========================================
   Hangah Duyuru Barı (Üst Yeşil Bar)
======================================== */
.hangah-announcement {
    background: #285D47;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}
.hangah-announcement a {
    color: #fff;
    text-decoration: none;
}

/* ========================================
   Hangah Header - YEŞİL ARKA PLAN
======================================== */
.hangah-header {
    background: #285D47 !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}
.hangah-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    max-width: 1280px;
    margin: 0 auto;
}
.hangah-menu-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    display: none; /* Desktop'ta gizli */
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}
.hangah-menu-btn:hover {
    background: rgba(255,255,255,0.25);
}
.hangah-logo img {
    height: 55px;
    width: auto;
}
.hangah-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}
.hangah-nav a {
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}
.hangah-nav a:hover {
    opacity: 0.8;
}
.hangah-header-btns {
    display: flex;
    gap: 12px;
}
.hangah-btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hangah-btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff !important;
}
.hangah-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.hangah-btn-primary {
    background: #E74C3C;
    border: 2px solid #E74C3C;
    color: #fff !important;
}
.hangah-btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* ========================================
   Hangah Slider - TAM YEŞİL ARKA PLAN
======================================== */
.hangah-slider {
    background: #285D47 !important;
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}
.hangah-slider-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.hangah-slider-content {
    flex: 1;
    color: #fff;
}
.hangah-slider-content h1 {
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
}
.hangah-slider-prices {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.hangah-price-box {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 18px 28px;
    text-align: center;
    min-width: 130px;
    color: #fff;
}
.hangah-price-box .label {
    font-size: 11px;
    opacity: 0.9;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
.hangah-price-box .price {
    font-size: 22px;
    font-weight: 700;
}
.hangah-slider-image {
    flex: 1;
    max-width: 600px;
}
.hangah-slider-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Slider Navigation */
.hangah-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hangah-slider-nav:hover {
    background: rgba(255,255,255,0.25);
}
.hangah-slider-nav.prev { left: 25px; }
.hangah-slider-nav.next { right: 25px; }

/* Slider Dots */
.hangah-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}
.hangah-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.hangah-slider-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ========================================
   Hangah Projelerimiz - YUVARLAK İKONLAR
======================================== */
.hangah-projects-section {
    padding: 60px 0;
    background: #fff;
}
.hangah-section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.hangah-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #285D47;
    margin: 18px auto 0;
}
.hangah-projects-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.hangah-project-item {
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    width: 100px;
}
.hangah-project-item:hover {
    transform: translateY(-8px);
}
.hangah-project-item:hover .hangah-project-icon {
    background: #285D47;
    border-color: #285D47;
}
.hangah-project-item:hover .hangah-project-icon i,
.hangah-project-item:hover .hangah-project-icon img {
    filter: brightness(0) invert(1);
}
.hangah-project-icon {
    width: 85px;
    height: 85px;
    border: 3px solid #285D47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: #fff;
    transition: all 0.3s;
}
.hangah-project-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s;
}
.hangah-project-icon i {
    font-size: 32px;
    color: #285D47;
    transition: all 0.3s;
}
.hangah-project-name {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    line-height: 1.3;
}

/* ========================================
   Hangah Kampanya Section
======================================== */
.hangah-campaign-section {
    padding: 70px 0;
    background: #f8f8f8;
}
.hangah-campaign-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hangah-campaign-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.hangah-campaign-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}
.hangah-campaign-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}
.hangah-campaign-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.hangah-stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.hangah-stat-box .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #285D47;
}
.hangah-stat-box .label {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* ========================================
   Hangah Butonlar
======================================== */
.hangah-btn-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #285D47;
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hangah-btn-green:hover {
    background: #1E4A38;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40,93,71,0.3);
}

/* ========================================
   Hangah Footer
======================================== */
.hangah-footer {
    background: #1E4A38;
    color: #fff;
    padding: 60px 0 0;
}
.hangah-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
}
.hangah-footer-logo img {
    height: 55px;
    margin-bottom: 20px;
}
.hangah-footer-text {
    opacity: 0.8;
    line-height: 1.8;
    font-size: 14px;
}
.hangah-footer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hangah-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hangah-footer-links li {
    margin-bottom: 12px;
}
.hangah-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
.hangah-footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}
.hangah-footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

.hangah-footer-bottom .copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hangah-footer-bottom .copyright-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* ========================================
   WhatsApp Button
======================================== */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ========================================
   Container
======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .hangah-menu-btn { display: flex; } /* Mobilde göster */
    .hangah-nav { display: none; }
    .hangah-header-btns .hangah-btn-outline { display: none; }
    .hangah-slider-inner { flex-direction: column; text-align: center; }
    .hangah-slider-content h1 { font-size: 2.5rem; }
    .hangah-slider-prices { justify-content: center; }
    .hangah-slider-image img { max-width: 100%; }
    .hangah-campaign-wrapper { grid-template-columns: 1fr; }
    .hangah-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hangah-announcement { font-size: 12px; padding: 10px 15px; }
    .hangah-header-inner { padding: 12px 20px; }
    .hangah-logo img { height: 45px; }
    .hangah-menu-btn { padding: 10px 18px; font-size: 13px; }
    .hangah-btn-primary { padding: 10px 18px; font-size: 12px; }
    .hangah-slider { padding: 30px 0 40px; min-height: auto; }
    .hangah-slider-inner { padding: 0 15px; gap: 25px; }
    .hangah-slider-content h1 { font-size: 1.8rem; margin-bottom: 20px; }
    .hangah-price-box { padding: 12px 16px; min-width: 90px; font-size: 11px; }
    .hangah-price-box .label { font-size: 10px; margin-bottom: 5px; }
    .hangah-price-box .price { font-size: 16px; }
    .hangah-slider-prices { gap: 10px; }
    .hangah-projects-grid { gap: 25px; }
    .hangah-project-icon { width: 70px; height: 70px; }
    .hangah-project-icon i { font-size: 26px; }
    .hangah-project-name { font-size: 10px; }
    .hangah-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .hangah-slider-nav { display: none; }
    .whatsapp-float { bottom: 80px; right: 20px; width: 55px; height: 55px; font-size: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hangah-announcement { font-size: 11px; padding: 8px 10px; }
    .hangah-header-inner { padding: 10px 15px; }
    .hangah-logo img { height: 40px; }
    .hangah-menu-btn { padding: 8px 15px; font-size: 12px; gap: 6px; }
    .hangah-btn-primary { padding: 8px 15px; font-size: 11px; }
    .hangah-slider { padding: 25px 0 30px; }
    .hangah-slider-inner { padding: 0 10px; gap: 20px; }
    .hangah-slider-content h1 { font-size: 1.5rem; line-height: 1.3; margin-bottom: 15px; }
    .hangah-price-box { padding: 10px 12px; min-width: 80px; }
    .hangah-price-box .label { font-size: 9px; }
    .hangah-price-box .price { font-size: 14px; }
    .hangah-slider-prices { gap: 8px; justify-content: center; }
}

/* ========================================
   Hero Slider
======================================== */
.hero-slider {
    position: relative;
    max-width: 1280px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.hero-slider .swiper {
    border-radius: 12px;
    overflow: hidden;
}

.hero-slider.hero-slider-fullwidth {
    max-width: 100%;
    padding: 0;
}

.hero-slider.hero-slider-fullwidth .swiper {
    border-radius: 0;
}

.hero-slide {
    height: 470px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide-default {
    background: linear-gradient(135deg, #f5e6d3 0%, #d4c5b0 100%);
}

.hero-content {
    max-width: 600px;
    color: #fff;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-price {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hero-price strong {
    font-size: 1.5rem;
}

/* Swiper Navigation */
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    color: #285D47;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover, .hero-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 768px) {
    .hero-slide {
        height: 500px;
    }
    .hero-slide::before {
        width: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-prev, .hero-next {
        display: none;
    }
}

/* ========================================
   Main Content Reset
======================================== */
.main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body {
    background: #fff !important;
}
