:root {
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --color-background: #FDFDFD;
    --color-text: #5c5c5c;
    --color-primary: #a7c7e7;
    --color-secondary: #fefae0;
    --color-accent: #77a8a8;
}
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');
body { font-family: var(--font-body); line-height: 1.7; margin: 0; background-color: var(--color-background); color: var(--color-text); overflow-x: hidden; }
header { display: flex; align-items: center; padding: 1rem 5%; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid #EAEAEA; position: sticky; top: 0; z-index: 100; }
header .logo img { height: 100px; }
nav { display: flex; align-items: center; flex-grow: 1; justify-content: center; }
nav a { font-size: 1rem; font-weight: 700; color: var(--color-text); text-decoration: none; padding: 0.5rem 1rem; margin-left: 0.5rem; }
.lang-button { font-weight: 700; text-decoration: none; color: var(--color-accent); border: 2px solid var(--color-accent); padding: 0.3rem 0.8rem; border-radius: 20px; transition: all 0.3s ease; }
.lang-button:hover { background-color: var(--color-accent); color: white; }
.hero { background-color: var(--color-secondary); display: flex; align-items: center; justify-content: center; text-align: center; height: 65vh; padding: 0 5%; }
.hero-content h1 { font-family: var(--font-headings); font-size: 4.5rem; }
.cta-button { font-family: var(--font-body); font-weight: 700; color: #FFF; background-color: var(--color-accent); padding: 1.2rem 2.8rem; border-radius: 50px; text-decoration: none; display: inline-block; }
.content-section { padding: 5rem 5%; max-width: 1200px; margin: auto; }
.content-section h2 { font-family: var(--font-headings); font-size: 3rem; text-align: center; margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.feature-card { background: #FFF; padding: 2rem; border-radius: 10px; border: 1px solid #EEE; text-align: center; }
.feature-card h3 { font-size: 1.6rem; font-family: var(--font-headings); }
footer { background-color: var(--color-secondary); text-align: center; padding: 2rem 5%; margin-top: 4rem; border-top: 1px solid #EAEAEA; }
.slide-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.is-visible { opacity: 1; transform: translateY(0); }
.hamburger-button { display: none; }
@media (max-width: 992px) {
    header .logo img { height: 80px; }
    header nav { display: none; position: fixed; top: 0; right: 0; width: 80%; height: 100vh; background-color: rgba(253, 253, 253, 0.95); backdrop-filter: blur(10px); flex-direction: column; justify-content: center; align-items: center; transform: translateX(100%); transition: transform 0.3s ease-in-out; }
    header nav.is-open { transform: translateX(0); display: flex; }
    header nav a { font-size: 1.5rem; margin: 1.5rem 0; }
    header nav .lang-button { margin-top: 2rem; font-size: 1.2rem; }
    .hamburger-button { display: block; width: 40px; height: 40px; padding: 0; border: none; background: transparent; cursor: pointer; z-index: 101; }
    .hamburger-button span { display: block; width: 30px; height: 3px; background-color: var(--color-text); margin: 6px auto; transition: all 0.3s ease-in-out; }
    .hamburger-button.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger-button.is-open span:nth-child(2) { opacity: 0; }
    .hamburger-button.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .hero-content h1 { font-size: 3rem; }
    .content-section h2 { font-size: 2.5rem; }
}
.view-toggle { text-align: center; margin-bottom: 2rem; }
.view-toggle button { font-family: var(--font-body); font-weight: 700; font-size: 1rem; padding: 0.5rem 1.5rem; margin: 0.25rem; border: 2px solid var(--color-secondary); background-color: transparent; color: var(--color-text); border-radius: 20px; cursor: pointer; transition: all 0.3s ease; }
.view-toggle button.active { background-color: var(--color-accent); color: white; border-color: var(--color-accent); }
#special-text.blurred { filter: blur(8px); transition: filter 0.5s ease; cursor: pointer; }
#special-text.unblurred { filter: blur(0px); transition: filter 0.5s ease; cursor: default; }
