/* ══════════════════════════════════════════
   Oh Snap! Photo Booths — Main Stylesheet
   Optimized for Pinegrow visual editing
   ══════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #111111;
    --white: #FFFFFF;
    --gray-light: #F6F6F6;
    --gold: #C8A75D;
    --blush: #F6F6F6;
    --gold-light: #D4BA7A;
    --heading: 'Playfair Display', Georgia, serif;
    --heading-bold: 'Bebas Neue', 'Impact', sans-serif;
    --body: 'Montserrat', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

/* ─── NAV ─── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.site-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 32px;
}

.nav-logo img {
    height: 68px;
    width: auto;
}

.nav-logo {
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 0 !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    transition: background 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        transform: translateY(-120%);
        transition: transform 0.3s;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        transform: translateY(0);
    }
}

/* ─── PAGES ─── */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ─── SECTIONS ─── */
section {
    padding: 20px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ─── HERO (Split Layout) ─── */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 76px;
}

@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

.hero-image {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

.hero-image-placeholder {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--body);
    border-radius: 2px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
}

@media (max-width: 768px) {
    .hero-text {
        padding: 48px 24px;
    }
}

.hero-text h1 {
    font-family: var(--heading-bold);
    font-size: clamp(48px, 7vw, 80px);
    line-height: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--black);
}

.hero-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 480px;
    margin-bottom: 36px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--black);
}

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

/* ─── TRUST STRIP ─── */
.trust-strip {
    background: var(--black);
    padding: 48px 32px;
    color: var(--white);
}

.trust-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.trust-item .trust-number {
    font-family: var(--heading-bold);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 4px;
}

.trust-item .trust-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ─── SECTION HEADERS ─── */
.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--heading-bold);
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.0;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title-elegant {
    font-family: var(--heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    line-height: 1.7;
}

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

.text-center .section-subtitle {
    margin: 0 auto;
}

/* ─── BOOTH CARDS ─── */
.booth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .booth-grid {
        grid-template-columns: 1fr;
    }
}

.booth-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.booth-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.booth-card.featured {
    border: 2px solid var(--gold);
}

.booth-card-image {
    height: 280px;
    background: var(--gray-light);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booth-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    text-transform: uppercase;
}

.booth-card-content {
    padding: 36px 32px;
}

.booth-card-content h3 {
    font-family: var(--heading-bold);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.booth-card-content .price {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.booth-card-content p {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
}

.booth-card-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.booth-card-content ul li {
    padding: 7px 0;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding-left: 24px;
    position: relative;
}

.booth-card-content ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ─── FEATURES GRID ─── */
.features-section {
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-tile {
    background: var(--white);
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.feature-tile h4 {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-tile p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ─── IMAGE STRIP ─── */
.image-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
}

@media (max-width: 600px) {
    .image-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-strip .strip-item {
    height: 450px;
    background: var(--gray-light);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
    overflow: hidden;
}

.image-strip .strip-item:hover {
    transform: scale(1.02);
    z-index: 1;
}

/* ─── PACKAGE PREVIEW ─── */
.package-preview {
    background: var(--black);
    color: var(--white);
}

.package-preview .section-label {
    color: var(--gold);
}

.package-preview .section-title {
    color: var(--white);
}

.package-preview .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

.preview-card {
    border: 1px solid rgba(255,255,255,0.12);
    padding: 48px 40px;
    transition: border-color 0.3s;
}

.preview-card:hover {
    border-color: var(--gold);
}

.preview-card h3 {
    font-family: var(--heading-bold);
    font-size: 28px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.preview-card .price-tag {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.preview-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 28px;
}

/* ─── REVIEWS ─── */
.reviews-section {
    background: var(--blush);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}

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

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

.review-card blockquote {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.review-card cite {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    font-style: normal;
    letter-spacing: 0.5px;
}

/* ─── ABOUT SPLIT ─── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

@media (max-width: 768px) {
    .about-split {
        grid-template-columns: 1fr;
    }
}

.about-image {
    background: var(--white);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text-block {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .about-text-block {
        padding: 48px 24px;
    }
}

.about-text-block p {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
}

.about-text-block .owner-name {
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

/* ─── CTA BANNER ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
    text-align: center;
}

.cta-banner .section-title {
    color: var(--white);
}

.cta-banner p {
    color: rgba(255,255,255,0.65);
    max-width: 550px;
    margin: 0 auto 36px;
}

/* ─── COMPARISON TABLE ─── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 48px;
    font-size: 14px;
}

.comparison-table th {
    font-family: var(--heading-bold);
    font-size: 18px;
    text-transform: uppercase;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--black);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: #444;
}

.comparison-table tr:hover {
    background: var(--gray-light);
}

.check {
    color: var(--gold);
    font-weight: 700;
}

.dash {
    color: #ccc;
}

/* ─── EVENT GRID ─── */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

@media (max-width: 600px) {
    .event-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.event-tile {
    position: relative;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-light);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: transform 0.3s;
}

.event-tile:hover {
    transform: scale(1.02);
}

.event-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
}

.event-tile h4 {
    position: relative;
    z-index: 1;
    font-family: var(--heading-bold);
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── GALLERY ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 48px;
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    background: var(--gray-light);
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    background-size: cover;
    background-position: center;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.gallery-filters button {
    background: none;
    border: 2px solid var(--black);
    padding: 8px 24px;
    font-family: var(--body);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.gallery-filters button:hover,
.gallery-filters button.active {
    background: var(--black);
    color: var(--white);
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    font-family: var(--body);
    font-size: 14px;
    margin-bottom: 20px;
    transition: border-color 0.2s;
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-info-block h3 {
    font-family: var(--heading-bold);
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail .detail-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    margin-bottom: 4px;
}

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

.contact-detail a {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    transition: color 0.2s;
}

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

/* ─── SOCIAL ICONS ─── */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.2s;
}

.social-icons a:hover {
    background: var(--gold);
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: 64px 32px 32px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand .footer-logo {
    margin-bottom: 16px;
}

.footer-brand .footer-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

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

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    text-align: center;
}

/* ─── UTILITY ─── */
.mt-60 {
    margin-top: 60px;
}

.bg-light {
    background: var(--gray-light);
}

.bg-blush {
    background: var(--blush);
}

.page {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sub-page hero */
.page-hero {
    padding: 160px 32px 80px;
    text-align: center;
    background: linear-gradient(170deg, var(--white) 0%, var(--gray-light) 100%);
}

.page-hero.blush {
    background: linear-gradient(170deg, var(--white) 0%, var(--blush) 100%);
}

.page-hero h1 {
    font-family: var(--heading-bold);
    font-size: clamp(36px, 5vw, 60px);
    text-transform: uppercase;
    line-height: 1.0;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 17px;
    color: #555;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* ─── FORM SUCCESS STATE ─── */
#formSuccess {
    text-align: center;
    padding: 40px 20px;
}

#formSuccess h3 {
    font-family: var(--heading-bold);
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#formSuccess p {
    color: #666;
    font-size: 15px;
}

/* ─── QUICK RESPONSE BOX ─── */
.quick-response-box {
    margin-top: 32px;
    padding: 28px;
    background: var(--gray-light);
}

.quick-response-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.quick-response-box strong {
    color: var(--black);
}
