:root {
    --primary-color: #0b2545;
    --accent-color: #c9a227;
    --text-color: #17202a;
    --muted-color: #5f6b7a;
    --background-color: #f5f7fb;
    --surface-color: #ffffff;
    --border-color: #d8e0ea;
    --shadow: 0 16px 40px rgba(11, 37, 69, 0.12);
    --radius: 0px;
    --container-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 2rem, var(--container-width));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 224, 234, 0.8);
}

.ticker-shell {
    padding-top: 0.75rem;
}

.ticker-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 22px rgba(11, 37, 69, 0.06);
    overflow: hidden;
}

.ticker-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.9rem;
    border-radius: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ticker-viewport {
    flex: 1 1 auto;
    overflow: hidden;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    white-space: nowrap;
}

.ticker-track.is-animated {
    animation: ticker-scroll 34s linear infinite;
}

.ticker-item {
    color: var(--primary-color);
    font-weight: 600;
}

.ticker-item:hover {
    color: var(--accent-color);
}

.ticker-item::after {
    content: '•';
    margin-left: 1.25rem;
    color: var(--accent-color);
}

.ticker-item-static::after {
    content: '';
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.header-bar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: none;
    place-items: center;
    border-radius: 0;
    background: var(--primary-color);
    /* hidden entirely per user request */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.brand-text {
    display: grid;
    gap: 0.15rem;
}

.brand-text strong,
.section-title,
h1,
h2,
h3,
button {
    font-family: 'Poppins', sans-serif;
}

.brand-text small {
    color: var(--muted-color);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.primary-nav a {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 0.7rem;
    border-radius: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover {
    background: rgba(11, 37, 69, 0.08);
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    border-radius: 0;
    padding: 0.8rem 1rem;
    cursor: pointer;
}

main {
    display: block;
}

.section {
    padding: 5rem 0;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 1rem;
    padding: 0 0.85rem;
    border-radius: 0;
    background: rgba(201, 162, 39, 0.12);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    margin: 0 0 1rem;
    color: var(--primary-color);
    font-size: clamp(1.5rem, 2vw, 2.35rem);
}

.section-lead {
    max-width: 760px;
    color: var(--muted-color);
    margin: 0 0 2rem;
}

.hero {
    padding: 4rem 0 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: var(--primary-color);
}

.hero-copy p {
    font-size: 1.05rem;
    color: var(--muted-color);
    max-width: 640px;
}

.section-media-card img {
    min-height: 100%;
    object-fit: cover;
}

.featured-events-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.4rem;
}

.featured-event-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
}

.featured-event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-event-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-event-list {
    display: grid;
    gap: 1.4rem;
}

.social-embed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.social-embed-card {
    min-height: 620px;
}

.social-embed-frame {
    width: 100%;
    min-height: 560px;
    border: 0;
    border-radius: 0;
    background: #fff;
}

.section-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.4rem;
    align-items: stretch;
}

.positions-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.position-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 0;
    background: rgba(11, 37, 69, 0.03);
}

.position-row h3 {
    margin: 0;
}

.position-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: rgba(201, 162, 39, 0.15);
    color: var(--primary-color);
    font-weight: 800;
    flex: 0 0 auto;
}

.button,
.button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.4rem;
    border-radius: 0;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.25);
}

.button:hover,
.button-outline:hover {
    transform: translateY(-2px);
}

.button-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: rgba(11, 37, 69, 0.16);
}

.input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 0.85rem 1rem;
    font: inherit;
    background: #fff;
    color: var(--text-color);
    margin: 0.35rem 0 1rem;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.card {
    background: var(--surface-color);
    border: 1px solid rgba(216, 224, 234, 0.8);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card-body {
    padding: 1.25rem;
}

.card-body h3 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
}

.card-body p,
.meta,
.pagination,
.site-footer p {
    color: var(--muted-color);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.site-footer {
    margin-top: 4rem;
    padding: 2.5rem 0 1.5rem;
    background: #07162a;
    color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-end;
}

.social-icon-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-icon-pill:hover {
    background: rgba(201, 162, 39, 0.28);
}

.footer-copy {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7, 22, 42, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 100;
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-width: min(92vw, 1000px);
    max-height: 88vh;
    border-radius: 0;
    box-shadow: var(--shadow);
}

@media (max-width: 992px) {
    .hero-grid,
    .grid-2,
    .card-grid,
    .featured-events-layout,
    .featured-event-card,
    .social-embed-grid,
    .section-split {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid,
    .header-bar {
        flex-wrap: wrap;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0 0.5rem;
    }

    .primary-nav.is-open {
        display: flex;
    }

    .hero-grid,
    .grid-2,
    .card-grid,
    .featured-events-layout,
    .featured-event-card,
    .social-embed-grid,
    .section-split {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    /* Alt alta gelen görsel+yazı bloklarında görselleri daha
       makul bir yüksekliğe indirip aralarına net bir ayrım koyuyoruz */
    .section-media-card {
        margin-bottom: 0;
    }

    .section-media-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        min-height: 0;
    }

    .grid-2 > .card,
    .section-split > .card {
        margin: 0;
    }

    .featured-event-card {
        grid-template-columns: 1fr;
    }

    .featured-event-card img {
        height: 200px;
    }

    .hero-visual {
        display: none;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .hero-copy > div {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy .button,
    .hero-copy .button-outline {
        width: 100%;
    }

    .ticker-bar {
        border-radius: 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .ticker-viewport {
        width: 100%;
    }

    .social-embed-card {
        min-height: auto;
    }

    .section {
        padding: 2.75rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .container {
        width: min(100% - 1.5rem, var(--container-width));
    }
}

@media (max-width: 480px) {
    .section-media-card img {
        height: 200px;
    }

    .position-row {
        padding: 0.75rem 0.85rem;
    }

    .card-body {
        padding: 1rem;
    }
}

/* ==== Banner Slider (üst, tam genişlik) ==== */
.banner-slider-shell {
    padding-top: 1.5rem;
}

.banner-slider {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
    height: 340px;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .banner-slider {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 170px;
    }
}

/* ==== Slider ortak parçaları (slide, ok, nokta) ==== */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    display: block;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.2rem 1.4rem;
    background: linear-gradient(180deg, rgba(11, 37, 69, 0) 0%, rgba(11, 37, 69, 0.85) 100%);
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.2s ease;
}

.hero-slider-arrow:hover {
    background: #fff;
}

.hero-slider-prev {
    left: 0.8rem;
}

.hero-slider-next {
    right: 0.8rem;
}

.hero-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hero-slider-dot.is-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}