:root {
    /* Color Palette - Nature Inspired */
    --primary-color: #556B2F;
    /* Dark Olive Green */
    --secondary-color: #8FBC8F;
    /* Dark Sea Green */
    --accent-color: #DEB887;
    /* Burlywood */
    --text-dark: #2F4F4F;
    /* Dark Slate Gray */
    --text-light: #F5F5F5;
    /* White Smoke */
    --bg-light: #FAF9F6;
    /* Off White */
    --bg-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 5rem 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: --font-body;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    margin-top: 0.5rem;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: #F0F5EB;
}

/* Very subtle green tint */

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient overlay for better text readability and "pro" look */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(47, 79, 79, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

#hero-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    /* Stronger shadow for better contrast against light backgrounds */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

#hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    /* Added shadow for readability */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: white;
    transform: translateY(-3px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Quote Section */
.quote-section {
    padding: 4rem 1rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

#quote-text {
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.pricing-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(85, 107, 47, 0.1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.pricing-desc {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}

/* Pricing Section Refinements */
.pricing-payment-info {
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px dashed var(--secondary-color);
}

/* Contact Footer */
.footer-section {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 1rem 2rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.map-container,
.building-photo {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe,
.building-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}


/* Social Media Section */
.social-media-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 50px;
    /* Pillow shape or circle */
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    gap: 8px;
}

.social-icon:hover {
    color: var(--text-dark);
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(222, 184, 135, 0.4);
    /* Glow effect with accent color */
}

.social-icon svg,
.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-text {
    font-weight: 500;
    font-size: 1rem;
    /* Hide text on small screens if needed, but keeping it for Resalib usually good */
}

.copyright {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    #hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    /* Image on top on mobile */
    .section-title {
        font-size: 2rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- New Features --- */

/* --- New Features (Refined) --- */

/* Schedule List (Opening Hours) */
.schedule-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    /* Removed white box styling */
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 600;
    color: var(--primary-color);
}

.schedule-time {
    color: var(--text-dark);
}

/* Schedule Links Styling */
#schedule-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#schedule-note a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Service Details Modal */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
    transition: 0.2s;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-image-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #f0f0f0;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text {
    flex: 1;
    min-width: 300px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-text h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.modal-text p {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }

    .modal-image-container {
        height: 250px;
    }

    .modal-content {
        margin: 10% auto;
    }
}

/* OMNES Section */
.omnes-box {
    /* Visual Separator - horizontal line above the section */
    border-top: 1px solid var(--accent-color);
    width: 100%;

    border-radius: 0;
    padding: 3rem 0;
    /* Standard padding */
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: transparent;
    margin-top: 0;
}

.omnes-content {
    flex: 2;
}

.omnes-content h2 {
    margin-bottom: 1rem;
}

.omnes-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.omnes-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.omnes-logo-container img {
    max-width: 100%;
    max-height: 120px;
    /* Slightly smaller */
    width: auto;
    transition: transform 0.3s ease;
}

.omnes-logo-container img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .omnes-box {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
        text-align: center;
    }

    .omnes-logo-container {
        width: 100%;
    }

    .omnes-logo-container img {
        max-height: 100px;
    }
}

/* TEMP PRINT FIX */
.fade-in,
.fade-in-left,
.fade-in-right {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* TEMP PRINT FIX */
.fade-in,
.fade-in-left,
.fade-in-right {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* TEMP PRINT FIX */
.fade-in,
.fade-in-left,
.fade-in-right {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* TEMP PRINT FIX */
.fade-in,
.fade-in-left,
.fade-in-right {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* TEMP PRINT FIX */
.fade-in,
.fade-in-left,
.fade-in-right {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}