/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* BASE */
body {
    font-family: 'Inter', sans-serif;
    color: #111;
    background: #fff;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}


/* PROMO */
.promo {
    background: gold;
    text-align: center;
    padding: 12px;
    font-weight: 500;
}


/* NAV */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.9);
    padding: 20px 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 1000;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    letter-spacing: 3px;
}

.logo small {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    margin-top: 2px;
}


/* BURGER */
.burger {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 28px;
    cursor: pointer;

    z-index: 2000;
}


/* HERO */
.hero {
    height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
    linear-gradient(
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.4)
    ),
    url('https://images.unsplash.com/photo-1686259881379-084a418cba05?q=80&w=1170&auto=format&fit=crop');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
}

.hero h1 {
    font-size: 64px;
}

.hero-subtitle {
    margin-top: 10px;

    font-size: 18px;
    letter-spacing: 5px;

    color: rgba(255,255,255,0.85);
}

.hero-small {
    margin-top: 30px;

    font-size: 14px;
    letter-spacing: 2px;

    color: rgba(255,255,255,0.65);
}


/* SECTIONS */
.section {
    padding: 100px 20px;
}

.section h2 {
    text-align: center;

    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 300;

    margin-bottom: 50px;

    letter-spacing: 3px;

    position: relative;
}

.section h2::before,
.section h2::after {
    content: "";

    position: absolute;
    left: 50%;

    transform: translateX(-50%);

    background: gold;
}

.section h2::before {
    width: 40px;
    height: 1px;
    top: -15px;
}

.section h2::after {
    width: 80px;
    height: 1px;
    bottom: -15px;
}


/* GRID */
.grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    padding: 40px;

    max-width: 1100px;

    margin: 0 auto;
}


/* =========================================
   SERVICE CARDS
========================================= */

.card {
    position: relative;

    border: none;

    border-radius: 40px;

    overflow: hidden;

    text-decoration: none;

    cursor: pointer;

    display: block;

    background: #111;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* IMAGE */

.card img {
    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


/* NO IMAGE GRADIENT */

.card::after {
    content: none;
}


/* CARD INFORMATION */

.card-info {
    position: absolute;

    left: 25%;
    right: 30px;
    bottom: 25%;

    z-index: 2;

    color: black;
}


/* SERVICE NAME */

.card-info h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 40px;

    font-weight: 400;

    margin-bottom: 10px;

    color: black;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}


/* PRICE + DURATION */

.card-price {
    font-family: 'Inter', sans-serif;

    font-size: 14px;

    letter-spacing: 1px;

    margin-bottom: 10px;

    color: black;
}


/* DETAILS */

.card-details {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: black;

    opacity: 0.8;

    transition:
        opacity 0.3s ease,
        gap 0.3s ease;
}

.card-details span {
    font-size: 17px;

    transition:
        transform 0.3s ease;
}


/* HOVER */

.card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.16);
}

.card:hover img {
    transform: scale(1.05);
}

.card:hover .card-details {
    opacity: 1;

    gap: 11px;
}

.card:hover .card-details span {
    transform: translateX(4px);
}


/* BUTTON */
.btn {
    display: inline-block;

    margin-top: 25px;

    padding: 14px 34px;

    font-size: 14px;

    letter-spacing: 2px;

    text-transform: uppercase;

    border: 1px solid gold;

    color: gold;

    text-decoration: none;

    transition:
        all 0.3s ease;

    cursor: pointer;

    background: transparent;
}

.btn:hover {
    background: gold;

    color: #111;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.2);
}


/* =========================================
   SUBSCRIPTIONS
========================================= */

.subscription-card {
    border: none;

    border-radius: 30px;

    padding: 30px;

    text-align: center;

    background: #E6DCD0;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.subscription-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.12);
}

.subscription-card h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 26px;

    margin-bottom: 10px;

    font-weight: 400;
}

.subscription-card p {
    color: #666;

    font-size: 16px;
}

.price {
    font-size: 28px;

    color: gold;

    margin-top: 10px;
}


/* =========================================
   EXPERIENCE
========================================= */

.experience {
    max-width: 900px;

    margin: 0 auto;

    padding: 100px 30px;

    text-align: center;
}

.experience h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 46px;

    font-weight: 300;

    letter-spacing: 3px;

    margin-bottom: 50px;

    position: relative;
}

.experience h2::before,
.experience h2::after {
    content: "";

    position: absolute;
    left: 50%;

    transform: translateX(-50%);

    background: gold;
}

.experience h2::before {
    width: 40px;
    height: 1px;
    top: -15px;
}

.experience h2::after {
    width: 80px;
    height: 1px;
    bottom: -15px;
}

.experience p {
    font-family: 'Inter', sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: #555;

    max-width: 650px;

    margin: 0 auto;
}


/* CONTACT */
.contact {
    text-align: center;

    padding: 60px;

    background: #111;

    color: white;
}

.contact a {
    color: white;

    text-decoration: none;

    display: inline-block;

    margin-top: 10px;
}


/* CTA */
.cta {
    text-align: center;

    padding: 100px;

    background: #111;

    color: #fff;
}


/* MENU */
.menu {
    position: fixed;

    top: 0;

    right: -100%;

    width: 250px;

    height: 100vh;

    background: #111;

    display: flex;

    flex-direction: column;

    padding-top: 100px;

    transition: 0.4s;

    z-index: 1500;
}

.menu a {
    color: white;

    padding: 15px 30px;

    text-decoration: none;

    font-size: 18px;
}

.menu a:hover {
    background: gold;

    color: black;
}

.menu.active {
    right: 0;
}


/* WHATSAPP */
.whatsapp-float {
    position: fixed;

    width: 60px;
    height: 60px;

    bottom: 25px;
    right: 25px;

    background: #25D366;

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 32px;

    text-decoration: none;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.25);

    z-index: 9999;

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* PROMO BADGE */
.promo-badge {
    position: fixed;

    bottom: 25px;
    left: 25px;

    display: inline-block;

    padding: 10px 18px;

    background: gold;

    color: #111;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-radius: 50px;

    box-shadow:
        0 10px 25px rgba(255,215,0,0.3);

    animation: pulse 2s infinite;

    z-index: 1100;

    cursor: pointer;
}


/* SERVICES BACKGROUND */
#services {
    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #f6f3ef
        );
}


/* ANIMATION */
.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition: 1s;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* SEO SERVICES
   Păstrat momentan în CSS, dar secțiunea a fost scoasă din HTML.
*/

.seo-services {
    max-width: 900px;

    margin: 40px auto;

    text-align: center;
}

.seo-services > p {
    margin-top: -20px;
}

.seo-links {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    justify-content: center;

    margin-top: 20px;
}

.seo-links a {
    color: #111;

    text-decoration: none;

    border-bottom: 1px solid #ccc;

    padding-bottom: 3px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.seo-links a:hover {
    color: #b38b00;

    border-color: #b38b00;
}


/* MASSAGE PAGE */
.massage-hero {
    text-align: center;

    padding: 80px 20px 40px;
}

.massage-hero h1 {
    font-size: 52px;
}

.subtitle {
    margin-top: 10px;

    letter-spacing: 3px;

    color: #777;
}


/* MASSAGE LAYOUT */
.massage-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    max-width: 1100px;

    margin: 0 auto;

    padding: 40px;

    align-items: start;
}


/* MASSAGE IMAGE */
.massage-image img {
    width: 100%;

    border-radius: 30px;

    object-fit: cover;
}


/* MASSAGE CARD */
.massage-card {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


/* BOX */
.box {
    padding: 20px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #fff7e0,
            #f6f3ef
        );

    border-left: 4px solid gold;

    transition: 0.3s ease;
}

.box:hover {
    transform: translateY(-3px);
}


/* BOX TITLES */
.box h3 {
    color: #b38b00;

    letter-spacing: 1px;

    margin-bottom: 10px;

    font-weight: 400;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

        .logo {
        font-size: 25px;
        letter-spacing: 2px;
    }

    .logo small {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero {
        height: 80vh;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 15px;

        letter-spacing: 3px;
    }

    .section {
        padding: 70px 15px;
    }

    .section h2 {
        font-size: 38px;
    }


    /* SERVICE GRID */

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

        padding: 20px;

        gap: 20px;
    }


    /* SERVICE CARD */

    .card {
        border-radius: 25px;
    }

    .card-info {
        left: 20px;

        right: 20px;

        bottom: 18px;
    }

    .card-info h3 {
        font-size: 35px;

        text-underline-offset: 5px;
    }

    .card-price {
        font-size: 13px;

        margin-bottom: 8px;
    }

    .card-details {
        font-size: 11px;

        letter-spacing: 1.3px;
    }


    /* EXPERIENCE */

    .experience {
        padding: 70px 20px;
    }

    .experience h2 {
        font-size: 38px;

        margin-bottom: 40px;
    }

    .experience p {
        font-size: 14px;
    }


    /* CTA */

    .cta {
        padding: 70px 20px;
    }


    /* CONTACT */

    .contact {
        padding: 50px 20px;
    }


    /* MASSAGE PAGE */

    .massage-wrapper {
        grid-template-columns: 1fr;

        padding: 20px;
    }

    .massage-hero h1 {
        font-size: 36px;
    }
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #777;
    background: #fff;
}