:root {
    --bg-paper: #f8f7f5;
    --bg-container: #e8e6e1;
    --bg-misty: #e4e8ec;
    --text-primary: #1a1a24;
    --text-secondary: #4a4a4a;
    --accent-primary: #1e3a5f;
    --accent-secondary: #5a7a6a;
    --border-light: #d4d0c8;
    --white: #ffffff;
    --radius: 18px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-paper);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-secondary);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary) !important;
    letter-spacing: 0.5px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-primary) !important;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--accent-primary) !important;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 52vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        height: 48vh;
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.hero-capsule {
    background-color: rgba(248, 247, 245, 0.91);
    padding: 3rem;
    border-radius: 28px;
    backdrop-filter: blur(0);
}

@media (max-width: 768px) {
    .hero-capsule {
        padding: 2rem;
    }
}

.hero-capsule h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-capsule h1 {
        font-size: 1.75rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

/* Main Container */
.main-container {
    max-width: 920px;
    padding: 3rem 2rem;
}

/* Sections */
.content-section {
    margin-bottom: 4rem;
    animation: fadeIn 0.5s ease-in;
}

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

.rounded-panel {
    background-color: var(--bg-container);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .rounded-panel {
        padding: 2rem;
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #16283d;
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-secondary);
}

.btn-secondary:hover {
    background-color: var(--accent-secondary);
    color: var(--white);
    transform: scale(1.03);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Images */
.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Section Divider */
.section-divider {
    height: 1px;
    background-color: var(--border-light);
    margin: 2rem 0;
}

/* Daily Phrases */
.daily-phrases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.daily-phrases span {
    background-color: var(--bg-misty);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

/* Observations Section */
.neutral-observations {
    display: grid;
    gap: 1.5rem;
}

.neutral-observations p {
    background-color: var(--bg-misty);
    padding: 1rem;
    border-left: 3px solid var(--accent-secondary);
    border-radius: 6px;
    margin-bottom: 0;
}

/* Questions Section */
.questions-section {
    display: grid;
    gap: 1rem;
}

.questions-section p {
    background-color: var(--bg-misty);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Quotes Section */
.quotes-section {
    display: grid;
    gap: 2rem;
}

blockquote {
    background-color: var(--bg-misty);
    padding: 2rem;
    border-left: 4px solid var(--accent-primary);
    border-radius: 8px;
    font-style: italic;
}

blockquote p {
    margin-bottom: 1rem;
}

.quote-source {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-legal {
    max-width: 1020px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-legal ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg {
        width: 26px;
        height: 26px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-primary);
    color: var(--white);
    padding: 1.5rem;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border-light);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1020px;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    min-width: 250px;
    font-size: 0.9rem;
}

.cookie-content .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-content p {
        min-width: auto;
    }
}

/* About Page */
.about-hero {
    height: 35vh;
}

/* Blog Page */
.blog-hero {
    height: 40vh;
}

.blog-posts {
    display: grid;
    gap: 3rem;
}

.blog-post {
    background-color: var(--bg-container);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.blog-post h3 {
    margin-bottom: 1rem;
}

.blog-post .post-excerpt {
    margin-bottom: 1.5rem;
}

.blog-post .btn {
    display: inline-block;
}

.newsletter-form {
    background-color: var(--bg-misty);
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 3rem;
}

.newsletter-form h3 {
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Page */
.contact-hero {
    height: 38vh;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background-color: var(--bg-container);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form .form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* Thank You Page */
.thank-you-container {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
}

.thank-you-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-container p {
    margin-bottom: 2rem;
}

/* Blog Post Pages */
.post-container {
    max-width: 900px;
    margin: 0 auto;
}

.post-section {
    margin-bottom: 3rem;
}

.post-section h2, .post-section h3 {
    margin-top: 2rem;
}

/* Two Column Text */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .two-columns {
        grid-template-columns: 1fr;
    }
}

.two-columns p {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .main-container {
        padding: 2rem 1rem;
    }

    .content-section {
        margin-bottom: 2.5rem;
    }

    .daily-phrases {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .daily-phrases span {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}
