/*
Theme Name: 3 Foot Massage Luxury
Theme URI: https://3footmassage.com
Description: Luxury Dark theme for 3 Foot Massage — upscale, elegant, olive-on-black design with sharp corners and refined typography.
Version: 1.0.0
Author: 3 Foot Massage
Text Domain: threefootmassage-luxury
*/

/* ── Reset & Base ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark: #141414;
    --card: #1a1a1a;
    --border: #2a2a2a;
    --gold: #7a8e45;
    --gold-light: #8fa850;
    --text: #e8e8e8;
    --dim: #888888;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navigation ───────────────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.site-nav.scrolled {
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

.btn-reserve {
    display: inline-block;
    padding: 10px 28px;
    background: var(--gold);
    color: var(--black);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-reserve:hover {
    background: var(--gold-light);
    color: var(--black);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero Section ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: var(--black);
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    border: 1px solid var(--border);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border: 1px solid rgba(42, 42, 42, 0.4);
    border-radius: 50%;
}

.hero-decoration::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 1px solid rgba(42, 42, 42, 0.6);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
}

.hero-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--dim);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
}

.btn-ghost {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
    border-radius: 0;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-ghost:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero video background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video,
.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-bg .hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-video-bg .hero-poster-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero.has-video .hero-decoration {
    border-color: rgba(255,255,255,0.1);
}

.hero.has-video .hero-decoration::before {
    border-color: rgba(255,255,255,0.05);
}

.hero.has-video .hero-decoration::after {
    border-color: rgba(255,255,255,0.07);
}

/* Video plays on all screen sizes including mobile */

/* ── Section Shared ───────────────────────────────────────────────── */
.section {
    padding: 100px 0;
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--dim);
    max-width: 560px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 60px;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.gold-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.section-header-center .gold-line {
    margin-left: auto;
    margin-right: auto;
}

/* ── About Section ────────────────────────────────────────────────── */
.about {
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text p {
    color: var(--dim);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-features li {
    font-size: 14px;
    color: var(--text);
    padding-left: 20px;
    position: relative;
}

.about-features li::before {
    content: '\u25C7';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
    top: 3px;
}

/* ── Services Section ─────────────────────────────────────────────── */
.services {
    background: var(--dark);
}

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

.service-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px 32px 32px;
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(122, 142, 69, 0.3);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    margin-bottom: 16px;
    user-select: none;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.service-desc {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-prices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.service-price-duration {
    color: var(--dim);
}

.service-price-amount {
    color: var(--gold);
    font-weight: 600;
}

/* ── Reviews Section ──────────────────────────────────────────────── */
.reviews {
    background: var(--black);
}

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

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px 32px 32px;
    border-radius: 0;
}

.review-quote {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 8px;
    user-select: none;
}

.review-text {
    font-size: 15px;
    font-style: italic;
    color: var(--dim);
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Contact Section ──────────────────────────────────────────────── */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    border-radius: 0;
}

.contact-item-label {
    font-size: 12px;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 16px;
    color: var(--text);
}

.contact-item-value a {
    color: var(--text);
    text-decoration: none;
}

.contact-item-value a:hover {
    color: var(--gold);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ── CTA Section ──────────────────────────────────────────────────── */
.cta {
    background: var(--black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 80px 0;
}

.cta .section-title {
    margin-bottom: 16px;
}

.cta .section-subtitle {
    margin: 0 auto 36px;
}

.cta .gold-line {
    margin: 0 auto 20px;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-info p {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--dim);
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-decoration {
        width: 320px;
        height: 320px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 72px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
