:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    --color-primary: #2C5F5D;
    --color-secondary: #B8976D;
    --color-accent: #E8DCC8;
    --color-dark: #1A1A1A;
    --color-light: #F8F6F3;
    --color-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.brand-q {
    font-size: 2.2rem;
    color: var(--color-secondary);
}

.nav-link {
    font-weight: 500;
    color: var(--color-dark);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

.cookie-banner p {
    margin: 0;
    display: inline-block;
}

.cookie-banner a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-banner button {
    margin-left: 1rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184,151,109,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, -50px) rotate(180deg); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.accent-text {
    color: var(--color-secondary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--color-primary);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(44,95,93,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44,95,93,0.4);
    background: #234d4b;
}

.rounded-organic {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-secondary);
}

/* Mood Selector Section */
.mood-selector-section {
    padding: 80px 0;
    background: var(--color-white);
}

.mood-card {
    background: linear-gradient(135deg, var(--color-light) 0%, white 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.mood-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.mood-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mood-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.mood-recommendation {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-accent);
    border-radius: 15px;
    display: none;
}

.mood-recommendation.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Service Spotlight */
.service-spotlight {
    padding: 80px 0;
    background: linear-gradient(to right, var(--color-light) 0%, white 50%, var(--color-light) 100%);
}

.service-image-container {
    position: relative;
}

.service-image-container img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-content {
    padding: 2rem;
}

.service-name {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.service-duration {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
}

.service-benefits {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.service-benefits h5 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

/* Journey Timeline */
.journey-timeline {
    padding: 80px 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.journey-timeline .section-title {
    color: var(--color-white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--color-secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px var(--color-dark), 0 0 0 6px var(--color-secondary);
}

.timeline-content {
    width: calc(50% - 40px);
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content h4 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

/* Zen Garden */
.zen-garden-section {
    padding: 80px 0;
    background: var(--color-light);
}

#zenGarden {
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    cursor: crosshair;
    max-width: 100%;
    background: #f5f0e8;
}

/* Client Stories */
.client-stories {
    padding: 80px 0;
    background: var(--color-white);
}

.story-card {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.story-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--color-accent);
}

.story-card h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.story-location {
    color: var(--color-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.story-rating {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Virtual Tour */
.virtual-tour {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-light) 100%);
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-card h5 {
    padding: 1.5rem;
    text-align: center;
    color: var(--color-primary);
    margin: 0;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Policy Navigation */
.policy-nav {
    border-bottom: 1px solid #ddd;
}

.policy-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.policy-link:hover,
.policy-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-secondary);
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
}

.policy-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.policy-document h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.policy-document h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-document h4 {
    color: var(--color-secondary);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-document p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-document ul, .policy-document ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-document li {
    margin-bottom: 0.5rem;
}

.policy-document table {
    margin: 2rem 0;
}

/* About Page */
.about-story {
    background: var(--color-white);
}

.value-card {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--color-primary);
    margin: 0;
}

.team-role {
    padding: 0 1.5rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p:last-child {
    padding: 0 1.5rem 1.5rem;
}

/* Contact Page */
.contact-section {
    background: var(--color-white);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    padding: 0.75rem;
}

.contact-form .form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(184,151,109,0.25);
}

.contact-info {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--color-secondary);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer h5 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

/* Buttons */
.btn-primary {
    background: var(--color-primary);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #234d4b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44,95,93,0.3);
}

.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        width: calc(100% - 20px);
        margin-left: 20px !important;
    }
    
    .timeline-dot {
        left: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    #zenGarden {
        width: 100%;
        height: 300px;
    }
}