/* Global Fonts */
.happy-monkey-regular {
    font-family: "Happy Monkey", system-ui;
    font-weight: 400;
    font-style: normal;
}

.fredoka {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Base Styles */
body {
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
    transition: all 0.3s ease;
}

/* Hero Sections */
.init,
.us,
.products,
.contact {
    width: 100%;
    min-height: 80vh; /* Responsive height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 2rem 0; /* Add padding for mobile */
}

/* Specific Hero Backgrounds */
.init {
    background-image: url(../img/hero-home.jpg);
    background-blend-mode: soft-light;
    background-color: rgba(0, 0, 0, 0.3); /* Darken slightly for text readability */
}

.us {
    background-image: url(../img/hero-nosotros.jpg);
    background-color: rgba(38, 61, 120, 0.9); /* #263D78 with opacity */
    background-blend-mode: multiply;
}

.products {
    background-image: url(../img/hero-products.jpg);
    background-color: rgba(96, 167, 187, 0.9);
    background-blend-mode: multiply;
}

.contact {
    background-image: url(../img/hero-contacto.jpg);
    background-color: rgba(33, 106, 113, 0.9); /* #216a71 */
    background-blend-mode: multiply;
}

/* Typography Overrides */
.title {
    /* Removed fixed padding-top */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    /* Removed padding-top */
    line-height: 1.6;
}

.secondary-color {
    color: #263D78;
}

/* Cards & Components */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.product-card img {
    max-height: 200px;
    object-fit: contain;
}

/* Floating Buttons */
.fixed-bottom-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.btn-whats img,
.btn-messenger img {
    transition: transform 0.2s ease;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.3));
}

.btn-whats:hover img,
.btn-messenger:hover img {
    transform: scale(1.1);
}

/* Navbar */
.navbar-brand img {
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #263D78 !important;
    margin: 0 10px;
}

.nav-link:hover,
.nav-link.active {
    color: #e67e22 !important; /* Orange accent */
}

/* Footer */
footer {
    background-color: #343a40; /* Darker grey */
}

.footer-link:hover {
    color: #e67e22 !important;
    padding-left: 5px; /* Subtle movement */
}