:root {
    --lacivert: #0A1A2F;
    --turuncu: #F28B30;
    --haki: #6B6F3A;

    --bg: #f4f2ec;
    --bg-soft: #e6efe7;
    --text: #1a1a1a;
    --muted: #6f6f6f;

    --radius: 18px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
}

body {
    margin: 0;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-color: var(--bg);
    background-image: url("../images/8.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    cursor: none;

}


body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;

}

/* MOUSE*/
.custom-cursor {
  width: 60px;
  height: 60px;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  background: url("../icons/cut1.png") center/cover no-repeat;
}



/* ⭐ SADECE MOBILDE GÖRÜNEN ÜST LOGO ⭐ */
.top-logo {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    display: none;
}

.top-logo img {
    width: 360px;
    height: 360px;
    object-fit: contain; /* kırpma yok */
    border-radius: 25%;
    background-color: #ffffff; /
}

/* MENÜ */

.mobile-menu {
    display: none;
}

.hamburger {
    display: none;
}

.main-nav {
    display: flex;
    justify-content: right;
    gap: 30px;
    padding: 20px 8%;
}

.main-nav a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav a:hover {
    color: var(--turuncu);
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 8%;
    min-height: 70vh;
    gap: 10px;

}

.hero-right img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    border-radius: 25%;
    background-color: #ffffff;
}


.hero-left {
    width: 45%;
    margin-left: 5%;
    color: #fff;
}

.hero-left h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.hero-left .intro {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #f1f1f1;
    margin-bottom: 35px;
    max-width: 620px;
    margin-top: 20px;
}

.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* ikonlar arası boşluk */
}

.icons img{
    width: 44px;
    height: 44px;
}

.contact-mini {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 28px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    max-width: 560px;
    color: #fff;
    transition: 0.25s ease;
}
.contact-mini p {
    font-size: 1.45rem;
}

.contact-mini:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}





/* ABOUT */
.about-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 40px 30px;
    background: transparent;
    border-radius: 12px;
    line-height: 2.0;
    font-size: 1.1rem;
    color: #ffffff;

}

.about-section h2 {
    font-size:3rem;
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
}

.about-section h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ffffff;
    display: block;
    margin: 10px auto 0;
}

.about-section p {
    text-align: justify;
    font-size: 1.45rem;
    color: #ffffff;
}

/* GALLERY */
.gallery-section {
    padding: 40px 8% 60px;
}

.gallery-section h2 {
    font-size: 3rem;
    color:white;
    margin-bottom: 20px;
}

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

.gallery-item img {
    width: 100%;
    height: 860px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);

}

/* TARIFS */
.tarifs-spa {
    padding: 60px 8%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    text-align: center;
}

.tarifs-spa h4,
.tarifs-spa h2,
.tarifs-subtitle {
    color: #fff;
    font-size: 3rem;
}

.tarifs-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 40px;
}

.tarif-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 22px 26px;
    border-radius: 18px;

    display: flex;
    flex-direction: column;   /* ikon + yazılar dikey */
    align-items: center;      /* hepsi ortada */
    text-align: center;       /* metin ortada */
    gap: 12px;                /* elemanlar arası boşluk */

    border: 1px solid rgba(255, 255, 255, 0.25);
}


.tarif-box .icon img{
    width: 44px;
    height: 44px;
}

.tarif-box h3,
.tarif-box p,
.tarif-box .price {
    color: #fff;
    font-size: 1.45rem;

}


.tarifs-subtitle {
    font-size: 1.45rem;
    margin-bottom: 40px;
    color: #fff;

}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 30px 0 40px;
    color: white;
    font-size: 0.85rem;
}

/* 📱 MOBIL GENEL ORTALAMA */

@media (max-width: 600px) {

    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
            color: white;
            position: absolute;
            top: 20px;
            right: 20px;
            text-align: right;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: none; /* aç/kapa JS ile */
        flex-direction: column;
        gap: 12px;

        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.03)
        );
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);

        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 10px;

        box-shadow:
            0 6px 24px rgba(0, 0, 0, 0.18),
            inset 0 -8px 18px rgba(255, 255, 255, 0.10);

        padding: 15px;
        position: absolute;
        top: 65px;
        right: 20px;
    }

    .mobile-menu::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 40px;
        pointer-events: none;

        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.18)
        );
    }


    .mobile-menu a {
        color: white;
        font-size: 0.9rem;
        text-decoration: none;
    }

    .icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* ikonlar arası boşluk */
}

.icons img{
    width: 34px;
    height: 34px;
}
    /* LOGO (küçültme yok – sen istemedin) */
    .top-logo {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .top-logo img {
        width: 240px;
        height: 240px;
        border-radius: 25%;
    }

    /* HERO */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
        gap: 15px;
        padding-bottom: 5px !important;
        margin-bottom: 0 !important;
    }

    .hero-left {
        width: 100%;
        margin: 0;
    }

    .hero-right img {
        display: none;
    }

    .hero-left h1 {
        display: none;
    }

    .hero-left .intro {
        font-size: 1rem !important;
        line-height: 1.6;
        max-width: 90%;
        margin: 0 auto;
    }

    /* CONTACT-MINI */
    .contact-mini {
        padding: 14px 18px;
        max-width: 90%;
        margin: 20px auto 5px auto !important;
    }

    .contact-mini p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* ABOUT */
    .about-section {
        margin-top: 0 !important;
        padding-top: 5px !important;
        margin-bottom: 10px !important;
    }

    .about-section p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-section h2 {
        font-size: 1.3rem;
    }

    /* GALERİ */
    .gallery-section h2 {
        font-size: 1.3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        width: 100%;
       object-fit: contain;
        height: auto;
        border-radius: 18px;
    }

    /* TARIFLER */
    .tarifs-wrapper {
        grid-template-columns: 1fr;
    }

    .tarif-box {
        padding: 14px 18px;
    }

    .tarif-box h3,
    .tarif-box p,
    .tarif-box .price {
        font-size: 1rem;
    }

    .tarifs-spa h2 {
        font-size: 1.3rem;
    }

    .tarifs-subtitle {
        font-size: 1rem;
    }

    /* FOOTER */
    .site-footer {
        font-size: 0.75rem;
        margin-top: 10px;
    }
}


/* ⭐ iPad DİKEY (600–780px) → Mobil görünüm ⭐ */
@media (min-width: 600px) and (max-width: 780px) {

    /* LOGO */
    .top-logo {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .top-logo img {
        width: 240px;
        height: 240px;
    }

    /* HERO */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
        gap: 25px;
    }

    .hero-left {
        width: 100%;
        margin: 0;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

    .hero-left .intro {
        font-size: 1.1rem;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-right img {
        display: none;
    }

    /* CONTACT */
    .contact-mini {
        max-width: 90%;
        margin: 20px auto;
        padding: 16px 20px;
    }

    /* ABOUT */
    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1.1rem;
    }

    /* PRESTATIONS */
    .gallery-section h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: auto;
        object-fit: contain;
    }

    /* TARIFS */
    .tarifs-spa h2 {
        font-size: 1.8rem;
    }

    .tarifs-subtitle {
        font-size: 1.1rem;
    }

    .tarifs-wrapper {
        grid-template-columns: 1fr;
    }

    .tarif-box h3,
    .tarif-box p,
    .tarif-box .price {
        font-size: 1.1rem;
    }
}


/* ⭐ iPad YATAY + Tablet (780–1400px) → Desktop düzeni ama sıkışma yok ⭐ */
@media (min-width: 780px) and (max-width: 1400px) {

    /* LOGO sadece mobilde göründüğü için burada gizli kalıyor */

    /* HERO GENEL */
    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 80px 8%;
        gap: 70px; /* boşluk büyütüldü */
    }

    /* HERO LEFT */
    .hero-left {
        width: 55%; /* daha geniş alan */
        margin: 0;
    }

    .hero-left h1 {
        font-size: 2,5rem; /* 5rem → 3rem */
        margin-bottom: 20px;
    }

    .hero-left .intro {
        font-size: 1.2rem; /* 1.6 → 1.25 */
        max-width: 520px;
        line-height: 1.6;
    }

    /* HERO RIGHT */
    .hero-right img {
        width: 360px; /* küçültüldü */
        height: auto;
        object-fit: contain;
    }

    /* CONTACT */
    .contact-mini {
        max-width: 480px;
        padding: 18px 22px;
        margin-top: 25px;
    }

    .contact-mini p {
        font-size: 1.2rem;
    }

    /* ABOUT */
    .about-section h2 {
        font-size: 2.2rem;
    }

    .about-section p {
        font-size: 1.2rem;
    }

    /* PRESTATIONS */
    .gallery-section h2 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .gallery-item img {
        height: auto;
        object-fit: contain;
    }

    /* TARIFS */
    .tarifs-spa h2 {
        font-size: 2.2rem;
    }

    .tarifs-subtitle {
        font-size: 1.2rem;
    }

    .tarifs-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarif-box h3,
    .tarif-box p,
    .tarif-box .price {
        font-size: 1.2rem;
    }
}

/* ⭐ 780–1200px ARASI TAM DÜZEN ⭐ */
@media (min-width: 780px) and (max-width: 1350px) {

    /* HERO GENEL */
    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 70px 6%;
        gap: 80px; /* boşluk büyütüldü */
    }

    /* HERO LEFT */
    .hero-left {
        width: 58%; /* daha geniş alan */
        margin: 0;
    }

    .hero-left h1 {
        font-size: 2rem; /* 5rem → 2.6rem */
        margin-bottom: 18px;
    }

    .hero-left .intro {
        font-size: 1rem; /* 1.6 → 1.15 */
        max-width: 500px;
        line-height: 1.55;
    }

    /* HERO RIGHT */
    .hero-right img {
        width: 300px; /* küçültüldü */
        height: auto;
        object-fit: contain;
        border-radius: 25%;
    }

    /* CONTACT */
    .contact-mini {
        max-width: 440px;
        padding: 16px 20px;
        margin-top: 25px;
    }

    .contact-mini p {
        font-size: 1rem;
    }

    /* ABOUT */
    .about-section {
        max-width: 850px;
        margin: 50px auto;
        padding: 20px;
    }

    .about-section h2 {
        font-size: 1.6rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    /* PRESTATIONS */
    .gallery-section h2 {
        font-size: 1.6rem;
    }

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

    .gallery-item img {
        height: auto;
        object-fit: contain;
        border-radius: 18px;
    }

    /* TARIFS */
    .tarifs-spa h2 {
        font-size: 1.6rem;
    }

    .tarifs-subtitle {
        font-size: 1rem;
    }

    .tarifs-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 30px;
    }

    .tarif-box {
        padding: 18px 20px;
    }

    .tarif-box h3,
    .tarif-box p,
    .tarif-box .price {
        font-size: 1rem;
    }
}


/* ⭐ 1200–1400px ARASI TAM DÜZEN ⭐ */
@media (min-width: 1200px) and (max-width: 1400px) {

    /* HERO GENEL */
    .hero {
        padding: 90px 10%;
        gap: 90px; /* daha fazla nefes */
    }

    /* HERO LEFT */
    .hero-left {
        width: 50%;
    }

    .hero-left h1 {
        font-size: 3.4rem; /* desktop’tan küçük */
    }

    .hero-left .intro {
        font-size: 1.35rem;
        max-width: 560px;
    }

    /* HERO RIGHT */
    .hero-right img {
        width: 420px;
        height: auto;
        object-fit: contain;
    }

    /* CONTACT */
    .contact-mini {
        max-width: 500px;
        padding: 20px 24px;
        margin-top: 30px;
    }

    .contact-mini p {
        font-size: 1.25rem;
    }

    /* ABOUT */
    .about-section {
        max-width: 1000px;
        padding: 30px;
    }

    .about-section h2 {
        font-size: 2.6rem;
    }

    .about-section p {
        font-size: 1.3rem;
    }

    /* PRESTATIONS */
    .gallery-section h2 {
        font-size: 2.6rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .gallery-item img {
        height: auto;
        object-fit: contain;
    }

    /* TARIFS */
    .tarifs-spa h2 {
        font-size: 2.6rem;
    }

    .tarifs-subtitle {
        font-size: 1.3rem;
    }

    .tarifs-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }

    .tarif-box {
        padding: 22px 26px;
    }

    .tarif-box h3,
    .tarif-box p,
    .tarif-box .price {
        font-size: 1.25rem;
    }
}


/* ⭐ 1400–1725px ARASI TAM DÜZEN ⭐ */
@media (min-width: 1400px) and (max-width: 1725px) {

   /* HERO GENEL */
    .hero {
        padding: 80px 8%;      /* 100px → 80px */
        gap: 60px;             /* 100px → 60px */
    }

    /* HERO LEFT */
    .hero-left {
        width: 48%;            /* 50% → 48% */
    }

    .hero-left h1 {
        font-size: 3.2rem;     /* 3.8rem → 3.2rem */
        margin-bottom: 20px;
    }

    .hero-left .intro {
        font-size: 1.3rem;     /* 1.45rem → 1.3rem */
        max-width: 520px;      /* 600px → 520px */
        line-height: 1.6;
    }

    /* HERO RIGHT */
    .hero-right img {
        width: 440px;          /* 480px → 340px */
        height: auto;
        object-fit: contain;
    }

    /* CONTACT */
    .contact-mini {
        max-width: 520px;
        padding: 22px 26px;
        margin-top: 35px;
    }

    .contact-mini p {
        font-size: 1.3rem;
    }

    /* ABOUT */
    .about-section {
        max-width: 1100px;
        padding: 40px;
    }

    .about-section h2 {
        font-size: 2.8rem;
    }

    .about-section p {
        font-size: 1.35rem;
    }

    /* PRESTATIONS */
    .gallery-section h2 {
        font-size: 2.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .gallery-item img {
        height: auto;
        object-fit: contain;
    }

    /* TARIFS */
    .tarifs-spa h2 {
        font-size: 2.8rem;
    }

    .tarifs-subtitle {
        font-size: 1.35rem;
    }

    .tarifs-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 48px;
    }

    .tarif-box {
        padding: 24px 30px;
    }

    .tarif-box h3,
    .tarif-box p,
    .tarif-box .price {
        font-size: 1.3rem;
    }
}
