/* ==========================================
   PHOTO BOOTH IBIZA — Shared Page Styles
   Dark premium theme · Gold accents
   Used by all landing pages, blog, FAQ, etc.
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #0a0a0a;
    --bg-alt: #111111;
    --bg-card: #1a1a1a;
    --gold: #C9A84C;
    --gold-light: #D4B85A;
    --text: #FFFFFF;
    --text-muted: #999999;
    --text-light: #CCCCCC;
    --border: #2a2a2a;
    --heading: 'Playfair Display', Georgia, serif;
    --body: 'Inter', -apple-system, sans-serif;
    --max-w: 1200px;
    --nav-h: 70px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.3s, background 0.3s; }

/* ── NAV (solid black, always visible) ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h); background: #000; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; border-bottom: 1px solid var(--border);
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--text);
    font-weight: 600; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
}
.nav-logo img { height: 35px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
    color: var(--text-light); text-decoration: none; font-size: 13px;
    font-weight: 400; letter-spacing: 1px; text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }

/* Hamburger */
.nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 30px; height: 24px; position: relative; z-index: 1001;
}
.nav-hamburger span {
    display: block; width: 100%; height: 2px; background: var(--text);
    position: absolute; left: 0; transition: all 0.3s;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 11px; }
.nav-hamburger span:nth-child(3) { top: 22px; }
.nav-hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 25px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    color: var(--text); text-decoration: none; font-size: 18px;
    letter-spacing: 2px; text-transform: uppercase; font-weight: 300;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── BREADCRUMBS ── */
.breadcrumbs {
    margin-top: var(--nav-h); padding: 15px 40px;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
    font-size: 13px; color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .current { color: var(--gold); }

/* ── HERO ── */
.hero {
    position: relative; height: 70vh; min-height: 500px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; background-size: cover;
    background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.85));
}
.hero-content {
    position: relative; z-index: 2; max-width: 800px; padding: 0 30px;
}
.hero-label {
    display: inline-block; font-size: 12px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.hero h1 {
    font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700; line-height: 1.2; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
    font-size: 1.1rem; color: var(--text-light); max-width: 600px;
    margin: 0 auto 30px; font-weight: 300;
}
.hero-rating { font-size: 0.9rem; color: var(--gold); margin-top: 15px; }

/* ── BUTTONS ── */
.btn-gold {
    display: inline-block; padding: 14px 35px; background: var(--gold);
    color: #000; text-decoration: none; font-weight: 600; font-size: 14px;
    letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
    display: inline-block; padding: 14px 35px; border: 1px solid var(--gold);
    color: var(--gold); text-decoration: none; font-weight: 500; font-size: 14px;
    letter-spacing: 1px; text-transform: uppercase; background: transparent;
}
.btn-outline:hover { background: var(--gold); color: #000; }
.btn-row { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 80px 40px; max-width: var(--max-w); margin: 0 auto; }
.section-dark { background: var(--bg-alt); }
.section-dark .section-inner { max-width: var(--max-w); margin: 0 auto; padding: 80px 40px; }
.section-label {
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 15px; font-weight: 500;
}
.section h2 {
    font-family: var(--heading); font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px; line-height: 1.3;
}
.section h2 em, .section-dark h2 em { font-style: italic; color: var(--gold); }
.section-desc {
    color: var(--text-light); font-size: 1.05rem; font-weight: 300;
    max-width: 700px; margin-bottom: 40px;
}
.prose { color: var(--text-light); font-weight: 300; margin-bottom: 18px; font-size: 1rem; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--gold); text-decoration: underline; }

/* ── 3-COLUMN STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.step { text-align: center; padding: 30px; }
.step-num {
    font-family: var(--heading); font-size: 3rem; color: var(--gold);
    opacity: 0.4; line-height: 1; margin-bottom: 15px;
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 30px; }
.feature {
    display: flex; align-items: flex-start; gap: 15px; padding: 20px;
    background: var(--bg-card); border: 1px solid var(--border);
}
.feature-icon {
    flex-shrink: 0; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gold); color: var(--gold); font-size: 1.3rem; opacity: 0.7;
}
.feature h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 5px; }
.feature p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 35px 30px; text-align: center;
}
.pricing-card.featured { border-color: var(--gold); }
.pricing-card h3 { font-family: var(--heading); font-size: 1.3rem; margin-bottom: 5px; }
.pricing-card .price {
    font-size: 2.5rem; font-weight: 700; color: var(--gold); margin: 15px 0;
}
.pricing-card .price-from { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }
.pricing-card ul { list-style: none; text-align: left; margin: 20px 0; }
.pricing-card li {
    padding: 8px 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem; color: var(--text-light); font-weight: 300;
}
.pricing-card li::before { content: "✦ "; color: var(--gold); }

/* ── TESTIMONIAL ── */
.testimonial {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 40px; margin-top: 30px;
}
.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 15px; }
.testimonial blockquote {
    font-family: var(--heading); font-size: 1.15rem; font-style: italic;
    line-height: 1.6; color: var(--text-light); margin-bottom: 20px;
}
.testimonial-author { font-size: 0.9rem; color: var(--gold); font-weight: 500; }
.testimonial-event { font-size: 0.85rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { margin-top: 30px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 25px 0; }
.faq-item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.faq-item p { color: var(--text-light); font-size: 0.95rem; font-weight: 300; }

/* ── ALSO POPULAR (cross-links) ── */
.also-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 30px; }
.also-card {
    background: var(--bg-card); border: 1px solid var(--border);
    overflow: hidden; transition: border-color 0.3s;
}
.also-card:hover { border-color: var(--gold); }
.also-card img { width: 100%; height: 200px; object-fit: cover; }
.also-card-body { padding: 20px; }
.also-card h4 { font-size: 1rem; margin-bottom: 8px; }
.also-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.also-card a {
    color: var(--gold); text-decoration: none; font-size: 0.85rem;
    font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}

/* ── CTA BANNER ── */
.cta-banner {
    text-align: center; padding: 80px 40px;
    background: linear-gradient(135deg, var(--bg-alt), #1a1510);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-banner h2 { font-family: var(--heading); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 15px; }
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p {
    color: var(--text-light); font-size: 1.05rem; font-weight: 300;
    margin-bottom: 30px; max-width: 550px; margin-left: auto; margin-right: auto;
}

/* ── BLOG ARTICLE ── */
.article-header { max-width: 800px; margin: 0 auto; padding: 60px 30px 30px; }
.article-meta {
    font-size: 13px; color: var(--gold); letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 15px;
}
.article-header h1 {
    font-family: var(--heading); font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.3; margin-bottom: 20px;
}
.article-header h1 em { color: var(--gold); font-style: italic; }
.article-intro {
    font-size: 1.1rem; color: var(--text-light); font-weight: 300;
    border-left: 3px solid var(--gold); padding-left: 20px;
}
.article-body { max-width: 800px; margin: 0 auto; padding: 30px 30px 60px; }
.article-body h2 { font-family: var(--heading); font-size: 1.6rem; margin: 50px 0 15px; }
.article-body h2 em { color: var(--gold); font-style: italic; }
.article-body h3 { font-size: 1.15rem; font-weight: 600; margin: 30px 0 10px; }

/* Price table (blog) */
.price-table { width: 100%; border-collapse: collapse; margin: 25px 0; font-size: 0.95rem; }
.price-table th {
    background: var(--bg-card); color: var(--gold); padding: 14px 18px;
    text-align: left; font-weight: 600; border-bottom: 2px solid var(--gold);
    font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
}
.price-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--text-light); font-weight: 300; }
.price-highlight { color: var(--gold) !important; font-weight: 600 !important; }

.callout {
    background: var(--bg-card); border: 1px solid var(--border);
    border-left: 4px solid var(--gold); padding: 25px 30px; margin: 30px 0;
}

/* FAQ accordion (blog) */
.article-faq details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.article-faq summary {
    font-weight: 600; font-size: 1.02rem; cursor: pointer;
    list-style: none; color: var(--text);
}
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::before { content: "+ "; color: var(--gold); }
.article-faq details[open] summary::before { content: "− "; }
.article-faq details p { margin-top: 10px; padding-left: 18px; }

/* ── FOOTER ── */
.footer { padding: 50px 40px; border-top: 1px solid var(--border); text-align: center; }
.footer-nav { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-nav a {
    color: var(--text-muted); text-decoration: none; font-size: 12px;
    letter-spacing: 1px; text-transform: uppercase;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed; bottom: 25px; right: 25px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4); transition: transform 0.3s;
    text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── COOKIE BANNER ── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
    background: var(--bg-card); border-top: 1px solid var(--border);
    padding: 18px 30px; display: none; align-items: center;
    justify-content: center; gap: 15px; flex-wrap: wrap;
    font-size: 0.9rem; color: var(--text-light);
}
.cookie-banner.visible { display: flex; }
.cookie-banner a { color: var(--gold); }
.cookie-btn {
    padding: 8px 20px; font-size: 13px; letter-spacing: 1px;
    text-transform: uppercase; cursor: pointer; border: none; font-weight: 600;
}
.cookie-accept { background: var(--gold); color: #000; }
.cookie-reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
    .also-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .breadcrumbs { padding: 12px 20px; font-size: 12px; }
    .section { padding: 50px 20px; }
    .section-dark .section-inner { padding: 50px 20px; }
    .hero { height: 60vh; min-height: 400px; }
    .steps-grid { grid-template-columns: 1fr; gap: 15px; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 50px 20px; }
    .article-header, .article-body { padding-left: 20px; padding-right: 20px; }
    .price-table { font-size: 0.85rem; }
    .price-table th, .price-table td { padding: 10px 12px; }
    .footer { padding: 40px 20px; }
    .footer-nav { gap: 12px; }
}
