/* ============================================================
   CANIM CİĞERİM – MEHMET USTA  |  style.css
   Sade, koyu tema — kozdekanat.com ilhamıyla
   ============================================================ */

:root {
    --green:      #2a7041;
    --green-d:    #1c5230;
    --green-xd:   #0e2b1a;
    --gold:       #e8950a;
    --gold-l:     #f5a72a;
    --bg:         #0f1f14;   /* koyu yeşil zemin */
    --surface:    rgba(255,255,255,.05);
    --border:     rgba(255,255,255,.1);
    --white:      #ffffff;
    --insta:      linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    --text:       rgba(255,255,255,.9);
    --text-soft:  rgba(255,255,255,.6);
    --text-muted: rgba(255,255,255,.35);
    --font:       'Outfit', sans-serif;
    --radius:     16px;
    --t:          .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Glow arka plan efektleri ── */
.bg-glows {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .35;
}
.glow-1 {
    width: 600px; height: 600px;
    background: var(--green);
    top: -180px; left: -150px;
}
.glow-2 {
    width: 500px; height: 500px;
    background: var(--gold);
    bottom: -120px; right: -100px;
    opacity: .18;
}

/* ── Container ── */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ── Butonlar ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--t);
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.btn-gold:hover {
    background: #c47c08;
    border-color: #c47c08;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232,149,10,.4);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.7);
    transform: translateY(-2px);
}

/* ============================================================
   KAMPANYA KARTI
   ============================================================ */
.campaign-section {
    position: relative;
    z-index: 1;
    padding: 0 0 0;
}

.campaign-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, rgba(225,48,108,.12), rgba(188,24,136,.08));
    border: 1px solid rgba(225,48,108,.3);
    border-radius: var(--radius);
    padding: 24px 28px;
    cursor: pointer;
    transition: all var(--t);
    text-decoration: none;
    color: inherit;
}
.campaign-card:hover {
    background: linear-gradient(135deg, rgba(225,48,108,.2), rgba(188,24,136,.14));
    border-color: rgba(225,48,108,.55);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(225,48,108,.15);
}

.campaign-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.campaign-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--insta);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.campaign-icon svg { width: 100%; height: 100%; color: #fff; }

.campaign-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #e1306c;
    margin-bottom: 4px;
}

.campaign-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.campaign-text p {
    font-size: .83rem;
    color: var(--text-soft);
}

.campaign-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--t), color var(--t);
}
.campaign-arrow svg { width: 22px; height: 22px; }
.campaign-card:hover .campaign-arrow { transform: translateX(4px); color: #e1306c; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 620px;
    width: 100%;
}

.hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: 28px;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,.5));
    animation: fadeDown .7s ease both;
}

.hero-tag {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
    animation: fadeUp .7s .1s ease both;
}

.hero-sub {
    font-size: clamp(.9rem, 2.5vw, 1rem);
    color: var(--text-soft);
    margin-bottom: 36px;
    font-weight: 300;
    animation: fadeUp .7s .2s ease both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 44px;
    animation: fadeUp .7s .3s ease both;
}

/* Rozetler */
.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp .7s .42s ease both;
}
.badge {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--text-soft);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ============================================================
   BİLGİ KARTLARI
   ============================================================ */
.info-section {
    position: relative;
    z-index: 1;
    padding: 72px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--t);
    cursor: pointer;
}
.info-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.22);
    transform: translateY(-3px);
}

.info-icon { font-size: 1.8rem; flex-shrink: 0; }

.info-text h3 {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}
.info-text p {
    font-size: .88rem;
    color: var(--text-soft);
    line-height: 1.55;
}

/* ============================================================
   SOSYAL MEDYA
   ============================================================ */
.social-section {
    position: relative;
    z-index: 1;
    padding: 0 0 80px;
    text-align: center;
}

.social-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 11px 22px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-soft);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--t);
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.social-btn:hover {
    color: var(--white);
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}

#social-instagram:hover { border-color: #e1306c; color: #e1306c; background: rgba(225,48,108,.08); }
#social-facebook:hover  { border-color: #1877f2; color: #1877f2; background: rgba(24,119,242,.08); }
#social-tiktok:hover    { border-color: #69c9d0; color: #69c9d0; background: rgba(105,201,208,.08); }

/* ============================================================
   HAKKIMIZDA
   ============================================================ */
.about-section {
    position: relative;
    z-index: 1;
    padding: 0 0 80px;
}

.about-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 44px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

.about-inner h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.about-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 99px;
    margin: 0 auto 24px;
}

.about-inner p {
    font-size: .975rem;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 14px;
}
.about-inner p:last-child { margin-bottom: 0; }

/* ============================================================
   HARİTA
   ============================================================ */
.map-section {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}
.map-section iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    filter: grayscale(30%) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,.35);
    border-top: 1px solid var(--border);
    padding: 48px 24px 36px;
    text-align: center;
}

.footer-logo {
    height: 52px;
    width: auto;
    margin: 0 auto 16px;
    filter: brightness(0) invert(1);
    opacity: .7;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 22px;
    margin-bottom: 20px;
}
.footer-links a {
    font-size: .85rem;
    color: var(--text-muted);
    transition: color var(--t);
}
.footer-links a:hover { color: var(--gold-l); }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.footer-social a {
    display: flex;
    color: var(--text-muted);
    transition: color var(--t), transform var(--t);
}
.footer-social a:hover { color: var(--white); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-copy {
    font-size: .75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 4px;
}

/* ============================================================
   ANİMASYONLAR
   ============================================================ */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
    .info-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .hero-btns .btn { width: 100%; max-width: 260px; }
    .about-inner { padding: 32px 22px; }
    .map-section iframe { height: 260px; }
}

/* ── Erişilebilirlik ── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}
