/* Reset and Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #1a1a1a; color: #fff; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation - Transparent overlay */
.navbar { 
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4)); 
    position: fixed; 
    top: 0; 
    left: 0;
    right: 0;
    z-index: 1000; 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 203, 7, 0.2);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 20px; }
.logo a { font-size: 1.8rem; font-weight: 700; color: #F2CB07; text-decoration: none; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
.nav-menu { display: flex; list-style: none; gap: 35px; }
.nav-menu a { 
    color: rgba(255,255,255,0.9); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 1.05rem;
    transition: all 0.3s; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
.nav-menu a:hover { color: #F2CB07; transform: translateY(-2px); }
.btn-nav { padding: 10px 25px; font-size: 0.95rem; box-shadow: 0 4px 10px rgba(242, 203, 7, 0.3); }

/* Hero - Add padding for fixed nav */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('/images/image_02.webp'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 120px 20px 80px;
}
.hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 25px; text-shadow: 3px 3px 6px rgba(0,0,0,0.9); letter-spacing: 2px; }
.hero .subtitle { font-size: 1.3rem; margin-bottom: 35px; max-width: 700px; margin-left: auto; margin-right: auto; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }

/* Buttons */
.btn { display: inline-block; padding: 15px 45px; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary { background: linear-gradient(135deg, #F2CB07, #e0b800); color: #000; box-shadow: 0 4px 15px rgba(242, 203, 7, 0.4); }
.btn-primary:hover { background: linear-gradient(135deg, #e0b800, #c9a600); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(242, 203, 7, 0.6); }

/* Sections */
section { padding: 100px 0; }
section h2 { text-align: center; font-size: 2.8rem; margin-bottom: 60px; text-transform: uppercase; letter-spacing: 2px; }
.section-subtitle { text-align: center; color: #ccc; margin-top: -40px; margin-bottom: 50px; font-size: 1.2rem; }

/* About */
.about { background-color: #222; }
.about p { max-width: 800px; margin: 0 auto; text-align: center; font-size: 1.15rem; color: #ddd; line-height: 1.8; }

/* Services */
.services { background-color: #1a1a1a; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; margin-top: 60px; }
.service-card { 
    background: linear-gradient(145deg, #2a2a2a, #242424); 
    border-radius: 12px; 
    overflow: hidden; 
    transition: all 0.3s; 
    border: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(242, 203, 7, 0.3); border-color: #F2CB07; }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card h3 { padding: 25px 25px 10px; font-size: 1.4rem; }
.service-card .price { padding: 0 25px; color: #F2CB07; font-weight: 700; font-size: 1.2rem; margin-bottom: 15px; }
.service-card .description { padding: 0 25px 25px; color: #bbb; font-size: 0.98rem; line-height: 1.6; }

/* Hours */
.hours { background-color: #222; }
.hours-grid { max-width: 650px; margin: 0 auto; background: linear-gradient(145deg, #2a2a2a, #252525); border-radius: 12px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.hours-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #404040; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: #fff; font-size: 1.05rem; }
.hours-row .time { color: #bbb; font-size: 1.05rem; }
.hours-note { text-align: center; margin-top: 35px; font-style: italic; color: #F2CB07; font-size: 1.1rem; }

/* Testimonials */
.testimonials { background-color: #1a1a1a; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; margin-top: 60px; }
.testimonial-card { 
    background: linear-gradient(145deg, #2a2a2a, #242424); 
    border-radius: 12px; 
    padding: 35px; 
    border-left: 5px solid #F2CB07;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.testimonial-card .quote { font-size: 1.1rem; color: #fff; margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial-card .author { color: #F2CB07; font-weight: 600; font-size: 1.05rem; }
.testimonial-card .rating { color: #F2CB07; font-size: 1.3rem; margin-top: 12px; }

/* Contact */
.contact { background-color: #222; text-align: center; }
.contact-info { margin-bottom: 50px; }
.contact-info p { margin: 15px 0; font-size: 1.15rem; }
.contact-info strong { color: #F2CB07; font-size: 1.3rem; }
.contact-info a { color: #F2CB07; text-decoration: none; transition: color 0.3s; }
.contact-info a:hover { color: #fff; }
.map { max-width: 900px; margin: 50px auto 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

/* Footer */
footer { background-color: #0a0a0a; padding: 40px 0; text-align: center; color: #888; border-top: 1px solid #222; font-size: 0.95rem; }

/* Mobile */
@media (max-width: 968px) {
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero { min-height: 80vh; }
    section { padding: 60px 0; }
}
