/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4A574;
    --text-dark: #2A2A2A;
    --text-light: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-dark: #000000;
    --transition: all 0.3s ease;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
}

html, body {
    background-color: black !important;
    margin: 0;
    padding: 0;
}

/* Also check if you have any wrapper divs */
.wrapper, .container, .main {
    background-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-top {
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.8;
}

.header-top span {
    margin: 0 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.btn-visit {
    background: var(--primary-color);
    color: var(--text-light) !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-visit:hover {
    background: #c49564;
    transform: translateY(-2px);
}

.language-selector {
    color: var(--text-light);
    font-size: 12px;
    cursor: pointer;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite;
}

@keyframes heroZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
}

.hero-date {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.hero-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    animation: fadeInUp 1s ease-out 0.8s both;
    margin: 0 auto;
    text-align: center;
}

.hero-btn:hover {
    background: #c49564;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Working Hours */
.working-hours {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
    color: var(--text-light);
    z-index: 10;
}

.working-hours-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.working-hours-text {
    font-size: 12px;
    opacity: 0.9;
}

/* Main Content Sections */
main {
    background: var(--text-light);
}

.content-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-btn {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.service-btn:hover {
    background: #c49564;
    transform: translateY(-2px);
}

/* About Us Section */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.about-btn:hover {
    background: #c49564;
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    background: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* About Author Section */
.about-author-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.about-author-section .section-title {
    color: var(--text-light);
}

.about-author-section .section-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.author-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
}

.author-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.author-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: var(--primary-color);
}

.author-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.author-btn:hover {
    background: #c49564;
    transform: translateY(-2px);
}

.author-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
}

/* Events Section */
.events-section {
    background: var(--text-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.event-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-date {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.event-details {
    margin-bottom: 20px;
}

.event-time, .event-location, .event-price {
    font-size: 14px;
    margin-bottom: 5px;
    color: #666;
}

.event-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.event-btn {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.event-btn:hover {
    background: #c49564;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--text-light);
    margin: 2% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-dark);
}

/* Event Modal Styles */
.event-modal h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.event-modal .event-date {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-modal .event-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.event-modal .event-description p {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

.event-modal .event-description ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.event-modal .event-description li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.event-modal .event-description li::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-size: 14px;
}

.event-modal .event-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-modal .event-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-details-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.3);
}

.event-details-btn:hover {
    background: #c19a6b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 154, 107, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .header-top {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .working-hours {
        position: static;
        margin-top: 30px;
        padding: 20px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        order: 3;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-slider {
        order: 2;
    }
    
    .about-content,
    .author-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .services-grid,
    .events-grid,
    .price-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .nav-container {
        padding: 10px 15px;
        height: 70px;
    }
    
    .header-top {
        padding: 5px 15px;
        font-size: 0.7rem;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Event Button Styles */
.event-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    margin-top: 15px;
}

.event-btn:hover {
    background: #c19a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.3);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
        position: relative;
        z-index: 10001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 9999;
        padding: 80px 20px 20px;
        overflow-y: auto;
        display: flex;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-menu li {
        margin: 12px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: 0.3s ease-in-out;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 15px 20px;
        border-radius: 8px;
        transition: 0.3s;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }
    
    .language-selector {
        font-size: 1.2rem;
        padding: 10px 20px;
        border: 2px solid var(--text-light);
        border-radius: 25px;
        margin-top: 20px;
    }
    
    /* Header adjustments */
    .header-top {
        flex-direction: column;
        gap: 5px;
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    /* Hero section adjustments */
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        display: flex;
        z-index: 1;
        position: relative;
    }
    
    .hero-content {
        order: 1;
        padding: 40px 20px;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 800px;
    }
    
    .hero-slider {
        order: 2;
    }
    
    .working-hours {
        position: static;
        margin-top: 30px;
        padding: 20px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        order: 3;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    /* Grid adjustments */
    .services-grid,
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    /* About section adjustments */
    .about-content,
    .author-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Features section adjustments */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    /* Content sections */
    .content-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    /* Cards adjustments */
    .service-content,
    .event-content {
        padding: 20px;
    }

    .service-content h3,
    .event-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .service-content p,
    .event-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* About text adjustments */
    .about-text h2,
    .author-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .about-text p,
    .author-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Feature adjustments */
    .feature {
        padding: 25px 15px;
    }

    .feature h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .feature p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .event-card {
        min-width: 280px;
    }
    
    .service-content,
    .event-content {
        padding: 20px;
    }
    
    .content-section {
        padding: 40px 15px;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
    
    .header-top {
        padding: 5px 15px;
        font-size: 0.7rem;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .burger-menu span {
        width: 20px;
        height: 2px;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 12px 15px;
    }
    
    .language-selector {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-link,
    .hero-btn,
    .service-btn,
    .event-btn,
    .booking-btn,
    .offer-btn,
    .course-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .content-section {
        margin: 0;
    }
    
    /* Improve card shadows on mobile */
    .service-card,
    .event-card,
    .pricing-card,
    .offer-card,
    .course-card {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve text readability */
    p, li {
        line-height: 1.6;
    }
    
    /* Better button spacing */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-btn {
        width: fit-content;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    /* Even better touch targets for small screens */
    .nav-link,
    .hero-btn,
    .service-btn,
    .event-btn,
    .booking-btn,
    .offer-btn,
    .course-btn {
        min-height: 48px;
        font-size: 1rem;
    }
    
    .hero-btn {
        width: fit-content;
        margin: 0 auto;
        display: block;
    }
    
    /* Reduce padding for very small screens */
    .content-section {
        padding: 30px 10px;
    }
    
    .service-content,
    .event-content,
    .pricing-card,
    .offer-content,
    .course-content {
        padding: 15px;
    }
    
    /* Better text sizing */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* Improve grid layouts */
    .services-grid,
    .events-grid,
    .offers-grid,
    .pricing-grid,
    .courses-grid {
        gap: 20px;
    }
    
    /* Better image heights */
    .service-image,
    .event-image,
    .offer-image,
    .course-image {
        height: 160px;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        padding: 40px 20px 20px;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .burger-menu span {
        transition: none;
    }
    
    .nav-menu {
        transition: none;
    }
    
    .nav-menu li {
        transition: none;
    }
}

/* Focus styles for better accessibility */
.nav-link:focus,
.hero-btn:focus,
.service-btn:focus,
.event-btn:focus,
.booking-btn:focus,
.offer-btn:focus,
.course-btn:focus,
.burger-menu:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* This can be expanded for dark mode support */
}

/* Print styles */
@media print {
    .header,
    .footer,
    .burger-menu,
    .nav-menu {
        display: none !important;
    }
    
    .content-section {
        padding: 20px 0;
        margin: 0;
    }
    
    .service-card,
    .event-card,
    .pricing-card,
    .offer-card,
    .course-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* SEO and Performance Optimizations */

/* Preload critical resources */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Optimize font loading */
@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
}

/* Critical CSS for above-the-fold content */
.hero-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

.service-card,
.event-card,
.pricing-card,
.offer-card,
.course-card {
    content-visibility: auto;
    contain-intrinsic-size: 0 300px;
}

/* Optimize images */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Reduce layout shift */
.logo-image {
    aspect-ratio: 1;
    width: auto;
    height: 50px;
}

.service-image,
.event-image,
.offer-image,
.course-image {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

/* Improve Core Web Vitals */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: no-preference) {
    .service-card:hover,
    .event-card:hover,
    .pricing-card:hover,
    .offer-card:hover,
    .course-card:hover {
        transform: translateY(-10px);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Print styles for better accessibility */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    a, a:visited {
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
    
    .header,
    .footer,
    .burger-menu,
    .nav-menu {
        display: none !important;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --text-dark: #000000;
        --text-light: #ffffff;
        --bg-light: #ffffff;
        --bg-dark: #000000;
    }
    
    .service-card,
    .event-card,
    .pricing-card,
    .offer-card,
    .course-card {
        border: 2px solid #000000;
    }
}

/* Focus visible for better accessibility */
.nav-link:focus-visible,
.hero-btn:focus-visible,
.service-btn:focus-visible,
.event-btn:focus-visible,
.booking-btn:focus-visible,
.offer-btn:focus-visible,
.course-btn:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Semantic HTML improvements */
main {
    outline: none;
}

section {
    outline: none;
}

/* Improve text readability */
p, li {
    max-width: 65ch;
    line-height: 1.6;
}

/* Optimize headings hierarchy */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-top: 0;
}

/* Improve link accessibility */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Optimize for mobile performance */
@media (max-width: 768px) {
    /* Reduce paint complexity on mobile */
    .service-card,
    .event-card,
    .pricing-card,
    .offer-card,
    .course-card {
        will-change: transform;
    }
    
    /* Optimize touch targets */
    button,
    .nav-link,
    .hero-btn,
    .service-btn,
    .event-btn,
    .booking-btn,
    .offer-btn,
    .course-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .burger-menu {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        align-items: center !important;
        padding: 0 !important;
        right: auto !important;
        gap: 40px !important;
    }
    
    .nav-menu li {
        margin: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .nav-link {
        font-size: 12px !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }
    
    .nav-link:hover {
        background: transparent !important;
        transform: none !important;
    }
    
    .language-selector {
        font-size: 12px !important;
        padding: 6px 10px !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 4px !important;
        margin-top: 0 !important;
    }
    
    /* Desktop Hero Section */
    .hero {
        flex-direction: row !important;
        justify-content: center !important;
        padding-top: 0 !important;
        display: flex !important;
    }

    .hero-content {
        order: unset !important;
        padding: 0 20px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 800px !important;
        margin: 0 auto !important;
    }

    .hero-slider {
        order: unset !important;
    }

    .working-hours {
        position: absolute !important;
        bottom: 40px !important;
        left: 40px !important;
        margin-top: 0 !important;
        order: unset !important;
        background: rgba(0, 0, 0, 0.8) !important;
        padding: 20px !important;
        border-radius: 8px !important;
        backdrop-filter: none !important;
    }

    .hero-title {
        font-size: 4rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 1.5rem !important;
    }

    .hero-description {
        font-size: 1.1rem !important;
        line-height: 1.8 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-btn {
        padding: 15px 30px !important;
        font-size: 1rem !important;
        margin: 0 auto !important;
        display: inline-block !important;
        text-align: center !important;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-light);
}

.price-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.price-item {
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
}

.price-item:hover {
    transform: translateY(-2px);
}

.price-item .price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-item .price-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-item .price-note {
    display: block;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Для главной страницы - упрощенная версия */
.price-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price-item .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

    /* Pricing section adjustments */
    .price-content {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .price-item {
        padding: 20px 15px;
    }
    
    .price-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .price-item .price {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .price-item p {
        font-size: 0.8rem;
    }
    
    .price-item .price-label {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .price-item .price-value {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .price-item .price-note {
        font-size: 0.75rem;
    }

/* Mobile-specific fixes */
@media (max-width: 768px) {
    .about-section {
        padding: 20px 15px; /* Reduce padding on sides */
        margin: 0;
    }
    
    .about-text {
        font-size: 14px; /* Smaller font for mobile */
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    h2 {
        font-size: 24px; /* Smaller heading */
        margin-bottom: 15px;
    }
    
    /* Ensure full width usage */
    .content-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* General mobile viewport fix */
body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}
