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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, p, a, span {
    overflow-wrap: break-word;
    word-break: break-word;
}



html {
    scroll-behavior: smooth;
}

body {
    font-family: serif;
}

/* ФОН */
.website {
    background-image: url("main.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #8c6b4f;
    padding: 15px 50px;
}

.logo a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 10px 22px;
    background: rgba(255,255,255,0.14);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: 0.25s;
}

.nav-links a:hover {
    background: #d8bea7;
    color: #14110d;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

/* HERO */
.hero {
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 30px;
}

/* БУТОН */
.btn {
    background-color: #e8d8c7;
    color: black;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* ДОЛНА СЕКЦИЯ */
.more-section {
    padding: 100px 50px;
    background-color: #f5f5f5;
    color: black;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}




/* ABOUT SECTION */

.about-section {
    padding: 100px 8%;
    background-color: #f7f3ee;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("bg1.jpg");
    background-repeat: repeat;
    background-size: 340px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.about-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;

    background-color: #14110d;
    color: white;

    padding: 60px;
    border-radius: 10px;
    border-top: 3px solid #d8bea7;
}

.about-text {
    width: 58%;
}
.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #f0e2d3;
    letter-spacing: 0.5px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 18px;
    color: #c9c2b8;
}

/* BUTTON */

.contact-btn {

    display: inline-block;

    margin-top: 10px;

    text-decoration: none;

    background-color: transparent;

    color: #d8bea7;
    border: 1.5px solid #d8bea7;

    padding: 14px 36px;

    border-radius: 4px;

    font-size: 15px;
    letter-spacing: 0.5px;

    font-weight: 600;

    transition: 0.25s;
}


.contact-btn:hover {

    background-color: #d8bea7;

    color: #14110d;
}

.about-image {
    width: 36%;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

html {

    scroll-behavior: smooth;
}



/* COURSES */

.courses-section {
    padding: 100px 8%;
    background-image: linear-gradient(rgba(20,17,13,0.87), rgba(20,17,13,0.87)), url("main2.jpg");
    background-size: cover;
    background-position: center;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 40px;
    color: #f0e2d3;
    letter-spacing: 1px;
}

.section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #d8bea7;
    margin: 22px auto 55px;
}


/* CONTAINER */

.courses-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}


/* CARD */

.course-card {
    width: 340px;
    background-color: #221c15;

    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(216,190,167,0.25);
    border-top: 3px solid #d8bea7;

    box-shadow: 0 10px 28px rgba(0,0,0,0.45);

    transition: 0.25s ease;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.28);
}


/* IMAGE */

.course-image {
    position: relative;
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(0.92);
}

.course-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,17,13,0.75), transparent 55%);
}


/* CONTENT */

.course-content {
    padding: 28px 26px 32px;
    color: white;
    text-align: left;
}

.course-content h3 {
    margin-bottom: 14px;
    font-size: 21px;
    letter-spacing: 0.5px;
    color: #f0e2d3;
}

.course-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
    color: #c9c2b8;
}


/* BUTTON */

.course-btn {
    display: inline-block;

    text-decoration: none;

    background-color: transparent;
    color: #d8bea7;
    border: 1.5px solid #d8bea7;

    padding: 11px 26px;

    border-radius: 4px;

    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;

    transition: 0.25s;
}

.course-btn:hover {
    background-color: #d8bea7;
    color: #14110d;
}










/* CONTACTS SECTION */

.contacts-section {

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 50px;

    background-color: #1f1f1f;

    padding: 80px;

    color: white;
}


/* LEFT SIDE */

.contacts-info {
    width: 35%;
}

.contacts-info h2 {

    font-size: 60px;

    color: #d8bea7;

    margin-bottom: 40px;
}

.contacts-info p {

    font-size: 28px;

    margin-bottom: 25px;

    font-weight: bold;
}


/* SOCIAL */

.social-box {

    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 30px;
}

.social-box img {

    width: 40px;
    height: 40px;
}

.social-box a {

    text-decoration: none;

    color: #d8bea7;

    font-size: 28px;

    font-weight: bold;
}

.social-box a:hover {

    color: white;
}


/* MAP */

.map-box {

    width: 100%;
    height: 450px;

    border-radius: 20px;

    overflow: hidden;
}







.reviews-section {
    padding: 100px 8%;
    background: #f7f3ee;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("bg1.jpg");
    background-repeat: repeat;
    background-size: 340px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.reviews-section h2,
.reviews-container {
    position: relative;
    z-index: 1;
}

.reviews-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
    color: #2b2117;
    letter-spacing: 1px;
}

.reviews-section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #b99572;
    margin: 22px auto 45px;
}

.reviews-lead {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 55px;
}

.reviews-lead img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d8bea7;
    box-shadow: 0 8px 20px rgba(43,33,23,0.15);
    margin-bottom: 14px;
}

.reviews-lead p {
    font-size: 14px;
    color: #6b5d4d;
    font-style: italic;
    letter-spacing: 0.3px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    width: 320px;
    background: #fff;
    padding: 38px 32px;
    border-radius: 6px;
    border-left: 3px solid #b99572;
    box-shadow: 0 4px 16px rgba(43,33,23,0.08);
    transition: 0.25s;
    position: relative;
}

.review-card:hover {
    box-shadow: 0 10px 24px rgba(43,33,23,0.14);
}

.review-card::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    right: 22px;
    font-family: 'Cinzel', serif;
    font-size: 60px;
    color: #ecdfce;
    line-height: 1;
}

.review-card h3 {
    color: #d4a017;
    font-size: 26px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.review-card p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 22px;
    color: #3a2d21;
    position: relative;
    z-index: 1;
}

.review-card span {
    font-weight: 600;
    color: #8c6b4f;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.review-photos {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.review-photos img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: 0.25s;
    cursor: zoom-in;
}

.review-photos img:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* EXPANDABLE REVIEW TEXT */
.review-text-wrap {
    max-height: 92px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.review-text-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
    pointer-events: none;
}

.review-text-wrap.expanded {
    max-height: 1200px;
}

.review-text-wrap.expanded::after {
    display: none;
}

.read-more-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
    margin-bottom: 16px;
}

.read-more-btn {
    display: inline-block;
    background: #8c6b4f;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.3px;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 30px;
    transition: 0.25s;
    box-shadow: 0 4px 12px rgba(140,107,79,0.3);
}

.read-more-btn:hover {
    background: #6e533d;
    box-shadow: 0 6px 16px rgba(140,107,79,0.4);
    transform: translateY(-1px);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,17,13,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: zoom-out;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.reviews-cta {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 50px;
}

.reviews-cta a {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: #8c6b4f;
    border: 1.5px solid #8c6b4f;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.25s;
}

.reviews-cta a:hover {
    background: #8c6b4f;
    color: white;
}






.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 22px;
}

.logo-link img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}






























/* HERO */

.hero {

    min-height: 100vh;

    background-image: url("main.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    position: relative;
    padding: 40px 6%;
}

/* Затъмнение */

.hero::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.45);
}

/* Съдържание */

.hero-content {

    position: relative;

    z-index: 2;

    color: white;

    padding: 0 20px;
}

/* IM */

.hero-logo {

    font-size: clamp(28px, 9.5vw, 120px) !important;

    color: #d8bea7;

    margin-bottom: 10px;

    letter-spacing: 8px;
}

/* PROFESSIONAL ACADEMY */

.hero-title {

    font-size: clamp(17px, 5.5vw, 80px) !important;

    margin-bottom: 30px;

    letter-spacing: 3px;

    line-height: 1.2;
}

/* Текст */

.hero-text {

    font-size: clamp(12px, 3.6vw, 32px) !important;

    font-weight: bold;

    margin-bottom: 40px;

    color: #f5e8d9;
}

/* Бутон */

.hero-btn {

    display: inline-block;

    text-decoration: none;

    background: #d8bea7;

    color: black;

    padding: 18px 50px;

    border-radius: 40px;

    font-size: 22px;

    font-weight: bold;

    transition: 0.3s;
}

.hero-btn:hover {

    background: #c6a889;

    transform: translateY(-3px);
}









body{
    font-family: 'Montserrat', sans-serif;
}

h1,h2,h3{
    font-family: 'Cinzel', serif;
}
















.text-scroll {

    height: 220px;

    overflow-y: auto;

    padding-right: 15px;

    margin-bottom: 30px;
}

/* Красив скрол */

.text-scroll::-webkit-scrollbar {
    width: 8px;
}

.text-scroll::-webkit-scrollbar-track {
    background: #2c2c2c;
    border-radius: 10px;
}

.text-scroll::-webkit-scrollbar-thumb {
    background: #d8bea7;
    border-radius: 10px;
}
/* MAP WRAPPER + LINK */
.map-wrap {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.maps-link {
    align-self: flex-start;
    text-decoration: none;
    color: #d8bea7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(216,190,167,0.4);
    padding-bottom: 2px;
    transition: 0.2s;
}

.maps-link:hover {
    color: #fff;
    border-color: #fff;
}

/* ============ RESPONSIVE ============ */

.navbar { flex-wrap: wrap; row-gap: 12px; }
.about-container { flex-wrap: wrap; }
.contacts-section { flex-wrap: wrap; }
.course-card { width: 340px; max-width: 100%; }
.review-card { width: 320px; max-width: 100%; }

@media (max-width: 900px) {
    .about-container { padding: 40px; gap: 30px; }
    .about-text, .about-image { width: 100%; }
    .about-image { order: -1; }
    .contacts-info, .map-wrap { width: 100%; }
    .courses-section, .about-section, .reviews-section { padding: 70px 6%; }
    .section-title h2, .reviews-section h2 { font-size: 32px; }
}

@media (max-width: 600px) {
    .navbar { padding: 15px 20px; justify-content: space-between; position: relative; }
    .logo-link span { font-size: 17px; }
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #8c6b4f;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px 20px;
        gap: 10px;
        margin-top: 0;
        z-index: 100;
        box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    }
    .nav-links.open { display: flex; }
    .nav-links a { margin-left: 0; font-size: 14px; text-align: center; width: 100%; }

    .hero-title { letter-spacing: 0.3px; line-height: 1.3; margin-bottom: 16px; }
    .hero-logo { letter-spacing: 2px; margin-bottom: 6px; }
    .hero-text { margin-bottom: 24px; }
    .hero-btn { padding: 14px 32px; font-size: 15px; }

    .about-container { padding: 28px; border-radius: 6px; }
    .about-text h2 { font-size: 24px; }
    .about-text p { font-size: 15px; }

    .courses-section, .about-section, .reviews-section, .contacts-section { padding: 55px 6%; }
    .section-title h2, .reviews-section h2 { font-size: 26px; }
    .courses-container, .reviews-container { gap: 20px; }
    .course-card, .review-card { width: 100%; max-width: 380px; }

    .contacts-info h2 { font-size: 34px; }
    .contacts-info p { font-size: 17px; }
    .map-box { height: 280px; }
}

@media (max-width: 380px) {
    .hero-btn { padding: 12px 26px; font-size: 14px; }
}
