/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header with Slider */
.header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Hero content with overlay for readability */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 60px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.3rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-name {
    display: none;
    margin-left: 6px;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: 0.3px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-left: auto;
}

/* Inline icons for navigation links */
.nav-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Desktop: keep icon and text perfectly aligned */
nav ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

nav ul li a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    nav ul li a {
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    nav ul {
        margin-left: 0;
    }
}

@media (min-width: 1024px) {
    .brand-name {
        display: inline-flex;
        align-items: center;
        font-size: 1.05rem;
    }
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

/* Burger button */
.menu-toggle {
    display: none;
    position: relative;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.menu-toggle .bar {
    position: absolute;
    width: 26px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: transform 300ms ease, opacity 300ms ease, top 300ms ease;
}

.menu-toggle .bar:nth-child(1) {
    top: 13px;
}

.menu-toggle .bar:nth-child(2) {
    top: 20px;
}

.menu-toggle .bar:nth-child(3) {
    top: 27px;
}

nav.open .menu-toggle .bar:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

nav.open .menu-toggle .bar:nth-child(2) {
    opacity: 0;
}

nav.open .menu-toggle .bar:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

/* Parallax Sections */
.parallax {
    height: 86vh;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

nav+.parallax {
    margin-top: 70px;
}

nav+.header {
    margin-top: 70px;
}

.portraits-page nav+.header {
    margin-top: 0;
}

.onlyfans-page .parallax {
    height: 78vh;
    background-position: top center;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.parallax.no-overlay::before {
    background: none;
}

/* No overlay for discounts hero — keep image clear */
.discounts-hero::before {
    background: none;
}

/* Promo Discounts CTA block */
.promo-discounts {
    height: 60vh;
}

.promo-discounts::before {
    background: rgba(0, 0, 0, 0.25);
    /* subtle darkening for text legibility */
}

.promo-discounts .parallax-content {
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: 18px;
    padding: 22px 26px;
    text-align: center;
    backdrop-filter: blur(2px);
}

.promo-discounts .parallax-content h2 {
    margin: 0 0 8px;
    font-size: 2.2rem;
    text-shadow: none;
}

.promo-discounts .parallax-content p {
    margin: 0 0 16px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 12px 18px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 200ms ease, background 200ms ease;
}

.cta-button:hover,
.cta-button:focus {
    background: #7e3aa3;
    transform: translateY(-1px);
    outline: none;
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.parallax-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Love Story Hero Adjustments */
.love-story-hero {
    justify-content: flex-start !important;
}

.love-story-hero .parallax-content {
    text-align: left;
    margin-left: 8%;
    transform: translateY(40%);
}

/* Franchise CTA spacing */
#promo-franchise .parallax-content p {
    margin: 0 0 18px;
}

#promo-franchise .cta-button {
    margin-top: 6px;
}

/* Discounts hero: use capsule like on homepage */
.discounts-hero .parallax-content {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 16px;
    padding: 18px 22px;
}

.discounts-hero .parallax-content h2,
.discounts-hero .parallax-content p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Content Sections */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-bridge {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bridge-inner {
    max-width: 880px;
}

.bridge-inner p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.cta-row {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.process-step {
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 22px;
    text-align: center;
    cursor: default;
}

.process-step .step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    color: #6b7280;
}

.process-step h3 {
    font-size: 1.12rem;
    color: #1f2937;
    margin: 6px 0 8px;
}

.process-step p {
    font-size: 0.98rem;
    color: #485056;
    line-height: 1.6;
}

.process-step:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* Override for About section paragraphs: classic left-aligned text */
#about p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

/* Discounts page: left-aligned reading layout */
.discounts h2,
.discounts h3,
.discounts h4 {
    text-align: left;
}

.discounts p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.discounts hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

.franchise h2,
.franchise h3,
.franchise h4 {
    text-align: left;
}

.franchise p,
.franchise ul {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.franchise .franchise-list {
    list-style: disc;
    padding-left: 20px;
}

/* Discounts table styling */
.discount-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 800px;
    margin: 20px auto;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.discount-table thead th {
    background: #eef6ff;
    color: #2c3e50;
}

.discount-table th,
.discount-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.discount-table tbody tr:last-child td {
    border-bottom: none;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card a.service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    text-align: left;
    margin: 0;
    max-width: none;
}

/* Service header: icon inline with title */
.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-header h3 {
    margin: 0;
}

/* Accent color variable */
:root {
    --accent: #9b59b6;
}

/* Service icons */
.service-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* Hover effects for service cards */
.service-card:hover .service-icon {
    opacity: 0.9;
    transform: translateY(-1px);
}

.service-card:hover .service-header h3 {
    color: var(--accent);
}

/* Mobile adjustments */
@media (max-width: 400px) {
    .service-icon {
        width: 24px;
        height: 24px;
    }

    .service-header {
        gap: 8px;
    }
}

/* Testimonials */
.testimonials {
    position: relative;
    background: url('images/bg8.png') center/cover fixed no-repeat;
    padding: 80px 20px;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #2c3e50;
}

/* Pricing Section */
#pricing {
    text-align: center;
}

.pricing-details {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f4f4f4;
    border-left: 5px solid #007bff;
}

/* Trust & Compliance Section */
#trust {
    text-align: center;
}

.trust-details {
    max-width: 800px;
    margin: 24px auto;
    padding: 22px;
    background: #f8f9fa;
    border-left: 5px solid var(--accent);
}

.trust-details p {
    text-align: left;
    line-height: 1.7;
}

.trust-details h3 {
    text-align: left;
}

.checks-list {
    text-align: left;
    margin: 16px auto;
    line-height: 1.6;
}

.vaccination-note {
    color: #555;
    margin-top: 12px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-links {
    display: block;
    text-align: center;
    margin-bottom: 12px;
}

.footer-links-primary,
.footer-links-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links-primary {
    margin-bottom: 12px;
}

.footer-links-secondary {
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links-primary a,
.footer-links-secondary a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-secondary h4 {
    width: 100%;
    text-align: center;
    margin: 0 0 6px;
    color: #ffd166;
}

.footer-links-secondary a {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px 12px;
}

.footer-links-secondary a:hover,
.footer-links-secondary a:focus {
    background: rgba(255, 255, 255, 0.14);
}

.footer-links-primary a {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px 12px;
}

.footer-links-primary a:hover,
.footer-links-primary a:focus {
    background: rgba(255, 255, 255, 0.14);
}

.footer-links a {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Improve footer link contrast and accessibility */
footer a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

footer a:hover,
footer a:focus {
    color: #ffd166;
    /* high-contrast accent on dark background */
    outline: none;
}

.footer-sections {
    max-width: 1200px;
    margin: 12px auto 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
}

footer h4 {
    margin: 6px 0 8px;
    font-size: 1.05rem;
    color: #ffd166;
}

.footer-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 12px 18px;
}

.footer-services a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px 12px;
}

.footer-services a:hover,
.footer-services a:focus {
    background: rgba(255, 255, 255, 0.14);
}

.footer-contact p a {
    font-weight: 700;
}

@media (max-width: 768px) {
    .footer-services {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 30px 40px;
    }

    nav ul {
        gap: 20px;
    }

    /* Mobile menu layout */
    .menu-toggle {
        display: inline-flex;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: 20px;
        right: auto;
        width: clamp(280px, 92vw, 480px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        padding: 14px 16px;
        flex-direction: column;
        gap: 12px;
        display: none;
        animation: menuSlideDown 280ms ease forwards;
    }

    nav.open ul {
        display: flex;
    }

    @keyframes menuSlideDown {
        from {
            transform: translateY(-10px);
            opacity: 0;
        }

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

    /* Slightly reduce parallax section height on mobile to avoid long empty gaps */
    .parallax {
        height: 70vh;
        background-attachment: scroll;
        background-position: center top;
    }

    .parallax-content h2 {
        font-size: 2rem;
    }

    /* Promo discounts mobile sizing */
    .promo-discounts {
        height: 80vh;
    }

    .promo-discounts .parallax-content h2 {
        font-size: 1.8rem;
    }

    .promo-discounts .parallax-content p {
        font-size: 1rem;
    }

    /* Discounts page mobile tuning */
    .discounts-hero {
        margin-top: 70px;
        /* compensate fixed nav */
        background-attachment: scroll;
        /* avoid parallax jank on mobile */
        height: 34vh;
        /* smaller hero for mobile */
    }

    .discounts-hero .parallax-content {
        padding: 12px 14px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 12px;
    }

    .discounts-hero .parallax-content h2 {
        line-height: 1.2;
        font-size: 1.35rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .discounts-hero .parallax-content p {
        font-size: 0.95rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .discounts .discount-table {
        font-size: 0.95rem;
    }

    .discounts .discount-table th,
    .discounts .discount-table td {
        padding: 12px 14px;
    }

    /* Mobile-friendly fallback for testimonials parallax */
    .testimonials {
        background-attachment: scroll;
        background-position: center center;
    }
}

@media (max-width: 420px) {
    .parallax {
        height: 42vh;
        background-attachment: scroll;
        background-position: center top;
    }

    .discounts-hero .parallax-content h2 {
        font-size: 1.4rem;
    }

    .discounts-hero .parallax-content p {
        display: none;
        /* hide subheading on very small screens */
    }

    /* Promo discounts very small screens */
    .promo-discounts {
        height: 72vh;
    }
}

/* Gallery */
.gallery-grid {
    column-count: 3;
    column-gap: 18px;
    margin-top: 30px;
}

@media (min-width: 1200px) {
    .gallery-grid {
        column-count: 4;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 520px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    break-inside: avoid;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 240ms ease, opacity 240ms ease;
}

.portraits-page .slide {
    background-position: top center;
}

/* Ensure hero image aligns to the very top without cropping it */
.parallax>img.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 0;
}

.onlyfans-page .gallery-item img {
    object-position: center 30%;
}

.gallery-item:hover img {
    transform: scale(1.03);
    opacity: 0.96;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 30px;
}

.lightbox.open {
    display: flex;
}

.lightbox-image {
    max-width: 92vw;
    max-height: 86vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.footer-services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.footer-services a {
    font-weight: 500;
}

.portraits-page #home.parallax {
    height: 96vh;
}

.portraits-page .section:first-of-type {
    padding-top: 24px;
}

@media (max-width: 768px) {
    .portraits-page #home.parallax {
        height: 82vh;
    }
}

@media (max-width: 420px) {
    .portraits-page #home.parallax {
        height: 74vh;
    }
}

@media (min-width: 1024px) {
    .portraits-page .hero-content {
        top: auto;
        left: auto;
        bottom: 7vh;
        right: 6vw;
        transform: none;
        text-align: left;
        padding: 22px 32px;
        max-width: 560px;
    }

    .portraits-page .hero-content h1 {
        font-size: 2.9rem;
    }

    .portraits-page .hero-content p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .home-page .hero-content {
        top: auto;
        left: 6vw;
        bottom: 8vh;
        right: auto;
        transform: none;
        text-align: left;
        padding: 20px 28px;
        max-width: 580px;
    }

    .home-page .hero-content h1 {
        font-size: 3.1rem;
    }

    .home-page .hero-content p {
        font-size: 1.1rem;
    }
}
