:root {
    --primary-green: rgb(110, 145, 115);
    --secondary-green: rgb(90, 125, 95);
    --terracotta: rgb(180, 110, 90);
    --terracotta-light: rgb(215, 160, 140);
    --off-white: rgb(246, 240, 215);
    --text-dark: #2c3e50;
    --text-light: #5a6b7c;
    --white: #ffffff;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-script: 'Pinyon Script', cursive;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-card: 0 10px 30px rgba(0,0,0,0.08);

    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.center {
    text-align: center;
}

.bg-light {
    background-color: rgba(255,255,255,0.6);
}

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

/* Typography & Branding */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.8;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.logo-script {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--terracotta);
    transform: rotate(-5deg) translateY(-5px);
}

.highlight-script {
    font-family: var(--font-script);
    color: var(--terracotta-light);
    font-weight: 400;
    font-size: 1.3em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(110, 145, 115, 0.4);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 145, 115, 0.5);
}

.btn-outline {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(246, 240, 215, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: padding 0.3s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--terracotta);
    transition: width 0.3s;
}

.nav a:not(.btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    /* Uses one of the images as background - ensure path is correct or generic */
    background-image: url('images/photo-2026-01-23-09-49-41-3.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Sections General */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--terracotta);
    font-family: var(--font-script);
    font-size: 2rem;
}

/* About Section */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-green);
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-image {
    border-radius: 20px 0 20px 0;
    box-shadow: var(--shadow-card);
    height: 400px;
    width: 100%;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* Differentials */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
    border-bottom: 4px solid var(--terracotta);
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* ICP Section */
.icp-section {
    background-color: var(--primary-green);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.icp-image {
    border-radius: 50% 50% 0 50%;
    border: 5px solid rgba(255,255,255,0.2);
    width: 100%;
    height: 450px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '✓';
    color: var(--terracotta-light);
    font-weight: bold;
}

.text-white { color: #fff; }
.opacity-90 { opacity: 0.9; }

/* Retreat Section */
.retreat-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(110, 145, 115, 0.2);
    border-radius: 12px;
}

.detail-item h3 {
    color: var(--terracotta);
    margin-bottom: 1rem;
    font-family: var(--font-script);
    font-size: 2rem;
}

.big-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.sm-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.bonus-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-green);
    box-shadow: var(--shadow-soft);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-box h4 {
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

/* Pricing */
.pricing-card {
    text-align: center;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    max-width: 600px;
    margin: 4rem auto 0;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-green), var(--terracotta));
}

.price-box {
    margin: 2rem 0;
    color: var(--primary-green);
}

.currency { font-size: 1.5rem; vertical-align: top; }
.amount { font-size: 4rem; font-weight: 700; line-height: 1; }
.condition { display: block; font-size: 1rem; color: var(--text-light); margin-top: 5px; }

.installments {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.pro-card {
    text-align: center;
}

.pro-image-placeholder {
    width: 250px;
    height: 250px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-soft);
}

.pro-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--off-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer .logo-text { color: var(--off-white); }
.footer .logo-script { color: var(--terracotta); }

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

.footer-links a:hover {
    color: var(--terracotta);
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 4rem 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu ul {
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Animations */
.fade-in-up, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in-up { transform: translateY(30px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title { font-size: 2.8rem; }
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .grid-2-col { grid-template-columns: 1fr; gap: 2rem; }
    .reverse-mobile { display: flex; flex-direction: column-reverse; }
}

@media (max-width: 768px) {
    .retreat-details-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 2rem 1rem; }
    .amount { font-size: 3rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .floating-whatsapp { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 20px; }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    height: 300px;
    cursor: pointer;
}

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

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

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--primary-green);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(110, 145, 115, 0.05);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999; /* Higher than modal */
    transition: all 0.3s;
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Logo Image Adjustment */
.logo-img {
    height: auto;
    max-height: 110px; /* Increased size */
    width: auto;
}

/* Header Nav Layout */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Reference Image Flip & Zoom */
.about-image-flipped {
    transform: scaleX(-1) scale(1.1); /* Flip and slight zoom */
    object-position: top center; /* Focus on faces/top to avoid cutting forehead */
}

/* Bonus Section Split */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.bonus-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-green);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.bonus-card h4 {
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.bonus-card p {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Professional Bios */
.pro-bio {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    white-space: pre-line;
}

/* Responsive updates for new elements */
@media (max-width: 768px) {
    .retreat-details-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 2rem 1rem; }
    .amount { font-size: 3rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .floating-whatsapp { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .bonus-grid { grid-template-columns: 1fr; }
}


