/* Reset and base styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400&display=swap');

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    padding-top: 90px; /* Account for fixed header */
    scroll-behavior: smooth;
}

/* Header and Navigation */
header {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #ff1493; /* Hot pink accent */
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff1493;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.8);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(20,0,0,0.9)), url('https://images.unsplash.com/photo-1507924538820-ede94a04019d?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: -90px; /* Counteract body padding for full bleed */
    padding-top: 90px; /* Push content down */
}

.hero h1 {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff1493, #b30059);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
}

.btn:hover {
    background: linear-gradient(45deg, #ff69b4, #d10068);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
    transform: translateY(-2px);
}

/* Overview Section */
.overview {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.section-title .eyebrow {
    color: #ff8fc7;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
    margin-bottom: 0.65rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
    color: #ffd4eb;
    margin-bottom: 0.8rem;
}

.section-title p {
    color: #e8dfe5;
    font-size: 1.05rem;
}

.overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 2rem;
    color: #ff1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 20, 147, 0.1);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.5);
}

.service h3 {
    color: #ff1493;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
}

.service p {
    color: #f2edf1;
}

.hero__content {
    max-width: 900px;
    padding: 1.5rem;
}

.hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffd8ee;
    font-size: 0.8rem;
}

.hero .lead {
    font-size: 1.35rem;
    color: #ffe9f6;
    font-family: 'Cinzel', serif;
}

.hero .sublead {
    color: #f2e7ee;
}

.hero__actions {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 132, 196, 0.8);
}

.btn--ghost:hover {
    background: rgba(255, 20, 147, 0.25);
}

.hero__details {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero__details span {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 20, 147, 0.4);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    color: #fff;
}

.rituals,
.locations,
.cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.ritual-grid,
.location-list,
.assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.ritual-card,
.location,
.assurance-card {
    background: linear-gradient(180deg, rgba(36, 18, 32, 0.9), rgba(20, 15, 22, 0.95));
    border: 1px solid rgba(255, 20, 147, 0.22);
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ritual-card:hover,
.location:hover,
.assurance-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 20, 147, 0.55);
    box-shadow: 0 16px 30px rgba(255, 20, 147, 0.2);
}

.ritual-card img,
.location img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    filter: brightness(0.85) contrast(1.1);
}

.ritual-card h3,
.location h3,
.assurance-card h3 {
    color: #ff96cc;
    margin-bottom: 0.6rem;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
}

.ritual-card p,
.location p,
.assurance-card p {
    color: #f1e8ee;
}

.assurance {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 4rem;
}

.cta {
    padding-top: 0;
}

.cta__content {
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 16px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(90, 27, 63, 0.72), rgba(18, 13, 20, 0.95));
}

.cta__content h2 {
    color: #ffe6f5;
    font-family: 'Cinzel', serif;
    margin-bottom: 0.75rem;
    font-size: 2rem;
}

.cta__content p {
    color: #f1e6ed;
    max-width: 620px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Forms (for booking and contact) */
form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 20, 147, 0.2);
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background-color: rgba(42, 42, 42, 0.8);
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    transition: border-color 0.3s;
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 8px rgba(255, 20, 147, 0.3);
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

form button {
    background: linear-gradient(45deg, #ff1493, #b30059);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

form button:hover {
    background: linear-gradient(45deg, #ff69b4, #d10068);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
    transform: scale(1.02);
}

form .btn-small {
    width: auto;
    padding: 0.8rem 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .overview {
        padding: 2rem 1rem;
    }

    .section-title h2 {
        font-size: 1.65rem;
    }

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

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

    .rituals,
    .locations,
    .assurance,
    .cta {
        padding: 2.5rem 1rem;
    }

    .ritual-grid,
    .location-list,
    .assurance {
        grid-template-columns: 1fr;
    }

    .content {
        margin-top: 120px;
        padding: 3rem 1rem;
    }
}

/* Additional page styles */
.content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 88px;
}

.content--spacious {
    margin-top: 0;
    padding-top: 3rem;
}

.content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Cinzel', serif;
    color: #ff1493;
}

.discreet-note {
    background: #2c2c2c;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 5px;
    margin: 2rem 0;
    text-align: center;
}

.discreet-note p {
    color: #ffeaa7;
    font-style: italic;
}

.services-page .section-title {
    margin-bottom: 1.5rem;
}

.services--featured {
    margin-top: 2rem;
}

.service-media {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    filter: brightness(0.85) contrast(1.06);
}

.feature-list {
    margin-top: 1rem;
    text-align: left;
    padding-left: 1.2rem;
    color: #f1e7ee;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.assurance--inline {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2rem;
}

.cta__content--services {
    margin-top: 0.5rem;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.gallery-page {
    max-width: 1300px;
}

.gallery-grid--premium {
    gap: 1.25rem;
}

.gallery-card {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 20, 147, 0.2);
    background: #151515;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.gallery-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(12%);
}

.gallery-img:hover {
    transform: scale(1.08);
    filter: grayscale(0%);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

.gallery-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
}

/* Age Modal Styles */
#age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.8s ease-out;
}

.modal-content {
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.modal-content h2 {
    color: #ff1493;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ccc;
}

.modal-content button {
    background: linear-gradient(45deg, #ff1493, #b30059);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    margin: 0 1rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.modal-content button:hover {
    background: linear-gradient(45deg, #ff69b4, #d10068);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.modal-content button:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility Focus Indicators */
*:focus-visible {
    outline: 2px solid #ff1493;
    outline-offset: 4px;
}

/* Lightbox Styles */
#lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

#lightbox-modal img {
    max-width: 90%;
    max-height: 90vh;
    border: 2px solid #ff1493;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#lightbox-modal.active img {
    transform: scale(1);
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
}

#lightbox-close:hover {
    color: #ff1493;
}

/* Loading State for Buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff1493;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    transition: transform 0.3s, background 0.3s, opacity 0.3s;
}

#back-to-top:hover {
    background: #d10068;
    transform: translateY(-5px);
}

#back-to-top.visible {
    display: flex;
    animation: fadeIn 0.3s;
}

/* Form Validation & Captcha */
input.invalid, select.invalid, textarea.invalid {
    border-color: #ff4444 !important;
    box-shadow: 0 0 5px rgba(255, 68, 68, 0.4) !important;
}

input.valid, select.valid, textarea.valid {
    border-color: #00C851 !important;
}

.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: -0.8rem;
    margin-bottom: 0.8rem;
    display: none;
    text-align: left;
}

.error-message.visible {
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(20,0,0,0.9)), url('https://images.unsplash.com/photo-1514525253440-b393452e8d26?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    margin-top: 2rem;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.8s;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #ffe6f5;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
}

.testimonial-author {
    color: #ff1493;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-controls {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.control-dot.active {
    background: #ff1493;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.4);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(255, 20, 147, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #ff1493;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 1.2rem;
    color: #e0e0e0;
    border-top: 1px solid rgba(255, 20, 147, 0.1);
}

/* Reviews Page Grid */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(30, 30, 30, 0.6);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 20, 147, 0.5);
}

.review-card p {
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
    line-height: 1.6;
}

.review-card .author {
    color: #ff1493;
    font-weight: bold;
    text-align: right;
    font-style: normal;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Page Styles */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    margin-bottom: 1.5rem;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(30, 30, 30, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 20, 147, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: rgba(255, 20, 147, 0.4);
}

.about-card h3 {
    color: #ff1493;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.about-card ul {
    list-style-position: inside;
    color: #e0e0e0;
}

.about-card ul li {
    margin-bottom: 0.5rem;
}
