/* Header y navegación igual que Index.html */
:root {
    --primary-color: #3A6044;
    --secondary-color: #B8AE94;
    --accent-color: #2C323B;
    --gray-color: #A0A0A0;
    --text-dark: #2C323B;
    --text-light: #fff;
    --background-light: #fff;
    --background-dark: #2C323B;
    --background-accent: #B8AE94;
    --gray-100: #333333;
    --gray-200: #2E2E2E;
    --gray-300: #292929;
    --gray-400: #242424;
    --gray-500: #1F1F1F;
    --gray-600: #1A1A1A;
    --gray-700: #151515;
    --gray-800: #121212;
    --gray-900: #0F0F0F;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'HK Modular', sans-serif;
}

body {
    color: var(--text-dark);
    background: var(--background-light);
    line-height: 1.6;
}

header {
    background: var(--primary-color) !important;
    padding: 1rem 2rem;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    color: var(--secondary-color) !important;
    font-size: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.company-name:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    position: relative;
}

.dropdown {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff !important;
    min-width: 200px;
    padding: 0.8rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.dropdown:hover .submenu {
    display: block;
}

.submenu li {
    list-style: none;
    padding: 0.3rem 0;
}

.submenu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #000 !important;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submenu a:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Add a small arrow indicator for the dropdown */
.dropdown > a::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 5px;
    vertical-align: middle;
    color: var(--secondary-color);
}

.nav-links a {
    color: var(--secondary-color) !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--text-light) !important;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.user-icon {
    color: var(--text-light);
    font-size: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* --- HAMBURGER MENU --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}
.menu-toggle i {
    font-size: 2.3rem;
    color: #fff;
    transition: color 0.3s, transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}
.menu-toggle:hover i,
.menu-toggle:focus i {
    color: #fff;
    transform: scale(1.15) rotate(10deg);
}
.menu-toggle:active i {
    color: #fff;
    transform: scale(0.95);
}
.menu-toggle i.fa-xmark {
    color: #fff;
    transition: color 0.3s, transform 0.3s;
}
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }
    .nav-right {
        display: none;
        position: absolute;
        top: 80px;
        right: 0.5rem;
        background: #fff;
        width: 80vw;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        flex-direction: column;
        align-items: flex-end;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        z-index: 1500;
        border-radius: 0 0 12px 12px;
    }
    .nav-right.active {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        font-size: 1rem;
        gap: 1rem;
        width: 100%;
        align-items: flex-end;
    }
    .nav-links a {
        font-size: 1.05rem;
        padding: 0.7rem 0.8rem;
    }
    .logo-container {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    .logo {
        height: 75px;
        max-width: 75px;
    }
    .company-name {
        font-size: 1.5rem;
        word-break: break-word;
        max-width: 200px;
    }
    .submenu {
        position: static;
        display: none;
        background: #fff !important;
        box-shadow: none;
        min-width: 100%;
        padding: 0.2rem 0;
        margin-top: 0.2rem;
        border-radius: 8px;
        z-index: 2001;
    }
    .dropdown.active .submenu,
    .dropdown:focus-within .submenu {
        display: block;
    }
    .submenu li {
        padding: 0.2rem 0;
    }
    .submenu a {
        font-size: 0.98rem;
        padding: 0.6rem 1.2rem;
        color: #3A6044 !important;
    }
    .submenu a:hover {
        background: #3A6044 !important;
        color: #B8AE94 !important;
    }
}
@media (max-width: 500px) {
    .logo {
        height: 55px;
        max-width: 55px;
    }
    .company-name {
        font-size: 1.15rem;
        max-width: 120px;
    }
}

.gallery-main {
    padding: 3rem 1rem;
    background: var(--background-light);
}
.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
    letter-spacing: 1px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.gallery-item {
    background: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44, 50, 59, 0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44, 50, 59, 0.18);
}
.gallery-item:hover img {
    transform: scale(1.07);
}
.gallery-video {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 3rem 0;
}
.gallery-video iframe {
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44, 50, 59, 0.10);
    max-width: 100%;
}
@media (max-width: 700px) {
    .gallery-title {
        font-size: 1.3rem;
    }
    .gallery-item {
        height: 140px;
    }
    .gallery-video iframe {
        height: 180px;
    }
}

/* --- FOOTER STYLES (igual que Index.html) --- */
.footer {
    background: var(--accent-color) !important;
    color: var(--secondary-color) !important;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-section h4 {
    color: var(--primary-color) !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}
.footer-logo h3 {
    color: var(--primary-color) !important;
    font-size: 1.4rem;
    font-weight: 600;
}
.company-description {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}
.contact-list,
.hours-list,
.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}
.contact-list a {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-list a:hover {
    color: var(--secondary-color) !important;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hours-list li:last-child {
    border-bottom: none;
}
.days {
    color: var(--text-light);
    font-weight: 500;
}
.hours {
    color: var(--text-light);
    opacity: 0.8;
}
.links-list a {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
}
.links-list a:hover {
    color: var(--secondary-color) !important;
    transform: translateX(5px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.social-links {
    display: flex;
    gap: 2rem;
}
.social-links a {
    color: var(--primary-color) !important;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-700);
    border: 2px solid transparent;
}
.social-links a:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
}
.social-links a[aria-label="Facebook"]:hover {
    color: #1877F2;
    background: transparent;
    border-color: #1877F2;
}
.social-links a[aria-label="Instagram"]:hover {
    color: #E4405F;
    background: transparent;
    border-color: #E4405F;
}
.social-links a[aria-label="WhatsApp"]:hover {
    color: #25D366;
    background: transparent;
    border-color: #25D366;
}
.copyright {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    .footer-content {
        gap: 2rem;
    }
    .footer-section {
        text-align: center;
    }
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-logo {
        justify-content: center;
    }
    .contact-list li {
        justify-content: center;
    }
    .hours-list li {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .social-links {
        gap: 1.5rem;
    }
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}
