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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #dc2626, #ffffff, #2563eb);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #dc2626;
}

#lang-toggle {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#lang-toggle:hover {
    background: #b91c1c;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(220, 38, 38, 0.8), rgba(37, 99, 235, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="barberpole" patternUnits="userSpaceOnUse" width="10" height="20"><rect width="10" height="20" fill="%23ffffff"/><rect width="5" height="20" fill="%23dc2626"/><rect x="5" width="5" height="10" fill="%232563eb"/><rect x="0" y="10" width="5" height="10" fill="%232563eb"/></pattern></defs><rect width="100" height="100" fill="url(%23barberpole)"/></svg>');
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content .highlight {
    font-style: italic;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Sections */
section {
    padding: 4rem 0;
}

.about {
    background: white;
}

.services {
    background: #f3f4f6;
}

.hours {
    background: white;
}

.contact {
    background: #1f2937;
    color: white;
}

h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact h3 {
    color: white;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc2626;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

/* Hours */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.day {
    display: flex;
    justify-content: space-between;
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 5px;
    border-left: 3px solid #dc2626;
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

/* Footer */
footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    #lang-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }
    
    .hero {
        margin-top: 120px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}