/* --- 1. ÜLDINE STIIIL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.6; background-color: #fcfaf8; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* --- 2. NAVIGATSIOON --- */
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo a { font-size: 26px; font-weight: 700; letter-spacing: 3px; color: #d4a373; text-decoration: none; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-right: 25px; }
nav ul li a { text-decoration: none; color: #444; transition: 0.3s; }
nav ul li a:hover, nav ul li a.active { color: #d4a373; font-weight: 600; }

.cta-button { background-color: #d4a373; color: white; padding: 12px 28px; text-decoration: none; border-radius: 50px; transition: 0.3s; font-size: 14px; font-weight: 600; border: none; cursor: pointer; }
.cta-button:hover { background-color: #bc8a5f; box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3); }

/* --- 3. HERO (AVALEHT) --- */
.hero { height: 75vh; background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1600&q=80'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero h1 { font-size: 3.5rem; margin-bottom: 15px; }
.btn-secondary { color: white; text-decoration: underline; font-weight: 600; }

/* --- 4. LEHEKÜLGEDE SISU --- */
.page-content { padding: 80px 8%; max-width: 1200px; margin: 0 auto; text-align: center; }
.section-intro { max-width: 800px; margin: 0 auto 60px; }
.section-intro h2 { font-size: 2.5rem; color: #d4a373; margin-bottom: 20px; }

/* --- 5. TEENUSTE DISAIN --- */
.services-detailed { display: flex; flex-direction: column; gap: 80px; margin-top: 40px; }
.service-block { display: flex; align-items: center; gap: 50px; text-align: left; }
.service-block.reverse { flex-direction: row-reverse; }
.service-text { flex: 1; }
.service-text h3 { font-size: 2rem; margin-bottom: 20px; }
.service-image { flex: 1; height: 400px; background-size: cover; background-position: center; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.service-list { list-style: none; margin-top: 20px; }
.service-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #ddd; }
.service-list li span { font-weight: 600; color: #d4a373; }

/* --- 6. MEISTRID (ÜMMARGUSED PILDID) --- */
.team-grid-round { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; margin-top: 50px; }
.team-member-round { text-align: center; }
.member-photo-round { width: 160px; height: 160px; margin: 0 auto 15px; border-radius: 50%; background-size: cover; background-position: center; border: 3px solid #d4a373; padding: 5px; transition: 0.3s; }
.team-member-round:hover .member-photo-round { transform: scale(1.05); }
.team-member-round h3 { font-size: 1.2rem; color: #333; }
.team-member-round p { font-size: 0.9rem; color: #d4a373; text-transform: uppercase; font-weight: 600; }

/* --- 7. BRONEERIMISVORM JA TURVALISUS --- */
.booking-form { max-width: 600px; margin: 0 auto; background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; gap: 15px; }
.booking-form input, .booking-form select, .booking-form textarea { padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 15px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; text-align: left; font-size: 13px; margin: 10px 0; color: #666; }
.form-checkbox input { width: auto; margin-top: 4px; }
.secure-badge { margin-top: 20px; font-size: 12px; color: #888; display: flex; align-items: center; justify-content: center; gap: 8px; background: #f0f0f0; padding: 10px; border-radius: 8px; }

/* --- 8. JALUS --- */
/* --- TÄIUSTATUD KESKJOONDATUD JALUS --- */
/* --- KOMPAKTNE JA KESKJOONDATUD JALUS --- */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 30px 8% 15px; /* Vähendasin ülemist ja alumist vahet */
    margin-top: 50px;
    text-align: center;
}

.footer-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap; /* Lubab mobiilis ridadeks minna */
    justify-content: center;
    gap: 20px; /* Vahe aadressi, tel ja meili vahel */
    font-size: 14px;
}

.footer-info strong {
    color: #d4a373;
    letter-spacing: 1px;
}

.footer-info span {
    opacity: 0.8;
}

.footer-info a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.footer-info a:hover {
    border-bottom: 1px solid #d4a373;
}

.footer-hours {
    font-size: 13px;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 11px;
    opacity: 0.4;
}

/* Mobiilis paneb asjad üksteise alla, et ei jääks kitsas */
@media (max-width: 600px) {
    .footer-info {
        flex-direction: column;
        gap: 8px;
    }
}
/* --- 9. MOBIIL --- */
@media (max-width: 768px) {
    .service-block, .service-block.reverse { flex-direction: column; gap: 20px; }
    .service-image { width: 100%; height: 300px; }
    .hero h1 { font-size: 2.5rem; }
    nav { flex-direction: column; gap: 15px; }
}