/* MASSCOMPAS Barbershop - Main Styles */
:root {
    --primary-color: #002868;
    --secondary-color: #D4AF37;
    --accent-color: #FF0000;
    --dark-blue: #10183A;
    --gradient-red: #8B1538;
    --yellow: #FFC107;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
    --light-gray: #F8F9FA;
}

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

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
}

/* Header Styles */
.header {
    background: rgba(16, 24, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo a {
    color: var(--yellow);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.header .nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header .nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

.header .nav a:hover {
    color: var(--yellow);
}

/* Button Styles */
.btn {
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background: #FFB300;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #E53935;
    color: white;
}

.btn-secondary:hover {
    background: #C62828;
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 10px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
}

.lang-btn.active {
    background: var(--yellow);
    color: var(--dark-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-top: 0;
    min-height: calc(100vh - 200px);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #002868 0%, #8B1538 100%);
    color: white;
    margin-top: 4rem;
}

.footer-main {
    padding: 3rem 0 1.5rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand .brand-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 0.25rem;
}

.footer-brand .brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand .brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: #FFC107;
    color: #002868;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFC107;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.footer-badge {
    display: flex;
    align-items: center;
}

.haiti-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .header .nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .language-selector {
        position: absolute;
        top: 60px;
        right: 20px;
    }
    
    /* Footer Mobile Optimization */
    .footer {
        margin-top: 3rem;
    }
    
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer .container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-brand .brand-logo h3 {
        font-size: 1.6rem;
    }
    
    .footer-brand .brand-description {
        max-width: 100%;
        font-size: 0.95rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-title {
        font-size: 1.15rem;
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        font-size: 0.95rem;
        display: inline-block;
    }
    
    .footer-links a:hover {
        padding-left: 0;
        transform: translateX(5px);
    }
    
    .footer-contact .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        margin-top: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .copyright p {
        font-size: 0.85rem;
    }
    
    .footer-badge {
        justify-content: center;
    }
    
    .haiti-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-brand .brand-logo h3 {
        font-size: 1.5rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .contact-item span {
        text-align: center;
    }
    
    .copyright p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .haiti-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}