/* CSS Variables and Tokens */
:root {
    /* Colors inspired by the logo (Teal & Peach) */
    --clr-teal: #3ab39a;
    --clr-teal-dark: #2a8a75;
    --clr-teal-light: #e0f2ef;
    --clr-peach: #dfab98;
    --clr-peach-light: #fbeae3;
    
    --clr-bg: #fdfcfb;
    --clr-text: #2c3e50;
    --clr-text-light: #6c7a89;
    --clr-white: #ffffff;
    --clr-black: #1a1a1a;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(58, 179, 154, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--clr-teal-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--clr-peach);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--clr-text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary, .btn-outline, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--clr-teal);
    color: var(--clr-white);
    border: 2px solid var(--clr-teal);
    box-shadow: 0 4px 15px rgba(58, 179, 154, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--clr-teal);
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-teal);
    border: 2px solid var(--clr-teal);
}

.btn-outline:hover {
    background-color: var(--clr-teal);
    color: var(--clr-white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--clr-white);
    border: 2px solid #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: #25D366;
    box-shadow: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 252, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.2rem 5%;
}

.logo-container .logo {
    height: 70px;
    /* Make the white background of the logo transparent by multiplying against the light background */
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.header.scrolled .logo {
    height: 50px;
}

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

.nav a:not(.btn-outline) {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url('hero-bg.png') center/cover no-repeat;
    padding-top: 80px;
}

/* To simulate a background image or rich aesthetic if we had an actual image */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.75); /* transparent white overlay so text and logo are visible */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    width: 250px;
    margin: 0 auto 1.5rem;
    mix-blend-mode: multiply;
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    font-size: 4rem;
    color: var(--clr-teal-dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Services */
.services {
    padding: 6rem 0;
    background-color: var(--clr-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--clr-bg);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--clr-peach), var(--clr-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--clr-peach-light);
    color: var(--clr-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--clr-teal);
    color: var(--clr-white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--clr-teal-dark);
}

.service-card ul {
    color: var(--clr-text-light);
}

.service-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

/* Experience / Videos */
.experience {
    padding: 6rem 0;
    background-color: var(--clr-teal-light);
}

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

.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: #000;
}

.video-wrapper:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Location */
.location {
    padding: 6rem 0;
    background-color: var(--clr-white);
}

.location-content {
    background: var(--clr-peach-light);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-content h2 {
    font-size: 2.5rem;
    color: var(--clr-teal-dark);
    margin-bottom: 3rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    width: 100%;
}

.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.location-item i {
    font-size: 2.5rem;
    color: var(--clr-peach);
}

.location-item h4 {
    font-size: 1.2rem;
    color: var(--clr-teal-dark);
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--clr-text-light);
}

/* Footer */
.footer {
    background-color: var(--clr-black);
    color: var(--clr-white);
    padding: 5rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    mix-blend-mode: normal;
}

.footer-brand p {
    color: #999;
}

.footer-links h3, .footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-peach);
}

.footer-links a {
    display: block;
    color: #ccc;
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--clr-teal);
    padding-left: 5px;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--clr-teal);
}

.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Initial hidden states for JS scroll animation */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.appear { opacity: 1; transform: translateY(0); }

.fade-in-up { opacity: 0; transform: translateY(40px); animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.5s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.slide-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.slide-in-left.appear { opacity: 1; transform: translateX(0); }

.slide-in-bottom { opacity: 0; transform: translateY(50px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.slide-in-bottom.appear { opacity: 1; transform: translateY(0); }

.slide-in-right { opacity: 0; transform: translateX(50px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.slide-in-right.appear { opacity: 1; transform: translateX(0); }


/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; }
    
    .nav { display: none; /* simple mobile menu hidden for now, can be expanded if needed */ }
    
    .location-content { padding: 2rem 1rem; }
}
