/**
 * Header & Footer Styles
 * Navigation, branding, and footer components
 */

/* ===========================
   HEADER NAVIGATION
   =========================== */

/* Navigation Brand */
.nav-brand {
	background: #fff url('/assets/images/logo_purple.webp') no-repeat center;
	background-size: 200px;
    height: 80px;
    padding: 15px;
    margin-left: 0px;
    width: 395px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand img {
    height: 60px;
    border: 0px solid;
    max-width: 100%;
    display: block;
}

/* Navigation Submenu Toggle Button */
.nav-submenu-toggle {
    border: none;
    padding-left: 5px;
    background: none;
    color: white;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.nav-submenu-toggle:hover {
    transform: scale(1.1);
}

/* Language Switcher Enhancement */
.language-switcher {
    padding-left: 10px;
}

/* Main Content Container */
.main-content {
    background: white;
    width: 1200px;
    margin: 0 auto;
}

/* ===========================
   FOOTER STYLES
   =========================== */

.main-footer {
    margin-top: auto;
    color: white;
}

.main-footer .container {
    background-image: url('/assets/images/footer.webp');
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    width: 1200px;
    margin: 0 auto;
    height: 346px;
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
	padding-top: 100px;
	padding-bottom: 0px;
}

.footer-section {
    color: white;
	text-align: center;
  	padding-left: 50px;
}

.footer-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Footer Logo */
.footer-section img {
    border: 0px solid;
    padding-top: 90px;
    padding-left: 50px;
    max-width: 100%;
    display: block;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ddd;
    padding-left: 5px;
}

/* Contact Info */
.contact-info {
    color: white;
	padding-left: 100px;
  	padding-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Contact Icons - Email */
.contact-info a[href^="mailto:"] {
    color: var(--color-white);
    font-size: 30px;
}

/* Contact Icons - Phone */
.contact-info a[href^="tel:"] {
    color: var(--color-white);
    font-size: 26px;
    padding-left: 20px;
}

/* Contact Icons - WhatsApp */
.contact-info a[href*="wa.me"] {
    color: var(--color-white);
    font-size: 30px;
    padding-left: 40px;
}

.contact-info a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem;
    text-align: center;
    background-color: var(--color-primary);
    border-top: 0px solid rgba(255, 255, 255, 0.1);
	margin-top: -10px;
}

.footer-copyright {
    color: white;
}

.footer-copyright p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}

.footer-copyright p:first-child {
    font-size: 10px;
    color: var(--color-white);
}

.footer-copyright p:last-child {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* ===========================
   USER MENU (DESKTOP ONLY)
   =========================== */

.user-menu {
    margin-left: auto;
}

.user-menu .user-menu-toggle {
    padding: 0;
    border: none;
    background: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.user-menu .user-menu-toggle:hover {
    transform: scale(1.1);
}

/* Hide mobile user menu on desktop */
.user-menu-mobile {
    display: none !important;
}