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

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Sparkle Effect */
.sparkle-container {
    position: relative;
    display: inline-block;
}

.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f1c40f'%3E%3Cpath d='M12 0L14.59 8.41L23 12L14.59 15.59L12 24L9.41 15.59L1 12L9.41 8.41L12 0Z'/%3E%3C/svg%3E");
    background-size: contain;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    animation: sparkle 1.5s linear infinite;
}

.sparkle:nth-child(1) { top: -10px; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 20%; right: -5px; animation-delay: 0.3s; }
.sparkle:nth-child(3) { bottom: -5px; left: 20%; animation-delay: 0.6s; }
.sparkle:nth-child(4) { top: 40%; left: 0px; animation-delay: 0.9s; }
.sparkle:nth-child(5) { top: 50%; right: 10%; animation-delay: 1.2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.contact-container img {
    height: 70%;
    width: 100%;
    object-fit: cover; /* Prevents the image from looking stretched or squashed */
}

/* Moon and Stars Background - Pink and Purple Theme */
.moon-stars-bg {
    position: relative;
    overflow: hidden;
}

.moon-stars-bg::before,
.moon-stars-bg::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Pink Moon */
.moon-stars-bg::before {
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.25A9.75 9.75 0 1021.75 12 9.76 9.76 0 0012 2.25zm0 18A8.25 8.25 0 1120.25 12 8.25 8.25 0 0112 20.25z' fill='%23e83e8c' opacity='0.6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    top: 15px;
    right: 15px;
    animation: float 6s ease-in-out infinite;
}

/* Purple Stars */
.moon-stars-bg::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0L14.59 8.41L23 12L14.59 15.59L12 24L9.41 15.59L1 12L9.41 8.41L12 0Z' fill='%239c27b0' opacity='0.4'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0L14.59 8.41L23 12L14.59 15.59L12 24L9.41 15.59L1 12L9.41 8.41L12 0Z' fill='%23e83e8c' opacity='0.3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0L14.59 8.41L23 12L14.59 15.59L12 24L9.41 15.59L1 12L9.41 8.41L12 0Z' fill='%238e44ad' opacity='0.2'/%3E%3C/svg%3E");
    background-position: 
        calc(100% - 60px) 20px,
        30px 50px,
        80% 85%;
    background-size: 
        20px,
        15px,
        25px;
    background-repeat: no-repeat;
}

/* Floating Animation - Slowed Down */
.float {
    animation: float 6s ease-in-out infinite;
}

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

/* Glow Effect */
.glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(232, 62, 140, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(232, 62, 140, 0.7)); }
}

/* Hide any elements at top left that might be causing issues */
*[style*="position: absolute"][style*="top: 0"][style*="left: 0"] {
    display: none !important;
}

/* Animation Delays */
.animation-delay-100 {
    animation-delay: 0.1s;
}
.animation-delay-200 {
    animation-delay: 0.2s;
}
.animation-delay-300 {
    animation-delay: 0.3s;
}
.animation-delay-400 {
    animation-delay: 0.4s;
}
.animation-delay-500 {
    animation-delay: 0.5s;
}
.animation-delay-700 {
    animation-delay: 0.7s;
}
.animation-delay-1000 {
    animation-delay: 1s;
}

:root {
    /* Primary Colors */
    --primary-color: #e83e8c; /* Pink */
    --primary-light: #ff6ba8;
    --primary-dark: #b01e63;
    
    /* Secondary Colors */
    --secondary-color: #9c27b0; /* Purple */
    --secondary-light: #d05ce3;
    --secondary-dark: #6a0080;
    
    /* Neutral Colors */
    --background-color: #f8f0f5; /* Light pink background */
    --text-color: #333333;
    --light-color: #ffffff;
    --dark-color: #1a1a1a;
    
    /* Accent Colors */
    --accent-color: #8e44ad; /* Purple */
    --accent-light: #a569bd;
    --accent-dark: #703688;
    
    /* Spiritual Colors */
    --spiritual-blue: #3498db;
    --spiritual-purple: #9b59b6;
    --spiritual-gold: #f1c40f;
    
    /* Font Families */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Font Sizes */
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --h4-size: 1.25rem;
    --body-size: 1rem;
    --small-size: 0.875rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Box Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-weight: 300;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    min-width: 320px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('images/spiritual-bg.svg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header Styles */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.tagline {
    font-size: var(--small-size);
    color: var(--secondary-color);
    font-style: italic;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: var(--spacing-md);
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
    background-color: rgba(232, 62, 140, 0.1);
}

/* Main Content */
#app {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--body-font);
}

/* PayPal Button */
.paypal-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(to right, #8b5cf6, #ec4899) !important;
    color: white !important;
    padding: 12px 32px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3) !important;
    gap: 12px !important;
    margin: 0 auto !important;
}

.paypal-button:hover {
    background: linear-gradient(to right, #7c3aed, #db2777) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4) !important;
}

.paypal-button i {
    font-size: 24px !important;
}

/* Revolut Button */
.revolut-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(to right, #8b5cf6, #ec4899) !important;
    color: white !important;
    padding: 12px 32px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3) !important;
    gap: 12px !important;
    margin: 0 auto !important;
}

.revolut-button:hover {
    background: linear-gradient(to right, #7c3aed, #db2777) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4) !important;
}

.revolut-button i {
    font-size: 24px !important;
}

/* Responsive Payment Buttons */
@media (max-width: 640px) {
    .paypal-button, .revolut-button {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto 12px auto !important;
    }
    
    .paypal-button:last-child, .revolut-button:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .paypal-button, .revolut-button {
        padding: 10px 24px !important;
        font-size: 16px !important;
    }
    
    .paypal-button i, .revolut-button i {
        font-size: 20px !important;
    }
}

@media (max-width: 360px) {
    .paypal-button, .revolut-button {
        padding: 8px 20px !important;
        font-size: 14px !important;
    }
    
    .paypal-button i, .revolut-button i {
        font-size: 18px !important;
    }
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-color);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Services Section */
.services {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.services h2 {
    margin-bottom: var(--spacing-lg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.moon-stars-bg::before {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.testimonials.moon-stars-bg::before {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
}

.testimonials h2 {
    margin-bottom: var(--spacing-lg);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.testimonial {
    background-color: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 350px;
    position: relative;
    overflow: hidden;
}

.testimonial.moon-stars-bg::before {
    width: 25px;
    height: 25px;
    top: 10px;
    right: 10px;
}

.testimonial:before {
    content: '"';
    font-family: var(--heading-font);
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -20px;
    left: 10px;
    opacity: 0.3;
}

.client-name {
    font-weight: 500;
    color: var(--primary-color);
    text-align: right;
    font-style: italic;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: var(--primary-light);
    color: var(--light-color);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
}

.cta h2 {
    color: var(--light-color);
    margin-bottom: var(--spacing-sm);
}

.cta p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--light-color);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--small-size);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.page-header h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    background-color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.about-content.moon-stars-bg::before {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.medium-portrait {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    max-height: 500px;
    width: 100%;
    object-fit: cover; 
}

.about-portrait {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: 50% 20%; 
  border-radius: 1.5rem; 
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); 
}

.about-text h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.credentials-list {
    margin-bottom: var(--spacing-md);
}

.values {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.values h3 {
    margin-bottom: var(--spacing-lg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
}

.value-card {
    background-color: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.value-card.moon-stars-bg::before {
    width: 25px;
    height: 25px;
    top: 10px;
    right: 10px;
}

.value-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.value-card h4 {
    margin-bottom: var(--spacing-sm);
}

/* Booking Page Styles */
.booking-options {
    margin-bottom: var(--spacing-xl);
}

.booking-options h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.reading-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.reading-card {
    background-color: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reading-card.moon-stars-bg::before {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
}

.reading-card:hover {
    transform: translateY(-5px);
}

.reading-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.reading-icon i {
    font-size: 2rem;
    color: var(--light-color);
}

.reading-card h4 {
    margin-bottom: var(--spacing-xs);
}

.reading-duration, .reading-price {
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.reading-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.reading-description {
    margin-bottom: var(--spacing-md);
}

.select-reading {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-reading:hover {
    background-color: var(--primary-dark);
}

/* Selected reading card styles */
.reading-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.4);
    transform: scale(1.02);
}

.reading-card.selected .select-reading {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.05);
}

/* Form field transitions for simplified readings */
.form-group {
    transition: all 0.3s ease-in-out;
}

.form-group[style*="display: none"] {
    opacity: 0;
    transform: translateY(-10px);
    margin: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
}

/* Simplified reading message styles */
#simplified-reading-message {
    animation: slideIn 0.3s ease-out;
}

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

/* Enhanced form styling for simplified bookings */
.booking-form.simplified .form-group:not([style*="display: none"]) {
    margin-bottom: 1.5rem;
}

.booking-form.simplified .booking-summary {
    margin-top: 2rem;
}

/* Simplified form specific styles */
.booking-form.simplified {
    max-width: 500px;
    margin: 0 auto;
}

.booking-form.simplified .form-group {
    margin-bottom: 1.5rem;
}

.booking-form.simplified .booking-summary {
    background: linear-gradient(135deg, #f3e8ff, #fdf2f8);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(232, 62, 140, 0.1);
}

.booking-form.simplified .paypal-button {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Error message styles */
.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Form Styles */
.booking-form-section, .contact-form-container, .event-registration {
    background-color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.booking-form-section.moon-stars-bg::before,
.contact-form-container.moon-stars-bg::before,
.event-registration.moon-stars-bg::before {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
}

.booking-form-section h3, .contact-form-container h3, .event-registration h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.booking-form, .contact-form, .event-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: var(--body-size);
}

.form-group textarea {
    resize: vertical;
}

.form-group.terms, .form-group.newsletter {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.form-group.terms input, .form-group.newsletter input {
    width: auto;
}

.form-group.terms label, .form-group.newsletter label {
    margin-bottom: 0;
    font-weight: 400;
}

.booking-summary {
    background-color: rgba(232, 62, 140, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-md);
}

.booking-summary h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.booking-info {
    margin-bottom: var(--spacing-xl);
}

.booking-info h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.info-card {
    background-color: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card.moon-stars-bg::before {
    width: 25px;
    height: 25px;
    top: 10px;
    right: 10px;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.info-card h4 {
    margin-bottom: var(--spacing-sm);
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-info.moon-stars-bg::before {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
}

.contact-info h3 {
    margin-bottom: var(--spacing-md);
}

.contact-details {
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: var(--spacing-md);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: var(--spacing-xs);
}

.social-connect {
    margin-top: var(--spacing-lg);
}

.social-connect h4 {
    margin-bottom: var(--spacing-sm);
}

.faq-section {
    margin-bottom: var(--spacing-xl);
}

.faq-section h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background-color: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.faq-item.moon-stars-bg::before {
    width: 25px;
    height: 25px;
    top: 10px;
    right: 10px;
}

.faq-item h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.map-section {
    margin-bottom: var(--spacing-xl);
}

.map-section h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.map-container {
    height: 400px;
    background-color: #eee;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.map-placeholder.moon-stars-bg::before {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Events Page Styles */
.events-filter {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.events-filter h3 {
    margin-bottom: var(--spacing-md);
}

.filter-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.events-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.event-card {
    display: flex;
    margin-bottom: 16px;
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
}

.event-date .month {
    font-size: 1.2rem;
    font-weight: 700;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin: var(--spacing-xs) 0;
}

.event-date .year {
    font-size: 1rem;
}

.event-details {
    padding: var(--spacing-xl);
    flex: 1;
}

.event-details h3 {
    margin-bottom: var(--spacing-md);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    font-size: var(--small-size);
    color: var(--secondary-color);
}

.event-meta i {
    margin-right: var(--spacing-xs);
}

.event-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.event-price {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.2rem;
}

.host-event {
    background-color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.host-event.moon-stars-bg::before {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
}

.host-event h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.host-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
}

.host-image {
    display: flex;
    align-items: center;
}

.private-event-img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.host-text ul {
    margin-bottom: var(--spacing-md);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content, .contact-container, .host-content {
        grid-template-columns: 1fr;
    }
    
    .about-image, .host-image {
        margin-bottom: var(--spacing-md);
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    
    .event-date .month, .event-date .day, .event-date .year {
        font-size: 1rem;
        margin: 0;
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #8b5cf6;
}

/* Mobile Menu Styles - REMOVED to prevent conflicts with inline styles */

@media (max-width: 768px) {
    .site-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        position: relative;
    }
    
    .logo {
        margin-bottom: 0;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin-bottom: var(--spacing-xs);
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    :root {
        --h1-size: 2rem;
        --h2-size: 1.75rem;
        --h3-size: 1.5rem;
    }
    
    /* Mobile menu styles removed to prevent conflicts with inline styles */
    
    .site-header {
        padding: 0.75rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
        --h4-size: 1.25rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid, .values-grid, .reading-cards, .info-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial {
        width: 100%;
    }
    /* Add or adjust these rules for more space between sections and key elements */

    /* Make space between header and main content */
    .site-header {
        margin-bottom: 2rem; /* adjust as needed */
    }

    /* Section spacing */
    section {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }

    /* Increase padding inside sections for more breathing room */
    section,
    .page-header,
    .events-filter,
    .events-container,
    .about-content,
    .booking-options {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* For .grid element between event cards (gap between cards) */
    .events-container .grid {
        gap: 2.5rem;
    }

    /* For button spacing in filter bar */
    .filter-options {
        gap: 1.25rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Extra: add more vertical space between paragraphs and headings */
    h1, h2, h3, p {
        margin-bottom: 1.2em;
    }

    /* You can further refine spacing as needed for other specific elements */
}

.about-portrait-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;   
  object-position: 50% 20%; 
  border-radius: 1rem; 
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); 
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-nav li {
    display: inline;
}

.breadcrumb-nav a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

/* Back to Top Footer Button */
.back-to-top-footer {
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Enhanced Form Styling */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e83e8c;
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.1);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e83e8c;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Card Hover Effects */
.service-card:hover,
.reading-card:hover,
.event-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Improved Button States */
.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.95);
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Indicators for Keyboard Navigation */
*:focus {
    outline: 2px solid #e83e8c;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .bg-white\/90 {
        background-color: white !important;
    }
    
    .text-gray-700 {
        color: black !important;
    }
    
    .border-gray-100 {
        border-color: black !important;
    }
}

