
@font-face {
font-family: 'RazerF5';
src: url('/static/dehinted-RazerF5-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'RazerF5-bold';
src: url('/static/dehinted-RazerF5-Bold.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    background-image: url('/static/noroot.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: 'RazerF5', Arial, sans-serif;
    color: white;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    filter: brightness(0.1);
    z-index: -1;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#header-pic {
    height: 60px;
    width: auto;
}

.menu {
    display: flex;
    gap: 15px;
    align-items: center;
}

.menu-item {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Content Styles */
#content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: white;
}

.separator-line {
    margin: 30px 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin: 40px 0 20px;
    color: #FFD700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

/* Blocks */
.block {
    margin: 40px 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.block-content {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Table Layout */
.responsive-table {
    width: 100%;
    margin: 40px 0;
}

.table-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.table-cell {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.table-cell img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.table-cell h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.table-cell p {
    font-size: 16px;
    line-height: 1.6;
}

/* Image Styles */
.post-pic {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* Prices Section */
.prices-section {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px 20px;
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.prices-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #FFD700;
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 900px;
}

.prices-table th {
    background-color: #FFD700;
    color: #000;
    padding: 15px;
    font-weight: bold;
    font-family: 'RazerF5-bold';
    text-align: left;
}

.prices-table td {
    background-color: rgba(51, 51, 51, 0.8);
    color: white;
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prices-table tr:last-child td {
    border-bottom: none;
}

.detail-button {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 20px auto;
    display: block;
    width: fit-content;
}

.detail-button:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Slider - Updated for proper image display */
.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background-color: #222;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.slide-content {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: rgba(255, 215, 0, 0.8);
}

.slider-button.prev {
    left: 15px;
}

.slider-button.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFD700;
    transform: scale(1.2);
}

/* Fullscreen Modal */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.fullscreen-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.fullscreen-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
}

.fullscreen-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

/* Video */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

#training-video {
    width: 100%;
    height: 450px;
    border: none;
}

/* Map */
.map-container {
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);

}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Reviews */
.reviews-section {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 30px;
    text-align: center;
    margin: 50px auto;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.reviews-section::before {
/*    content: '';*/
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #FFD700 transparent transparent transparent;
}

.reviews-link {
    text-decoration: none;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    font-family: 'RazerF5-bold';
    position: relative;
    padding-right: 30px;
}

.reviews-link::after {
/*    content: '→';*/
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
}

/* Contacts */
.contacts-section {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px 20px;
    border-radius: 15px;
    margin: 50px 0;

    text-align: left;

}

.contacts-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #FFD700;
    text-align: center;
}

.contact-info {
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.6;
    padding-left: 20%;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.social-icon {
    width: 35px;
    height: 35px;
    fill: #FFD700;
}

.social-link:hover .social-icon {
    fill: #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(0, 0, 0, 0.9);
    margin-top: 50px;
}

#footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-text {
    color: #aaa;
    font-size: 14px;
    margin-top: 20px;
}

/* Back to Top Button */
#to-top-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #FFD700;
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 9999;
    display: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#to-top-button:hover {
    background-color: #FFC107;
    transform: translateY(-5px);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    #header-pic {
        height: 50px;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 70%;
        height: 100vh;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .menu.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
    }

    .menu-item {
        padding: 15px;
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .table-cell {
        flex: 100%;
        min-width: 100%;
    }

    .prices-table th,
    .prices-table td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slide {
        padding: 10px 0;
    }

    .slide img {
        max-height: 300px;
    }

    #training-video {
        height: 300px;
    }

    .map-container {
        height: 300px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .reviews-section {
        padding: 20px;
    }

    .reviews-link {
        font-size: 20px;
        padding-right: 25px;
    }

    .reviews-link::after {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .block-content {
        font-size: 16px;
    }

    .table-cell h3 {
        font-size: 1.5rem;
    }

    .prices-title {
        font-size: 1.8rem;
    }

    .contacts-title {
        font-size: 1.8rem;
    }

    #to-top-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
.prices-table-header-cell {
    text-align: left;
}
#location {
    scroll-margin-top: 20hv;
}