@font-face {
    font-family: "MuseoSans";
    src: url(fonts/MuseoSansRounded300.otf);
    font-weight: 300;
}
@font-face {
    font-family: "MuseoSans";
    src: url(fonts/MuseoSansRounded500.otf);
    font-weight: 500;
}
@font-face {
    font-family: "MuseoSans";
    src: url(fonts/MuseoSansRounded700.otf);
    font-weight: 700;
}
@font-face {
    font-family: "MuseoSans";
    src: url(fonts/MuseoSansRounded900.otf);
    font-weight: 900;
}
@font-face {
    font-family: "MuseoSans";
    src: url(fonts/MuseoSansRounded1000.otf);
    font-weight: 1000;
}

@font-face {
    font-family: "Gotham";
    src: url(fonts/gothamrnd_light.otf);
    font-weight: 300;
}
@font-face {
    font-family: "Gotham";
    src: url(fonts/gothamrnd_book.otf);
    font-weight: 400;
}
@font-face {
    font-family: "Gotham";
    src: url(fonts/gothamrnd_medium.otf);
    font-weight: 500;
}
@font-face {
    font-family: "Gotham";
    src: url(fonts/gothamrnd_bold.otf);
    font-weight: 700;
}

.container-x {
    width: 100%;
    max-width: calc(96rem + 2rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

body {
    font-family: "Gotham", sans-serif;
}

button {
    cursor: pointer;
}

.font-display {
    font-family: "MuseoSans", sans-serif;
}

.hero-pagination {
    width: auto !important;
}

#site-header {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition:
            transform 0.35s ease,
            background-color 0.35s ease,
            backdrop-filter 0.35s ease;
    will-change: transform;
}

body.header-solid #site-header,
#site-header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.inner-page #site-header,
body.inner-page #site-header.header-scrolled {
    background-color: rgba(248, 248, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#site-header.header-hidden {
    transform: translateY(-100%);
}

.heroSwiper [data-animate] {
    opacity: 0;
    transform: translateY(28px);
    will-change: opacity, transform;
}

.heroSwiper .swiper-slide-active [data-animate="eyebrow"] {
    animation: heroFadeUp 0.65s ease forwards;
    animation-delay: 0.1s;
}

.heroSwiper .swiper-slide-active [data-animate="title"] {
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.heroSwiper .swiper-slide-active [data-animate="desc"] {
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.32s;
}

.heroSwiper .swiper-slide-active [data-animate="button"] {
    animation: heroFadeUp 1s ease forwards;
    animation-delay: 0.42s;
}

.heroSwiper .swiper-slide img {
    transform: scale(1.08);
    transition: transform 1.4s ease;
}

.heroSwiper .swiper-slide-active img {
    transform: scale(1);
}

.hero-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-pagination .swiper-pagination-bullet {
    position: relative;
    width: 32px;
    height: 4px;
    margin: 0 !important;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
    transition:
            width 0.35s ease,
            background 0.35s ease;
    flex: 0 0 auto;
}

.hero-pagination .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    background: #fff;
    border-radius: inherit;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 80px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-pagination .swiper-pagination-bullet-active::after {
    animation-name: heroPaginationFill;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

#grup-galeri [data-gallery-panel="photos"] {
    overflow: hidden;
}

#grup-galeri .groupGallerySwiper {
    overflow: hidden !important;
}

#grup-galeri .group-gallery-controls {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#grup-galeri .group-gallery-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto !important;
}

#grup-galeri .group-gallery-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 !important;
    border-radius: 999px;
    background: #d9d9d9;
    opacity: 1;
}

#grup-galeri .group-gallery-pagination .swiper-pagination-bullet-active {
    background: #001830;
}

#grup-galeri .group-gallery-prev,
#grup-galeri .group-gallery-next {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #001830;
    color: #ffffff;
    transition: background-color 0.2s ease;
}

#grup-galeri .group-gallery-prev:hover,
#grup-galeri .group-gallery-next:hover {
    background: #00254a;
}

#grup-galeri .group-gallery-prev.swiper-button-disabled,
#grup-galeri .group-gallery-next.swiper-button-disabled {
    opacity: 1;
}

@media (max-width: 639px) {
    #grup-galeri .group-gallery-controls {
        margin-top: 18px;
    }

    #grup-galeri .group-gallery-prev,
    #grup-galeri .group-gallery-next {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }
}

@keyframes heroPaginationFill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 639px) {
    .hero-pagination .swiper-pagination-bullet-active {
        width: 56px;
    }
}

#vizyon-misyon-giris [data-vm-intro] {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
    transition:
            opacity 0.75s ease,
            transform 0.75s ease,
            filter 0.75s ease;
    will-change: opacity, transform, filter;
}

#vizyon-misyon-giris.is-visible [data-vm-intro="title"] {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.08s;
}

#vizyon-misyon-giris.is-visible [data-vm-intro="desc"] {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    #vizyon-misyon-giris [data-vm-intro] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

.content {
    color: #1c3047;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.01em;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.content > *:first-child {
    margin-top: 0;
}

.content > *:last-child {
    margin-bottom: 0;
}

.content :where(h1, h2, h3, h4, h5, h6) {
    margin: 1.35em 0 0.6em;
    font-family: "MuseoSans", sans-serif;
    color: #001830;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.content h1 {
    font-size: clamp(1.85rem, 3.2vw, 3.3rem);
}

.content h2 {
    font-size: clamp(1.55rem, 2.6vw, 2.6rem);
}

.content h3 {
    font-size: clamp(1.28rem, 2.05vw, 2.1rem);
}

.content h4 {
    font-size: clamp(1.12rem, 1.7vw, 1.6rem);
}

.content h5 {
    font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.content h6 {
    font-size: clamp(0.94rem, 1.2vw, 1.14rem);
}

.content :where(p, ul, ol, blockquote, pre, figure, table, hr, details) {
    margin: 1.05em 0;
}

.content p {
    color: #1c3047;
}

.content a {
    color: #f39623;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.15em;
    transition: color 0.2s ease;
}

.content a:hover {
    color: #d87d10;
}

.content :where(strong, b) {
    color: #001830;
    font-weight: 700;
}

.content :where(em, i) {
    font-style: italic;
}

.content mark {
    background: #fff3dd;
    color: #001830;
    padding: 0 0.2em;
    border-radius: 0.2em;
}

.content small {
    font-size: 0.88em;
    color: #607078;
}

.content :where(sup, sub) {
    font-size: 0.72em;
}

.content ul,
.content ol {
    padding-left: 1.25rem;
}

.content ul {
    list-style: disc;
}

.content ol {
    list-style: decimal;
}

.content li + li {
    margin-top: 0.45em;
}

.content li > :where(ul, ol) {
    margin-top: 0.5em;
    margin-bottom: 0.4em;
}

.content ul ul {
    list-style: circle;
}

.content ul ul ul {
    list-style: square;
}

.content blockquote {
    border-left: 4px solid #f39623;
    background: #fff8ef;
    padding: 0.95rem 1rem;
    border-radius: 0 12px 12px 0;
    color: #001830;
    font-style: italic;
}

.content hr {
    border: 0;
    border-top: 1px solid #e0e0e0;
}

.content :where(img, video, iframe, canvas, svg) {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.content figure {
    margin-left: 0;
    margin-right: 0;
}

.content figcaption {
    margin-top: 0.6rem;
    color: #607078;
    font-size: 0.92em;
    text-align: center;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.content th,
.content td {
    border: 1px solid #e0e0e0;
    padding: 0.65rem 0.75rem;
    text-align: left;
}

.content th {
    background: #f8f8f8;
    color: #001830;
    font-weight: 700;
}

.content tr:nth-child(even) td {
    background: #fcfcfc;
}

.content :where(code, kbd, samp) {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.content code {
    background: #f4f6f8;
    color: #003468;
    border-radius: 6px;
    padding: 0.15em 0.35em;
    font-size: 0.9em;
}

.content pre {
    background: #0f2238;
    color: #e8f0f8;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    overflow: auto;
    line-height: 1.6;
}

.content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: 0.92em;
}

.content kbd {
    border: 1px solid #d8dee5;
    border-bottom-width: 2px;
    border-radius: 6px;
    background: #fff;
    color: #001830;
    padding: 0.12em 0.42em;
    font-size: 0.86em;
}

.content details {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fafafa;
    padding: 0.75rem 0.9rem;
}

.content summary {
    cursor: pointer;
    font-family: "MuseoSans", sans-serif;
    font-weight: 700;
    color: #001830;
}

@media (min-width: 640px) {
    .content {
        font-size: 15px;
        line-height: 1.82;
    }

    .content :where(p, ul, ol, blockquote, pre, figure, table, hr, details) {
        margin: 1.12em 0;
    }

    .content blockquote {
        padding: 1.05rem 1.15rem;
    }
}

@media (min-width: 1280px) {
    .content {
        font-size: 16px;
        line-height: 1.9;
    }

    .content :where(h1, h2, h3, h4, h5, h6) {
        margin-top: 1.45em;
    }
}

/* On Kayit Formu */
#on-kayit-formu .lesson-group-btn {
    border: 0;
    background: #f8f8f8;
    color: #001830;
}

#on-kayit-formu .lesson-group-btn.is-active {
    background: #001830;
    color: #ffffff;
}

#on-kayit-formu .schedule-slot {
    border: 1px solid #e0e0e0;
    background: #ffffff;
}

#on-kayit-formu .schedule-slot.is-selected {
    border-color: #f39623;
    background: #fff7ee;
}

#on-kayit-formu .schedule-slot.is-selected .slot-time,
#on-kayit-formu .schedule-slot.is-selected .slot-title {
    color: #f39623;
}

#on-kayit-formu .schedule-slot.is-hidden {
    display: none;
}

#on-kayit-formu .schedule-empty {
    display: none;
}

#on-kayit-formu .schedule-empty.is-visible {
    display: flex;
}

#on-kayit-formu .calendar-day {
    font-size: 1rem;
    font-weight: 500;
}

#on-kayit-formu .calendar-date {
    font-family: "Gotham", "MuseoSans", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

#on-kayit-formu .slot-time {
    font-family: "Gotham", "MuseoSans", sans-serif;
    font-size: 13px;
    font-weight: 400;
}

#on-kayit-formu .slot-title {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {
    #on-kayit-formu .week-nav-btn {
        height: 44px;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 13px;
    }

    #on-kayit-formu .week-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    #on-kayit-formu .week-range-label {
        font-size: 18px;
        line-height: 1.15;
    }
}

/* Belgeler */
#belgeler .doc-card {
    color: #607078;
    min-height: 124px;
    border-radius: 18px;
    padding: 14px;
}

#belgeler .doc-card path[stroke="#607078"],
#belgeler .doc-card path[fill="#607078"] {
    transition:
            stroke 0.28s ease,
            fill 0.28s ease;
}

#belgeler .doc-card > div > svg:first-child {
    width: 34px;
    height: 34px;
}

#belgeler .doc-card > div > svg:last-child {
    width: 28px;
    height: 28px;
    transition: transform 0.28s ease;
}

#belgeler .doc-card h2 {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.3;
    transition: color 0.28s ease;
}

#belgeler .doc-card:hover {
    color: #f39623;
    border-color: #f39623;
}

#belgeler .doc-card:hover h2 {
    color: #f39623;
}

#belgeler .doc-card:hover path[stroke="#607078"] {
    stroke: #f39623;
}

#belgeler .doc-card:hover path[fill="#607078"] {
    fill: #f39623;
}

#belgeler .doc-card:hover > div > svg:last-child {
    transform: translate(4px, -4px);
}

@media (min-width: 640px) {
    #belgeler .doc-card {
        min-height: 168px;
        border-radius: 24px;
        padding: 24px;
    }

    #belgeler .doc-card > div > svg:first-child,
    #belgeler .doc-card > div > svg:last-child {
        width: 48px;
        height: 48px;
    }

    #belgeler .doc-card h2 {
        margin-top: 16px;
        font-size: 1.125rem;
        line-height: 1.35;
    }
}
