/* 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;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    letter-spacing: 4px;
}

/* 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;
    color: rgba(255,255,255,0.65);
    letter-spacing: 2px;
}

/* 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;
}

/* CARD */
.card {
    border: none;
    border-radius: 40px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card:hover img {
    transform: scale(1.05);
}

/* 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: #fff;
    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;
}

/* CONTACT */
.contact {
    text-align: center;
    padding: 60px;
    background: #111;
    color: white;
}

/* 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;
    top: 90px;
    left: 20px;

    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: 9999;
    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);
}

/* MOBILE */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .card {
        border-radius: 25px;
    }
}

.massage-hero {
    text-align: center;
    padding: 80px 20px 40px;
}

.massage-hero h1 {
    font-size: 52px;
}

.subtitle {
    margin-top: 10px;
    letter-spacing: 3px;
    color: #777;
}

/* LAYOUT PRINCIPAL */
.massage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    align-items: start;
}

/* IMAGINE */
.massage-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

/* CARD TEXT */
.massage-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box {
    background: #f6f3ef;
    padding: 20px;
    border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .massage-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .massage-hero h1 {
        font-size: 36px;
    }
}

/* BOX STANDARD */
.box {
    padding: 20px;
    border-radius: 20px;
}

.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);
}

/* TITLURI */
.box h3 {
    color: #b38b00;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 400;
}

