/* ========================================
   CSS Variables & Root Styles
   ======================================== */
:root {
    /* Color Palette - Warm, Spiritual, Professional */
    --color-primary: #C267D1;          /* Vibrant Purple/Magenta */
    --color-primary-light: #D490DD;    /* Light Purple */
    --color-primary-dark: #A54AB5;     /* Dark Purple */
    --color-secondary: #E8A5EE;        /* Soft Lavender */
    --color-accent: #B85DC6;           /* Medium Purple */
    
    --color-bg-light: #FDFBF7;         /* Warm White */
    --color-bg-dark: #2C2416;          /* Deep Brown */
    --color-text-primary: #2C2416;     /* Dark Brown */
    --color-text-secondary: #5C4F3D;   /* Medium Brown */
    --color-text-light: #FFFFFF;       /* White */
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ========================================
   Navigation Bar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(253, 251, 247, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: var(--transition-normal);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-light);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 100;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: rgba(194, 103, 209, 0.1);
    color: var(--color-primary);
    padding-left: 2rem;
}

.dropdown-menu a::after {
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E8 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 111, 71, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 168, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--color-secondary);
    z-index: 2;
    transition: var(--transition-slow);
    pointer-events: none;
}

.hero-image-wrapper:hover::before {
    top: -25px;
    left: -25px;
    right: 25px;
    bottom: 25px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    opacity: 0;
    animation: slideZoom 20s infinite;
}

.hero-image:nth-child(1) {
    animation-delay: 0s;
}

.hero-image:nth-child(2) {
    animation-delay: 5s;
}

.hero-image:nth-child(3) {
    animation-delay: 10s;
}

.hero-image:nth-child(4) {
    animation-delay: 15s;
}

.hero-image:first-child {
    position: relative;
}

@keyframes slideZoom {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    2% {
        opacity: 1;
    }
    23% {
        opacity: 1;
        transform: scale(1.08);
    }
    25% {
        opacity: 0;
        transform: scale(1.08);
    }
    100% {
        opacity: 0;
    }
}

.hero-text {
    padding: 2rem 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    margin-bottom: 2rem;
}

.hero-bio {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.cta-button i {
    transition: var(--transition-normal);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.scroll-indicator p {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text-light);
    font-size: 1.125rem;
    transition: var(--transition-normal);
}

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

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--color-secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-secondary);
    font-style: italic;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-bg-light);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        padding: 2rem;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        margin-top: 0.5rem;
        padding-left: 1rem;
        background-color: transparent;
    }
    
    .dropdown-menu a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
        background-color: rgba(194, 103, 209, 0.05);
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-bio {
        font-size: 1rem;
    }
    
    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .nav-brand a {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        width: 85%;
    }
    
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .hero-image-wrapper {
        max-width: 320px;
    }
    
    .hero-image-wrapper::before {
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-bio {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
    }
    
    .hero-bio {
        font-size: 1.2rem;
    }
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
    padding: 6rem 2rem;
    background-color: var(--color-bg-light);
}

.alt-section {
    background-color: #F9F7F4;
}

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

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.section-text {
    padding: 1rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    margin-bottom: 2rem;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 2rem 0 1rem;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.section-description.highlight {
    font-style: italic;
    font-weight: 500;
    color: var(--color-primary);
}

.section-image-wrapper {
    position: relative;
}

.section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.section-image:hover {
    transform: scale(1.02);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.values-list li strong {
    color: var(--color-primary);
    font-weight: 600;
}

.secondary-cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    margin-top: 1rem;
}

/* Content Sections Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 4rem 1.5rem;
    }
    
    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        direction: ltr;
    }
    
    .section-content .section-text {
        order: 2;
    }
    
    .section-content .section-image-wrapper {
        order: 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .values-list li {
        font-size: 1rem;
    }
}

/* ========================================
   Booking Modal
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background-color: var(--color-bg-light);
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--color-primary);
    background-color: rgba(194, 103, 209, 0.1);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 2px solid var(--color-secondary);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

.booking-form {
    padding: 2rem 2.5rem 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-text-primary);
    transition: var(--transition-normal);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(194, 103, 209, 0.1);
}

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

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.125rem;
    padding: 1.125rem 2rem;
}

.form-message {
    padding: 2rem;
    text-align: center;
    display: none;
}

.form-message.active {
    display: block;
}

.form-message i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.form-message h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.form-message p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

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

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
}
