/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4A4238;
    overflow-x: hidden;
    background: linear-gradient(135deg, #FFE5F0 0%, #E5F0FF 25%, #E5FFF0 50%, #FFF0E5 75%, #F0E5FF 100%);
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #FFE5F0;
    padding-top: 90px;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.hero-text {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Caveat', cursive;
    font-size: 5.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.725rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #fff;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B9D, #8A2BE2);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
    background: #8A2BE2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    will-change: auto;
    transform: translateZ(0) translateY(5%);
    backface-visibility: hidden;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3A7046;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #4A4238;
    max-width: 600px;
    margin: 0 auto;
}

/* Retreat Options Section */
.retreat-options {
    background: #D9C2A6;
    position: relative;
    overflow: hidden;
}

.retreat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.retreat-card {
    background: #F2EDE4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(166, 95, 63, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #A65F3F;
}

.retreat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(166, 95, 63, 0.15);
}

.retreat-card.featured {
    border: 2px solid #FF6B9D;
    transform: scale(1.05);
}

.retreat-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.retreat-image {
    height: 200px;
    background: linear-gradient(135deg, #3A7046, #C99A2E);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.retreat-placeholder {
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.retreat-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.retreat-content {
    padding: 30px;
    background: #F2EDE4;
    position: relative;
    z-index: 1;
}

.retreat-content h3 {
    font-size: 1.5rem;
    color: #3A7046;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.retreat-content p {
    color: #4A4238;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.retreat-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.retreat-feature {
    background: rgba(166, 95, 63, 0.1);
    color: #A65F3F;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(166, 95, 63, 0.2);
}

.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Schedule Section */
.schedule-section {
    background: #F8F6F2;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.day-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(166, 95, 63, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E8DCC0;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(166, 95, 63, 0.15);
}

.day-header {
    background: linear-gradient(135deg, #3A7046, #C99A2E);
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.day-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    z-index: 1;
}

.day-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.day-focus {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.day-activities {
    padding: 25px;
}

.activity {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.activity:last-child {
    border-bottom: none;
}

.activity-time {
    background: #A65F3F;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.activity-name {
    color: #4A4238;
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}

/* Pricing Information Section */
.pricing-info-section {
    background: #E5F0FF;
}

.pricing-info-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.pricing-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(166, 95, 63, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E8DCC0;
    text-align: center;
}

.pricing-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(166, 95, 63, 0.15);
}

.pricing-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B9D, #8A2BE2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.pricing-info-icon i {
    color: white;
    font-size: 2rem;
}

.pricing-info-card h3 {
    font-size: 1.8rem;
    color: #3A7046;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-info-card > p {
    color: #4A4238;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.benefit-item i {
    color: #3A7046;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: #4A4238;
    font-size: 1rem;
    line-height: 1.4;
}

.pricing-cta {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.pricing-subtitle {
    color: #4A4238;
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0 0 20px 0;
}



/* Booking Section */
.booking-section {
    background: #F2EDE4;
}

.booking-content {
    max-width: 600px;
    margin: 0 auto;
}

.whatsapp-section {
    margin-top: 40px;
}

.whatsapp-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(166, 95, 63, 0.1);
    border: 1px solid #E8DCC0;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(166, 95, 63, 0.15);
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon i {
    color: white;
    font-size: 2rem;
}

.whatsapp-card h3 {
    font-size: 1.5rem;
    color: #3A7046;
    margin-bottom: 15px;
    font-weight: 600;
}

.whatsapp-card p {
    color: #4A4238;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.whatsapp-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4A4238;
    font-size: 0.9rem;
}

.whatsapp-features .feature i {
    color: #3A7046;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #3A7046;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section p {
    margin-bottom: 10px;
}

.footer-section a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFA500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-link {
    color: #FFD700;
    text-decoration: none;
}

.footer-link:hover {
    color: #FFA500;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(166, 95, 63, 0.1);
}

.navbar--hidden {
    transform: translateY(-100%);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    position: relative;
}

.nav-links-backdrop {
    display: none;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4A4238;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 78px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #4A4238;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FF6B9D, #8A2BE2);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #A65F3F;
}

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

/* Animations */
@keyframes fadeInUpSlow {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Responsive Design */
@media (min-width: 769px) {
    .navbar .nav-toggle {
        display: none !important;
    }
    
    .nav-links {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-logo img {
        height: 52px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        pointer-events: auto;
        display: flex;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        margin: 15px 0;
        font-size: 1.1rem;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1002;
    }
    
    .bar {
        width: 25px;
        height: 3px;
        background: #4A4238;
        margin: 5px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-links-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .retreat-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-info-content {
        margin-top: 30px;
    }
    
    .pricing-info-card {
        padding: 30px;
    }
    
    .retreat-card.featured {
        transform: none;
    }
    
    .retreat-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .whatsapp-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .retreat-content {
        padding: 20px;
    }
    
    .day-header {
        padding: 20px;
    }
    
    .day-activities {
        padding: 20px;
    }
    
    .activity {
        flex-direction: column;
        gap: 10px;
    }
    
    .activity-time {
        align-self: flex-start;
    }
    
    .pricing-info-card {
        padding: 25px;
    }
    
    .pricing-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .pricing-info-icon i {
        font-size: 1.5rem;
    }
    
    .pricing-info-card h3 {
        font-size: 1.5rem;
    }
    
    .pricing-benefits {
        gap: 12px;
    }
    
    .benefit-item {
        gap: 10px;
    }
    
    .benefit-item i {
        font-size: 1rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    .whatsapp-card {
        padding: 25px;
    }
}
