:root {
    --color-primary: #4a5a35; /* Moss green */
    --color-bg: #fafdf2; /* Cream/Bone */
    --color-bg-alt: #f1f5e8; /* Slightly darker cream for alternate sections */
    --color-text: #2c3322; /* Darker green for text */
    --color-light-accent: #e5ecd6;
    
    --font-heading: 'Cinzel', serif; /* Elegant serif font similar to reference image */
    --font-body: 'Montserrat', sans-serif; /* Clean minimalist sans-serif */
    
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    background-color: rgba(250, 253, 242, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(74, 90, 53, 0.1);
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transition: width var(--transition-speed) ease;
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.lang-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 500;
    font-family: var(--font-body);
}

.btn:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    background: linear-gradient(rgba(44, 51, 34, 0.7), rgba(44, 51, 34, 0.85)), url('../Banner principal 01 copia.webp') center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 4px;
    color: var(--color-bg);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(250, 253, 242, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Sections General */
section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--color-primary);
}

/* Alternate Background */
.section-services, .section-cuidados, .section-info {
    background-color: var(--color-bg-alt);
}

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

/* Cards */
.card {
    background-color: var(--color-bg);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid rgba(74, 90, 53, 0.05);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(74, 90, 53, 0.08);
}

.artist-img {
    width: calc(100% + 4rem);
    margin: -3rem -2rem 2rem -2rem;
    height: 380px;
    object-fit: cover;
    border-bottom: 2px solid rgba(74, 90, 53, 0.1);
    display: block;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card p {
    color: #555;
    font-weight: 300;
}

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

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    transition: transform var(--transition-speed) ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Reviews Section */
.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #b0914f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card p.expanded {
    -webkit-line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.review-card h4 {
    font-size: 1rem;
    color: var(--color-text);
}

/* Info & Schedule Section */
.section-info {
    padding: 8rem 5%;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.supertitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6a7a52; 
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: 0;
}

.info-title em {
    font-style: italic;
    font-weight: 400;
}

.info-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 450px;
}

.info-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid rgba(74, 90, 53, 0.4);
    letter-spacing: 2px;
}

.btn-outline:hover {
    background-color: rgba(74, 90, 53, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Schedule Box */
.info-schedule-box {
    border: 1px solid rgba(74, 90, 53, 0.2);
    padding: 3rem 4rem;
    background-color: transparent;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(74, 90, 53, 0.1);
    align-items: center;
}

.schedule-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-row:first-child {
    padding-top: 0;
}

.schedule-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    line-height: 1.4;
    width: 40%;
}

.schedule-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    line-height: 1.3;
    width: 60%;
    text-align: left;
}

/* Footer Update */
.main-footer {
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 5rem 5% 2rem 5%;
}

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

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1); /* Makes the logo white */
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--color-bg);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(250, 253, 242, 0.8);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(250, 253, 242, 0.8);
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--color-bg);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 253, 242, 0.2);
    font-size: 0.85rem;
    color: rgba(250, 253, 242, 0.6);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }
    
    nav ul {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-sm {
        width: 100%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 4rem 5%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .info-schedule-box {
        padding: 2rem;
    }

    .info-title {
        font-size: 2.8rem;
    }
}
