/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

a { color: #c8f000; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================
   HEADER
   ===================== */
.site-header {
    background: linear-gradient(90deg, #111 60%, #222);
    border-bottom: 3px solid #c8f000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-moto { height: 70px; width: auto; }
.logo-prox  { height: 55px; width: auto; }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.main-nav a:hover { color: #c8f000; text-decoration: none; }

/* =====================
   HERO SECTION
   ===================== */
.hero-section { position: relative; overflow: hidden; }
.hero-image { position: relative; }

.hero-bg-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.hero-slider-text {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    height: 80px;
}

.slide-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    transition: opacity 0.8s ease;
    pointer-events: none;
    width: max-content;
}

/* =====================
   ACTION SECTION
   ===================== */
.action-section {
    background: #111;
    padding: 30px 0;
    text-align: center;
}

.action-img {
    width: 100%;
    max-width: 980px;
    border-radius: 6px;
    border: 3px solid #333;
    display: inline-block;
}

/* =====================
   SECTION TITLES
   ===================== */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #c8f000;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #c8f000;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* =====================
   VIDEOS
   ===================== */
.videos-section {
    background: #1a1a1a;
    padding: 60px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 2px solid #333;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* =====================
   GALLERY
   ===================== */
.gallery-section {
    background: #111;
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #333;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.03);
    border-color: #c8f000;
}

/* =====================
   MAP & CONTACT INFO
   ===================== */
.map-section {
    background: #1a1a1a;
    padding: 60px 0;
}

.map-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333;
}
.map-wrapper iframe { display: block; }

.contact-info-box {
    background: #222;
    border-radius: 8px;
    padding: 28px;
    border: 1px solid #333;
}
.contact-info-box h3 {
    font-size: 1.5rem;
    color: #c8f000;
    margin-bottom: 15px;
}
.contact-info-box p { margin-bottom: 10px; font-size: 0.95rem; }
.contact-info-box a { color: #c8f000; }

.working-hours { margin-top: 20px; }
.working-hours h4 {
    color: #c8f000;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.working-hours table { width: 100%; border-collapse: collapse; }
.working-hours td {
    padding: 5px 8px;
    font-size: 0.9rem;
    border-bottom: 1px solid #333;
}
.working-hours td:last-child { text-align: right; color: #c8f000; font-weight: 600; }

/* =====================
   CONTACT FORM
   ===================== */
.contact-section {
    background: #111;
    padding: 60px 0;
}

#contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #222;
    border: 1px solid #444;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8f000;
}

.btn-submit {
    background: #c8f000;
    color: #111;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.btn-submit:hover { background: #aacc00; transform: translateY(-1px); }

.form-message {
    padding: 14px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}
.form-message.success { background: #1a4a1a; border: 1px solid #c8f000; color: #c8f000; }
.form-message.error   { background: #4a1a1a; border: 1px solid #ff4444; color: #ff4444; }

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: #0d0d0d;
    border-top: 3px solid #c8f000;
    padding: 30px 0 15px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-info { font-size: 0.9rem; line-height: 1.8; }
.footer-logo { height: 45px; width: auto; }

.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 15px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    .map-contact-wrap { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .slide-text { font-size: 1.8rem; letter-spacing: 2px; }
    .main-nav ul { gap: 14px; }
    .logo-moto { height: 50px; }
    .header-inner { justify-content: center; }
}