@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* rest of your global.css rules below */

:root {
    /* Brand palette — used across global.css, pasteles.css, styles.css, horarios.css */
    --color-brown-dark: #4a2c2a;   /* navbar bg, footer bg, body text */
    --color-cream-bg: #fdf6f0;     /* page background */
    --color-cream-light: #f5ede3;  /* nav text, section bg */
    --color-peach: #e8b4a2;        /* hover accents, dividers */
    --color-rust: #a85b4c;         /* headings */
    --color-tan-border: #cebfaf;   /* card borders */
    --color-text-secondary: #5c3d2e; /* body copy on light bg */
    --font-body: 'Georgia', 'Times New Roman', serif;
}

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

h1, h2, h3, .logo {
    font-family: 'Playfair Display', Georgia, serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-brown-dark);
    background-color: var(--color-cream-bg);
    line-height: 1.6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23d8b58c' stroke-width='1.2' opacity='0.35'%3E%3Ccircle cx='20' cy='20' r='6'/%3E%3Cpath d='M20 14 Q23 20 20 26 Q17 20 20 14'/%3E%3Cpath d='M14 20 Q20 17 26 20 Q20 23 14 20'/%3E%3Ccircle cx='90' cy='55' r='5'/%3E%3Cpath d='M90 50 Q92.5 55 90 60 Q87.5 55 90 50'/%3E%3Cpath d='M85 55 Q90 52.5 95 55 Q90 57.5 85 55'/%3E%3Ccircle cx='45' cy='95' r='6'/%3E%3Cpath d='M45 89 Q48 95 45 101 Q42 95 45 89'/%3E%3Cpath d='M39 95 Q45 92 51 95 Q45 98 39 95'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 220px 220px;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body, p, a, li {
    font-family: 'Lato', sans-serif;
}

/* Navbar */
.navbar {
    background-color: var(--color-brown-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    width: 50px;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--color-cream-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-peach);
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons img{
    display: flex;
    width: 25px;
}


.prices {
    width: 100%;
    max-width: 40em;
    border: none;
    margin: 10px auto;
    padding: 0 16px;
}

.prices img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 8px; /* optional, matches your card style elsewhere */
}

/* Footer */
.footer {
    background-color: var(--color-brown-dark);
    color: var(--color-cream-light);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}


.footer-dev {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 4px;
}

.footer-dev a {
    color: var(--color-peach);
    text-decoration: none;
}

.fa-brands {
   padding-right: 3px;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    height: 58px;
    padding: 0 22px;
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float i {
    font-size: 1.4rem;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    animation: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile nav */
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        height: auto;
        gap: 12px;
        padding: 15px 20px;
    }
 
    .logo img {
        width: 80px;
        margin-bottom: 1px;
    }
 
    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.95rem;
    }
 
    .social-icons {
        gap: 12px;
    }
 
    .social-icons img {
        width: 38px;
    }

    .prices {
        padding: 0 12px;
        margin: 8px auto;
    }
      .whatsapp-float {
        height: 48px;
        padding: 0 16px;
        font-size: 0.85rem;
        bottom: 16px;
        right: 16px;
        gap: 6px;
    }

    .whatsapp-float i {
        font-size: 1.2rem;
    }

}

