:root {
    --teal: #0799a9;
    --teal-dark: #07576c;
    --orange: #ff9f1c;
    --yellow: #ffc43d;
    --navy: #093c50;
    --cream: #fff9ed;
    --text: #173847;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(5, 74, 90, 0.14);
}

/* Genel ayarlar */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
    font-family: "Nunito", sans-serif;
}

img {
    max-width: 100%;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    top: 20px;
    left: 20px;
    z-index: 999;
    padding: 12px 18px;
    color: var(--navy);
    background: var(--white);
    border-radius: 10px;
}

/* Üst menü */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 3px 20px rgba(6, 67, 82, 0.08);
    backdrop-filter: blur(15px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 34px;
    width: 100%;
    max-width: 1180px;
    height: 84px;
    margin: auto;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 154px;
    max-height: 72px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    color: #315361;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 3px;
    margin: auto;
    content: "";
    background: var(--orange);
    border-radius: 999px;
    transition: width 0.2s ease;
}

.main-nav a:hover {
    color: var(--teal);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-cta {
    padding: 12px 20px;
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 7px 0 #e47e09;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 0 #e47e09;
}

.menu-button {
    display: none;
    padding: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px;
    background: var(--navy);
    border-radius: 3px;
}

/* Ana kahraman alanı */

.hero {
    position: relative;
    min-height: 690px;
    padding: 75px 24px 100px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(255, 255, 255, 0.8),
            transparent 20%
        ),
        linear-gradient(
            145deg,
            #dff9ff 0%,
            #b5eff5 52%,
            #dcf8f5 100%
        );
}

.hero::before {
    position: absolute;
    top: -160px;
    right: -150px;
    width: 620px;
    height: 620px;
    content: "";
    border: 2px dashed rgba(0, 133, 151, 0.18);
    border-radius: 50%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    width: 100%;
    max-width: 1180px;
    margin: auto;
}

.eyebrow,
.kicker {
    color: #087e8b;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--white);
    border-radius: 999px;
    box-shadow: 0 8px 25px rgba(0, 111, 130, 0.12);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Baloo 2", cursive;
    line-height: 1.04;
}

h1 {
    margin-top: 23px;
    color: var(--navy);
    font-size: clamp(50px, 6vw, 78px);
    letter-spacing: -2.5px;
}

h1 em {
    color: var(--orange);
    font-style: normal;
    text-shadow: 0 4px 0 var(--white);
}

.hero-copy > p {
    max-width: 590px;
    margin: 25px 0;
    color: #3b6875;
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    padding: 15px 23px;
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, #ffad25, #f5860c);
    box-shadow:
        0 8px 0 #dc7200,
        0 12px 24px rgba(234, 121, 0, 0.22);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 11px 0 #dc7200,
        0 15px 28px rgba(234, 121, 0, 0.24);
}

.button-ghost {
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(8, 92, 111, 0.12);
}

.button-ghost:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(8, 92, 111, 0.16);
}

.play {
    display: grid;
    width: 28px;
    height: 28px;
    color: var(--white);
    background: var(--teal);
    border-radius: 50%;
    place-items: center;
    font-size: 11px;
}

.mini-features {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    color: #3d6773;
    font-size: 13px;
    font-weight: 800;
}

.mini-features span::first-letter {
    color: var(--teal);
}

/* Ana karakter görseli */

.hero-visual {
    position: relative;
    display: grid;
    height: 540px;
    place-items: center;
}

.sun {
    position: absolute;
    width: 410px;
    height: 410px;
    background:
        radial-gradient(
            circle,
            #ffe58b 0%,
            #ffe58b 58%,
            rgba(255, 204, 62, 0.2) 59%
        );
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.3);
}

.orbit {
    position: absolute;
    width: 490px;
    height: 350px;
    border: 2px dashed rgba(2, 120, 141, 0.25);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.hero-character {
    position: relative;
    z-index: 2;
    width: 380px;
    height: 535px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 22px 18px rgba(8, 80, 92, 0.2));
    transition: transform 0.15s ease-out;
}

.speech,
.compass-card {
    position: absolute;
    z-index: 3;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.speech {
    top: 52px;
    right: -12px;
    padding: 13px 18px;
    transform: rotate(3deg);
    animation: speechFloat 4s ease-in-out infinite;
}

.speech::before {
    position: absolute;
    bottom: 10px;
    left: -14px;
    content: "";
    border: 9px solid transparent;
    border-right-color: var(--white);
}

.speech strong,
.speech span {
    display: block;
}

.speech strong {
    color: var(--orange);
    font-family: "Baloo 2", cursive;
    font-size: 20px;
}

.speech span {
    font-size: 13px;
}

.compass-card {
    bottom: 65px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    transform: rotate(-4deg);
}

.compass-card > span {
    font-size: 32px;
}

.compass-card b,
.compass-card small {
    display: block;
}

.compass-card small {
    color: var(--teal);
}

.float-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
    font-size: 46px;
    animation: float 4s ease-in-out infinite;
}

.balloon {
    top: 14%;
    left: 5%;
}

.star {
    top: 26%;
    right: 8%;
    color: var(--yellow);
}

.hero-cloud {
    position: absolute;
    width: 120px;
    height: 35px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50px;
}

.hero-cloud::before,
.hero-cloud::after {
    position: absolute;
    content: "";
    background: inherit;
    border-radius: 50%;
}

.hero-cloud::before {
    bottom: 0;
    left: 20px;
    width: 52px;
    height: 52px;
}

.hero-cloud::after {
    right: 12px;
    bottom: 0;
    width: 68px;
    height: 68px;
}

.cloud-one {
    bottom: 16%;
    left: 8%;
}

.cloud-two {
    top: 14%;
    right: 7%;
    transform: scale(0.8);
}

.hero-wave {
    position: absolute;
    bottom: -48px;
    left: -3%;
    width: 106%;
    height: 100px;
    background: var(--white);
    border-radius: 50% 50% 0 0;
}

/* Ortak bölüm ayarları */

.section {
    padding: 92px 24px;
}

.section-heading {
    max-width: 680px;
    margin: 0 auto 45px;
    text-align: center;
}

.kicker {
    font-size: 13px;
}

.section-heading h2,
.meet h2,
.discover h2 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: clamp(38px, 4vw, 52px);
}

.section-heading p {
    color: #66818a;
    font-size: 17px;
}

/* Macera kartları */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1120px;
    margin: auto;
}

.adventure-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid #eaf3f4;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(5, 74, 90, 0.2);
}

.card-art {
    position: relative;
    display: grid;
    height: 205px;
    overflow: hidden;
    place-items: center;
}

.card-art::after {
    position: absolute;
    width: 250px;
    height: 250px;
    content: "";
    border: 2px dashed rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.card-art > span:first-child {
    position: absolute;
    top: 20px;
    left: 22px;
    font-size: 40px;
}

.big-emoji {
    z-index: 1;
    font-size: 85px;
    filter: drop-shadow(0 8px 5px rgba(0, 0, 0, 0.16));
    transition: transform 0.3s ease;
}

.adventure-card:hover .big-emoji {
    transform: scale(1.12) rotate(-4deg);
}

.card-art b {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 6px 10px;
    color: var(--navy);
    background: var(--white);
    border-radius: 999px;
    font-size: 11px;
}

.forest .card-art {
    background: linear-gradient(145deg, #7bd39b, #2ea979);
}

.ocean .card-art {
    background: linear-gradient(145deg, #7bdff2, #158fc2);
}

.space .card-art {
    background: linear-gradient(145deg, #7756bd, #26366f);
}

.card-body {
    padding: 23px;
}

.tag {
    padding: 5px 10px;
    color: var(--teal);
    background: #e4f9fa;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 900;
}

.card-body h3 {
    margin: 14px 0 8px;
    color: var(--navy);
    font-size: 27px;
}

.card-body p {
    min-height: 67px;
    color: #688089;
    font-size: 14px;
    line-height: 1.6;
}

.card-body button {
    width: 100%;
    padding: 12px;
    color: #6d8b92;
    background: #edf7f8;
    border: 0;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.card-body button:hover {
    color: var(--white);
    background: var(--teal);
}

/* Emin'i tanı bölümü */

.meet {
    position: relative;
    padding: 90px 24px;
    overflow: hidden;
    background: var(--cream);
}

.meet::before {
    position: absolute;
    top: -40px;
    right: 2%;
    content: "✦";
    color: rgba(255, 184, 35, 0.11);
    font-size: 220px;
}

.meet-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1080px;
    margin: auto;
}

.portrait {
    position: relative;
    display: grid;
    height: 460px;
    place-items: end center;
}

.portrait-ring {
    position: absolute;
    width: 360px;
    height: 360px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow:
        0 0 0 18px var(--white),
        0 0 0 21px #f1c75d;
}

.portrait img {
    position: relative;
    width: 330px;
    height: 450px;
    object-fit: cover;
    object-position: 50% 15%;
    border-radius: 0 0 170px 170px;
    filter: drop-shadow(0 18px 15px rgba(75, 55, 0, 0.17));
}

.badge {
    position: absolute;
    right: -5px;
    bottom: 20px;
    padding: 10px 18px;
    color: var(--white);
    background: var(--teal);
    border-radius: 99px;
    box-shadow: 0 7px 0 #086774;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    transform: rotate(-4deg);
}

.meet-copy > p {
    color: #60747c;
    font-size: 18px;
    line-height: 1.75;
}

.traits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.traits div {
    padding: 16px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(86, 66, 25, 0.08);
    transition: transform 0.25s ease;
}

.traits div:hover {
    transform: translateY(-5px);
}

.traits span {
    font-size: 27px;
}

.traits b,
.traits small {
    display: block;
}

.traits b {
    margin-top: 6px;
    color: var(--navy);
}

.traits small {
    margin-top: 4px;
    color: #819196;
    font-size: 11px;
}

/* Macera kulübü */

.discover-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 1080px;
    margin: auto;
    padding: 38px 45px;
    color: var(--white);
    background: linear-gradient(135deg, #075b70, #079cac);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.discover-box .kicker {
    color: #8ef0f4;
}

.discover-box h2 {
    margin: 5px 0;
    color: var(--white);
    font-size: 38px;
}

.discover-box p {
    margin: 5px 0 0;
    color: #cceef0;
}

.map-icon {
    font-size: 65px;
}

/* Alt bölüm */

footer {
    padding: 40px 20px;
    color: #bed9df;
    background: #073f51;
    text-align: center;
}

footer img {
    width: 150px;
    max-height: 80px;
    object-fit: contain;
}

footer p {
    color: var(--white);
    font-weight: 800;
}

footer small {
    font-size: 12px;
}

/* Bildirim */

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 80;
    padding: 13px 20px;
    color: var(--white);
    background: #073f51;
    border-radius: 99px;
    box-shadow: var(--shadow);
    opacity: 0;
    font-weight: 800;
    pointer-events: none;
    transform: translate(-50%, 120px);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Sayfa açılış animasyonu */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Animasyonlar */

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-16px) rotate(5deg);
    }
}

@keyframes speechFloat {
    0%,
    100% {
        transform: translateY(0) rotate(3deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

/* Tablet görünümü */

@media (max-width: 900px) {
    .main-nav,
    .nav-cta {
        display: none;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .main-nav.open {
        position: absolute;
        top: 76px;
        right: 16px;
        left: 16px;
        display: flex;
        flex-direction: column;
        padding: 20px;
        background: var(--white);
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .hero {
        padding-top: 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy > p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .mini-features {
        justify-content: center;
    }

    .hero-visual {
        height: 490px;
        margin-top: 20px;
    }

    .hero-character {
        height: 485px;
    }

    .meet-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .meet-copy {
        text-align: center;
    }

    .card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .discover-box {
        grid-template-columns: auto 1fr;
    }

    .discover-box .button {
        grid-column: 1 / -1;
    }

    .traits {
        text-align: left;
    }
}

/* Telefon görünümü */

@media (max-width: 620px) {
    .nav-wrap {
        height: 70px;
        padding: 0 15px;
    }

    .brand img {
        width: 125px;
    }

    .hero {
        min-height: 950px;
        padding-right: 17px;
        padding-left: 17px;
    }

    h1 {
        font-size: 49px;
    }

    .hero-copy > p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mini-features {
        gap: 9px;
        font-size: 11px;
    }

    .hero-visual {
        height: 430px;
    }

    .sun {
        width: 310px;
        height: 310px;
    }

    .orbit {
        width: 365px;
        height: 275px;
    }

    .hero-character {
        width: 300px;
        height: 430px;
    }

    .speech {
        top: 35px;
        right: -5px;
    }

    .compass-card {
        bottom: 35px;
        left: 0;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 17px;
    }

    .section-heading h2,
    .meet h2 {
        font-size: 39px;
    }

    .meet {
        padding: 70px 17px;
    }

    .portrait {
        height: 400px;
    }

    .portrait-ring {
        width: 300px;
        height: 300px;
    }

    .portrait img {
        width: 290px;
        height: 400px;
    }

    .traits {
        grid-template-columns: 1fr;
    }

    .discover-box {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        text-align: center;
    }

    .map-icon {
        font-size: 52px;
    }

    .discover-box h2 {
        font-size: 34px;
    }

    .float-icon {
        display: none;
    }
}

/* Hareket azaltma tercihi */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}