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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #3d2817;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

nav {
    background: linear-gradient(135deg, #3d2817 0%, #2a1a0f 100%);
    padding: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.logo {
    height: 120px;
    display: block;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.nav-links a:hover {
    background: #d4483b;
    border-color: #d4a84f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 72, 59, 0.4);
}

.hero {
    background: linear-gradient(135deg, #3d2817 0%, #2a1a0f 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('../logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    color: #f5f5f5;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #d4a84f;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

section {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4483b 0%, #d4a84f 100%);
}

h1, h2 {
    color: #d4483b;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 2.5rem;
}

h3 {
    color: #3d2817;
    margin-top: 1rem;
    font-size: 1.3rem;
}

p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

a {
    color: #d4483b;
    font-weight: 600;
    transition: color 0.3s;
}

a:hover {
    color: #d4a84f;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4483b 0%, #b83a2f 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2rem 0;
    box-shadow: 0 6px 20px rgba(212, 72, 59, 0.4);
    transition: all 0.3s;
    border: 3px solid #d4a84f;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 72, 59, 0.6);
    background: linear-gradient(135deg, #b83a2f 0%, #d4483b 100%);
}

.info-block {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #d4a84f;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.expect-item {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 3px solid #d4a84f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.price-card {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    border-left: 6px solid #d4a84f;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 168, 79, 0.3);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #d4483b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.coach {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    border-top: 4px solid #d4a84f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.coach:hover {
    transform: translateX(5px);
}

.schedule-day {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    border-left: 5px solid #d4483b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.schedule-day:hover {
    border-left-width: 8px;
    padding-left: 1.8rem;
}

.schedule-day h3 {
    color: #d4483b;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.schedule-day p {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-day p:last-child {
    border-bottom: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: #f0f0f0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-note {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 1.5rem;
}

.testimonial {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    border-left: 5px solid #d4a84f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #3d2817;
    margin-bottom: 1rem;
}

.author {
    text-align: right;
    font-weight: 700;
    color: #d4483b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4483b;
}

.submit-button {
    background: linear-gradient(135deg, #d4483b 0%, #b83a2f 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 72, 59, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 72, 59, 0.5);
}

.map-placeholder {
    background: #f0f0f0;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    border: 2px dashed #d4a84f;
}

footer {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #3d2817 0%, #2a1a0f 100%);
    color: #f5f5f5;
    margin-top: 3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
    
    .hero::before {
        width: 400px;
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    section {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .logo {
        height: 100px;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
