@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f0e8;
    color: #2c2925;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */

.header {
    width: 100%;
    height: 90px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 3px;
    color: white;
}

.logo span {
    color: #c6a66b;
    margin-left: 4px;
}

.navbar {
    display: flex;
    gap: 30px;
}

.navbar a {
    color: white;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #c6a66b;
}

.book-btn {
    padding: 13px 24px;
    border: 1px solid #c6a66b;
    color: white;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.book-btn:hover {
    background: #c6a66b;
    color: #171512;
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 10%;
    background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    url("images/hero-spa.png.jpeg") center center / cover no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 9, 0.75) 0%,
        rgba(10, 10, 9, 0.25) 70%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: white;
}

.subtitle,
.section-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    color: #c6a66b;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 7vw, 98px);
    font-weight: 500;
    line-height: 0.95;
    margin-bottom: 30px;
}

.hero-text {
    max-width: 560px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.main-btn,
.second-btn {
    padding: 16px 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.main-btn {
    background: #c6a66b;
    color: #171512;
}

.main-btn:hover {
    background: #d7bd88;
}

.second-btn {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: white;
}

.second-btn:hover {
    background: white;
    color: #171512;
}

/* ABOUT */

.about {
    padding: 120px 9%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    height: 650px;
    background:
        url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=1200&q=85');
    background-size: cover;
    background-position: center;
    position: relative;
    background: url("images/hamam.png.jpeg") center center / cover no-repeat;
min-height: 550px;
}

.image-placeholder {
    position: absolute;
    left: -25px;
    bottom: -25px;
    padding: 28px 38px;
    background: #1c1a17;
    color: #c6a66b;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    letter-spacing: 3px;
}

.about-content {
    max-width: 540px;
}

.about-content h2,
.section-heading h2,
.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    line-height: 1;
    font-weight: 500;
    color: #24211d;
    margin-bottom: 30px;
}

.about-content > p:not(.section-subtitle) {
    margin-bottom: 20px;
    color: #68625b;
    font-size: 15px;
}

.text-btn {
    display: inline-block;
    margin-top: 15px;
    color: #876c3d;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* GENERAL SECTION TITLE */

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 65px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading > p:last-child {
    color: #777067;
    font-size: 14px;
}

/* SERVICES */

.services {
    padding: 110px 8%;
    background: #1c1a17;
}

.services .section-heading h2 {
    color: #f5f0e8;
}

.services .section-heading > p:last-child {
    color: #aaa299;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 360px;
    padding: 45px 32px;
    border: 1px solid rgba(198, 166, 107, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.4s;
    background: #23201c;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #c6a66b;
}

.service-icon {
    color: #c6a66b;
    font-size: 34px;
    margin-bottom: auto;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-card p {
    color: #aaa299;
    font-size: 13px;
    margin-bottom: 20px;
}

.service-card a {
    color: #c6a66b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* PACKAGES */

.packages {
    padding: 120px 8%;
    background: #f5f0e8;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.package-card {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.package-card:nth-child(1) {
    background-image:
        linear-gradient(to top, rgba(13, 12, 11, 0.9), rgba(13, 12, 11, 0.12)),
        url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=900&q=85');
}

.package-card:nth-child(2) {
    background-image:
        linear-gradient(to top, rgba(13, 12, 11, 0.9), rgba(13, 12, 11, 0.12)),
        url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=900&q=85');
}

.package-card:nth-child(3) {
    background-image:
        linear-gradient(to top, rgba(13, 12, 11, 0.9), rgba(13, 12, 11, 0.12)),
        url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=900&q=85');
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: 0.4s;
}

.package-card:hover::before {
    background: rgba(0, 0, 0, 0.18);
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: white;
}

.package-label {
    color: #c6a66b;
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}

.package-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 15px;
}

.package-content > p:not(.package-label) {
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    line-height: 2;
    margin-bottom: 25px;
}

.package-content a {
    display: inline-block;
    color: #c6a66b;
    border-bottom: 1px solid #c6a66b;
    padding-bottom: 4px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.package-list li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.package-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #c6a66b;
    font-size: 9px;
    top: 3px;
}

.featured {
    transform: translateY(-20px);
}

/* GALLERY */

.gallery {
    background: #ebe4da;
    padding: 110px 6%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 12px;
}

.gallery-item {
    height: 440px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background-size: cover;
    background-position: center;
}

.gallery-item:nth-child(1) {
    background-image:
        linear-gradient(to top, rgba(0,0,0,.55), transparent 50%),
        url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=900&q=85');
}

.gallery-item:nth-child(2) {
    background-image:
        linear-gradient(to top, rgba(0,0,0,.55), transparent 50%),
        url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=900&q=85');
}

.gallery-item:nth-child(3) {
    background-image:
        linear-gradient(to top, rgba(0,0,0,.55), transparent 50%),
        url('https://images.unsplash.com/photo-1531853121101-cb94c8ed218d?auto=format&fit=crop&w=900&q=85');
}

.gallery-item:nth-child(4) {
    background-image:
        linear-gradient(to top, rgba(0,0,0,.55), transparent 50%),
        url('https://images.unsplash.com/photo-1591343395082-e120087004b4?auto=format&fit=crop&w=900&q=85');
}

.gallery-item span {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
}

/* CONTACT */

.contact {
    padding: 130px 8%;
    text-align: center;
    background: #24211d;
    color: white;
}

.contact h2 {
    color: white;
}

.contact-content {
    max-width: 650px;
    margin: auto;
}

.contact-content > p:not(.section-subtitle) {
    color: #b7afa5;
    margin-bottom: 35px;
}

.whatsapp-btn {
    display: inline-block;
    padding: 17px 34px;
    background: #c6a66b;
    color: #191714;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #d8bd86;
}
.contact-description {
    max-width: 600px;
    margin: 0 auto 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.contact-item {
    padding: 30px 20px;
    border: 1px solid rgba(198, 166, 107, 0.25);
}

.contact-item h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #c6a66b;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-item p,
.contact-item a {
    color: #b7afa5;
    font-size: 13px;
    line-height: 1.8;
}

.contact-item a:hover {
    color: #c6a66b;
}

@media (max-width: 750px) {

    .contact-info {
        grid-template-columns: 1fr;
    }

}
.map-link {
    display: inline-block;
    margin-top: 12px;
    color: #c6a66b !important;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-link:hover {
    color: #ffffff !important;
}

/* FOOTER */

footer {
    padding: 45px 8%;
    background: #151310;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8e877e;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    letter-spacing: 3px;
    color: white;
}

.footer-logo span {
    color: #c6a66b;
    margin-left: 4px;
}

footer p {
    font-size: 11px;
}
footer {
    padding: 45px 8%;
    background: #151310;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
    color: #8e877e;
}

.footer-info p {
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-contact a {
    color: #c6a66b;
    font-size: 12px;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
}

/* MOBILE */

@media (max-width: 1000px) {

    .navbar {
        display: none;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .header {
        padding: 0 5%;
        height: 75px;
    }

    .logo {
        font-size: 23px;
    }

    .book-btn {
        padding: 10px 15px;
        font-size: 10px;
    }

    .hero {
        padding: 120px 7% 70px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .about {
        padding: 80px 7%;
    }

    .about-image {
        height: 450px;
    }

    .image-placeholder {
        left: 0;
        bottom: 0;
    }

    .about-content h2,
    .section-heading h2,
    .contact h2 {
        font-size: 44px;
    }

    .services,
    .packages,
    .gallery {
        padding: 80px 6%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 350px;
    }

    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;

    background: #c6a66b;
    color: #171512;

    padding: 15px 22px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);

    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    background: #d8bd86;
}

@media (max-width: 750px) {

    footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        padding: 13px 17px;
    }
}
.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;

    display: block;

    padding: 15px 22px;

    background: #c6a66b;
    color: #171512;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;

    text-decoration: none;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp:hover {
    background: #d8bd86;
    transform: translateY(-3px);
}
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 1000px) {

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #151310;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px 0;

        display: none;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}
/* =========================================
   SPA MENU & PRICE LIST
========================================= */

.massage-menu {
    max-width: 1100px;
    margin: 55px auto 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 45px;
}

.massage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;

    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(198, 166, 107, 0.22);

    transition: 0.3s ease;
}

.massage-item:hover {
    border-color: #c6a66b;
    transform: translateY(-3px);
}

.massage-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: #cfc3b2;
    margin-bottom: 6px;
}

.massage-item span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8e877e;
}

.massage-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-weight: 500;
    color: #c6a66b;
    white-space: nowrap;
    margin-left: 20px;
}


/* =========================================
   SPA PACKAGES
========================================= */

.spa-packages-title {
    text-align: center;
    margin: 40px auto 50px;
}

.spa-packages-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 500;
    color: #ffffff;
}

.spa-packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.spa-package-card {
    position: relative;
    padding: 38px 28px;

    background: #211e19;
    border: 1px solid rgba(198, 166, 107, 0.25);

    display: flex;
    flex-direction: column;

    transition: 0.3s ease;
}

.spa-package-card:hover {
    border-color: #c6a66b;
    transform: translateY(-6px);
}

.spa-package-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 29px;
    font-weight: 500;
    color: #ffffff;
    margin: 10px 0 15px;
}

.spa-package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #c6a66b;
    margin-bottom: 25px;
}

.spa-package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.spa-package-card li {
    position: relative;
    padding: 9px 0 9px 18px;

    font-size: 12px;
    line-height: 1.5;
    color: #b7afa5;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spa-package-card li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 10px;
    color: #c6a66b;
    font-size: 8px;
}

.spa-package-card > a {
    display: block;
    text-align: center;

    padding: 14px 15px;

    border: 1px solid #c6a66b;
    color: #c6a66b;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.spa-package-card > a:hover {
    background: #c6a66b;
    color: #171512;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .spa-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .massage-menu {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 35px;
        margin-bottom: 70px;
    }

    .massage-item {
        padding: 18px;
    }

    .massage-item h3 {
        font-size: 19px;
    }

    .massage-item strong {
        font-size: 24px;
    }

    .spa-packages-title h2 {
        font-size: 36px;
    }

    .spa-packages-grid {
        grid-template-columns: 1fr;
    }

    .spa-package-card {
        padding: 32px 25px;
    }
}
/* =========================================
   TESTIMONIALS
========================================= */

.testimonials {
    padding: 100px 8%;
    background: #1b1916;
}

.testimonials-grid {
    max-width: 1100px;
    margin: 55px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    padding: 38px 30px;

    background: #211e19;
    border: 1px solid rgba(198, 166, 107, 0.22);

    text-align: center;

    transition: 0.3s ease;
}

.testimonial-card:hover {
    border-color: #c6a66b;
    transform: translateY(-5px);
}

.stars {
    color: #c6a66b;
    font-size: 15px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.testimonial-card p {
    font-family: 'Cormorant Garamond', serif;

    color: #d8d0c5;
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;

    margin-bottom: 25px;
}

.testimonial-card h3 {
    color: #c6a66b;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* MOBILE */

@media (max-width: 750px) {

    .testimonials {
        padding: 75px 6%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        padding: 30px 22px;
    }
}
.gallery-masaj {
    background:
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
        url("images/masaj.jpeg") center center / cover no-repeat !important;
}
.gallery-hamam {
    background:
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
        url("images/turk-hamami.jpeg") center center / cover no-repeat !important;
}
.gallery-sauna {
    background:
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
        url("images/sauna.jpeg") center center / cover no-repeat !important;
}
.gallery-relax {
    background:
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
        url("images/dinlenme.jpeg") center center / cover no-repeat !important;
}
.testimonials {
    display: none;
}