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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #7c9885;  /* Calming sage green */
    --accent-light: #a8c4b5;
    --text-color: #333;
    --light-text: #666;
    --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --healing-purple: #9b8fae;
    --healing-blue: #6b9ac4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

/* Smooth scrolling container */
.smooth-scroll {
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-color);
    text-decoration: none;
   transition: var(--transition);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}



.nav-links a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #a8c4b5 0%, #7c9885 50%, #9b8fae 100%);
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.hero-content {
    text-align: center;
     color: white;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: white;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1.5);
        opacity: 0.3;
    }
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(0.3);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
}
/* Image Grid Section */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
}

.grid-item {
    overflow: hidden;
    aspect-ratio: 1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

/* Mobile: Show only first image */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hide all except first */
    .grid-item:not(:first-child) {
        display: none;
    }
}

.about-section {
    padding: 8rem 2rem;
    background: white;
    opacity: 1;
    visibility: visible;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 1;
    visibility: visible;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
    opacity: 1;
    visibility: visible;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

/* Experience Section */
.experience-section {
    padding: 8rem 2rem;
    background: var(--secondary-color);
    /*color: white;*/
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 4rem;
    color: var(--accent-color);
}

.experience-header {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--accent-color);
}

.experience-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 2px;
}

.experience-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.experience-card {
    /*background: rgba(255, 255, 255, 0.05);*/
    background:white;
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.experience-card h3 {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.experience-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: white;
}

/* Extended Parallax Section - Contains Menu and Quote */
.parallax-section-extended {
    min-height: 120vh;
    background-image: url('images/parallax_bg.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 6rem 2rem;
}

.parallax-content blockquote {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 2px;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Old Parallax Section (if needed separately) */
.parallax-section {
    height: 60vh;
    background-image: url('images/parallax_bg.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Section - Transparent to show parallax */
.menu-section {
    padding: 8rem 2rem;
    background: transparent;
    opacity: 1;
    visibility: visible;
    position: relative;
}

.menu-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.menu-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.menu-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 2rem;
}

.menu-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.menu-item:hover img {
    transform: scale(1.05);
}

.menu-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.menu-item p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-item .cta-button {
    margin-top: auto;
    align-self: center;
}




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

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

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

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

.close-modal {
    color: var(--light-text);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-color);
}

.modal-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-align: center;
}

.calendar-container {
    min-height: 600px;
    width: 100%;
}

.calendar-container > div {
    min-height: 600px;
    border-radius: 8px;
    overflow: auto !important;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
        max-height: 85vh;
    }
    
    .close-modal {
        top: 0.5rem;
        right: 1rem;
        font-size: 2rem;
    }
    
    .calendar-container {
        min-height: 500px;
    }
}

/* Inquiry Modal Specific Styles */
.inquiry-modal-content {
    max-width: 600px;
}

.inquiry-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.inquiry-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

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

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

 /* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    color: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 3rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}


/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--primary-color);
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .nav-links a {
        color: white;
        opacity: 0;
    }

    .nav-links.active a {
        opacity: 1;
    }

    .burger {
        display: block;
        z-index: 1001;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .parallax-section,
    .parallax-section-extended {
        background-attachment: scroll;
    }
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}