/* ===========================================
   RESET
=========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    color: #222;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

img {
    max-width: 100%;
    display: block;
    border-radius: 4px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ===========================================
   HEADER + MENU + DROPDOWN
=========================================== */

.site-header {
    background: #111;
    color: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #C0392B;
    position: relative;
    z-index: 1000;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 55px; }

.main-nav > ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav li { position: relative; }

.main-nav a {
    color: #fff;
    font-weight: 500;
    padding: 6px 0;
    display: block;
}

.main-nav a:hover { color: #C0392B; }

/* Dropdown */
.has-dropdown > a { cursor: pointer; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 1px solid #333;
    min-width: 210px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 99999;
}

.dropdown li {
    padding: 10px 16px;
    white-space: nowrap;
}

.dropdown li:hover { background: #C0392B; }

.dropdown li a {
    color: #fff;
    display: block;
}

.has-dropdown:hover .dropdown,
.dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Dropdown içi dikey */
.has-dropdown .dropdown,
.has-dropdown .dropdown li,
.has-dropdown .dropdown ul {
    display: block !important;
}


/* ===========================================
   HERO
=========================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/hero-stage.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.hero-btn {
    padding: 14px 30px;
    background: #C0392B;
    color: white;
    border-radius: 6px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.hero-btn:hover { background: #a53026; }


/* ===========================================
   SECTIONS
=========================================== */

.section {
    padding: 70px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
    border-left: 6px solid #C0392B;
    padding-left: 10px;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 50px;
}


/* ===========================================
   CARDS (Atölyeler)
=========================================== */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.15);
}

.card-title {
    font-size: 1.3rem;
    padding: 15px;
    font-weight: 600;
}

.card-text {
    padding: 0 15px 20px;
    color: #444;
    font-size: 0.95rem;
}

.card .more {
    margin: 0 0 20px 15px;
    color: #C0392B;
    font-weight: 600;
}


/* ===========================================
   WORKSHOP PAGE
=========================================== */

.workshop-content {
    background: #fff;
    padding: 25px;
    border-left: 4px solid #C0392B;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    white-space: pre-line;
}


/* ===========================================
   FORM
=========================================== */

form label { font-weight: 600; }

form input,
form textarea {
    width: 100%;
    border: 1px solid #bbb;
    padding: 10px;
    border-radius: 4px;
    margin-top: 6px;
}

form button {
    margin-top: 10px;
    background: #C0392B;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    transition: 0.2s;
}

form button:hover { background: #a53026; }


/* ===========================================
   FOOTER
=========================================== */

.site-footer {
    background: #111;
    color: #eee;
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 2px solid #C0392B;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    color: #888;
    font-size: 0.85rem;
}


/* -----------------------------------------------------
   WORKSHOP PAGE - NEW DESIGN
------------------------------------------------------ */

.workshop-hero,
.workshop-header {
    position: relative;
    overflow: hidden;
}

.workshop-hero { height: 45vh; }
.workshop-header {
    height: 380px;
    border-bottom: 3px solid #C0392B;
    margin-bottom: 40px;
}

.workshop-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-hero-title,
.workshop-title {
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.workshop-hero-title h1 { font-size: 2.8rem; }

.workshop-title {
    font-size: 2.6rem;
}

.workshop-info {
    padding: 40px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
}

.info-item strong {
    display: block;
    color: #C0392B;
}

.info-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.workshop-instructor,
.workshop-detail,
.other-popular {
    padding: 50px 0;
}

/* Grid */
.workshop-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.workshop-info-box,
.workshop-content-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
    margin-bottom: 25px;
}

.workshop-info-box p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}


/* ===========================================
      EĞİTMEN KARTI (YENİ TASARIM)
=========================================== */

.instructor-card-new {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

/* Başlık */
.instructor-card-new h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}


.instructor-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.instructor-item {
    display: flex;
    align-items: center;       /* Dikey ortalama */
    gap: 18px;
    padding: 10px 0;
}

.instructor-photo-new {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}


/* İsim + unvan alanı */
.instructor-info {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* Dikey ortalama */
}

/* İsim */
.instructor-name {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.instructor-title {
    font-size: 14px;
    color: #666;
    margin: 3px 0 0 0;
}


.instructor-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


.instructor-text {
    display: flex;
    flex-direction: column;
    justify-content: center;    /* Dikey ortalama */
}


.instructor-hero {
    text-align: center;
    padding: 60px 0 40px;
    background: #F5EDE3;
}

.instructor-hero-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.instructor-hero-name {
    margin-top: 18px;
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.instructor-hero-title {
    font-size: 17px;
    color: #777;
    margin-top: 4px;
}

.instructor-page {
    margin-top: 40px;
    margin-bottom: 60px;
}

.instructor-bio-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

.instructor-bio-card h2 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}
.instructor-section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.instructor-ws-list .ws-card {
    text-decoration: none;
    color: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.2s;
}

.instructor-ws-list .ws-card:hover {
    transform: translateY(-4px);
}

/* ===========================================
   DİĞER POPÜLER ATÖLYELER – ŞIK GRID TASARIM
=========================================== */

.other-workshops {
    margin: 70px auto 60px;
    max-width: 900px;
}

.other-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
    border-left: 6px solid #C0392B;
    padding-left: 10px;
}

.other-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.other-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    border: 1px solid #ddd;
    transition: .25s ease;
    display: flex;
    flex-direction: column;
}

.other-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.other-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.other-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 15px 5px;
}

.other-card-btn {
    margin: 10px 15px 20px;
    padding: 10px 20px;
    background: #C0392B;
    color: #fff;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    transition: .2s ease;
    text-align: center;
}

.other-card-btn:hover { background: #a53026; }


/* CTA */
.btn-join {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    background: #C0392B;
    color: white;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.2s;
}

.btn-join:hover { background: #a53026; }

/* ==============================
   EĞİTMEN PROFİL SAYFASI
============================== */

.instructor-profile-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

/* Profil foto + isim */
.instructor-profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.instructor-profile-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.instructor-profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.instructor-profile-title {
    font-size: 1.2rem;
    color: #666;
}

/* Hakkında Kartı */
.instructor-about-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.instructor-about-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.instructor-contact-line {
    margin-top: 20px;
    color: #444;
}

/* Atölyeler */
.instructor-section-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
    text-align: left;
}

.instructor-workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.instructor-workshop-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: 0.25s;
}

.instructor-workshop-card:hover {
    transform: translateY(-5px);
}

.instructor-workshop-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

/* ============================
   INSTRUCTORS PAGE – MODERN
============================ */

.instructor-page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
}

.instructor-list-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.instructor-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Kart */
.instructor-card-v2 {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: #222;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.instructor-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Fotoğraf */
.instructor-photo-v2 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    display: block;
}

/* İsim */
.instructor-name-v2 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    font-weight: 700;
}

/* Ünvan */
.instructor-title-v2 {
    font-size: 1rem;
    color: #C0392B;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Bio */
.instructor-bio-v2 {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
/* ——————————————————
   Hakkımızda Sayfası
—————————————————— */

.about-wrapper {
    background: #f7eee5;
    padding-top: 60px;
    padding-bottom: 80px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 80px auto;
}

.about-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.about-photo-box {
    flex-shrink: 0;
}

.about-photo {
    width: 340px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.about-section {
    max-width: 900px;
    margin: 0 auto;
}

.about-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {

    .about-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-photo {
        width: 260px;
    }

    .about-text {
        font-size: 16px;
    }
}
/* --- Hakkımızda Hero --- */
.about-hero {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 18px;
    color: #555;
}

/* --- İki Kolon Alan --- */
.about-section {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 80px auto;
}

.about-text {
    flex: 1;
    font-size: 17px;
    line-height: 1.7;
}

.about-text .quote {
    margin-top: 20px;
    font-style: italic;
    color: #444;
    border-left: 3px solid #b23b1d;
    padding-left: 15px;
}

/* --- Fotoğraf --- */
.about-photo-wrapper {
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.mobile-menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        background: #111;
        padding: 15px 0;
    }

    .main-nav.open {
        display: block;
    }
    .main-nav > ul {
        display: none;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-nav.open > ul {
        display: flex;
    }
}

/* ===============================
   WORKSHOP CARD COMPONENT
================================ */

.ws-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: .25s;
}

.ws-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.18);
}

.ws-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ws-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.ws-body {
    padding: 16px;
}

.ws-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.ws-desc {
    font-size: 0.98rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.45;
}

.ws-more {
    display: inline-block;
    color: #C0392B;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 5px;
    transition: .2s;
}

.ws-more:hover {
    color: #a52d22;
}
/* ===============================
   WORKSHOP DETAIL PAGE
================================ */

/* HERO */
.ws-hero {
    position: relative;
    width: 100%;
    height: 340px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #C0392B;
    display: flex;
    align-items: flex-end;
}

.ws-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
}

.ws-hero-content {
    position: relative;
    padding: 30px;
    color: white;
    max-width: 900px;
}

.ws-hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ws-hero-info span {
    display: inline-block;
    margin-right: 15px;
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
}


/* PAGE LAYOUT */
.ws-page {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 50px;
    margin-top: 50px;
}


/* SOL TARAF */
.ws-section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #111;
    border-left: 6px solid #C0392B;
    padding-left: 10px;
}

.ws-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    line-height: 1.7;
    font-size: 1.05rem;
}


/* SAĞ TARAF — EĞİTMEN */
.ws-instructor-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.ws-inst-link {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    text-decoration: none;
    color: inherit;
}

.ws-inst-photo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

.ws-inst-name {
    font-size: 1.15rem;
    font-weight: 600;
}

.ws-inst-title {
    font-size: 0.95rem;
    color: #666;
}


/* BUTON */
.ws-join-btn {
    margin-top: 25px;
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: #C0392B;
    color: white;
    font-size: 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.25s;
}

.ws-join-btn:hover {
    background: #a53026;
}
/* BUTTON FIX */
button,
.btn-admin {
    display: inline-block;
    background: #C0392B !important;
    color: #fff !important;
    padding: 12px 22px !important;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.2s;
}

button:hover,
.btn-admin:hover {
    background: #a53026 !important;
}
/* WS HERO INFO YENİ TASARIM */

.ws-hero-info {
    margin-top: 25px;
    background: rgba(255,255,255,0.08);
    padding: 20px 25px;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.ws-info-row span {
    display: inline;
}
.ws-info-label {
    margin-right: 6px;
}


.ws-info-value {
    font-weight: 500;
}

/* ===============================
   MOBİL DÜZENLEMELER (max 768px)
   =============================== */
@media (max-width: 768px) {

    /* GENEL */
    body {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* ANA SAYFA HERO */
    .hero {
        height: auto;
        padding: 70px 20px 90px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* LİSTELEME (ATÖLYELER) */
    .workshops-grid,
    .cards,
    .card-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* ATÖLYE DETAY (ws-hero) */
    .ws-hero {
        padding: 40px 20px;
        height: auto !important;
        text-align: center;
    }

    .ws-hero-title {
        font-size: 1.9rem !important;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .ws-hero-subtitle {
        font-size: 1rem !important;
        margin-top: 10px;
    }

    /* ATÖLYE DETAY İÇERİK */
    .ws-content {
        padding: 20px !important;
    }

    /* EĞİTMEN KART */
    .instructor-card img {
        width: 100%;
        height: auto;
    }

    .instructor-card h3 {
        font-size: 1.1rem;
    }

    /* HAKKIMIZDA GÖRSELLER */
    .about-section img {
        width: 100%;
        height: auto;
    }

    /* FOOTER */
    footer .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* ===============================
   EXTRA MOBILE (max 480px)
   =============================== */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 1.7rem !important;
    }

    .ws-hero-title {
        font-size: 1.6rem !important;
    }

    .hero-content p,
    .ws-hero-subtitle {
        font-size: 0.95rem !important;
    }

    button,
    .btn,
    .cta-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}
@media (max-width: 768px) {

    .ws-page {
        display: block !important;
        padding: 0 16px !important;
    }

    .ws-left, 
    .ws-right {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Eğitmen kutusu */
    .ws-instructor-box {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* Join Button */
    .ws-join-btn {
        display: block;
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}
@media (max-width: 768px) {

    .ws-hero {
        height: auto !important;
        padding: 50px 20px !important;
        background-position: center top !important;
        text-align: center;
    }

    .ws-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px;
    }

    .ws-hero-info {
        width: 100% !important;
        margin: 0 auto !important;
    }

    .ws-info-row {
        width: 100% !important;
        text-align: left !important;
        display: block !important;
    }
}
@media (max-width: 768px) {

    .ws-content {
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
    }

    .ws-section-title {
        font-size: 1.6rem !important;
        margin: 20px 0 10px 0 !important;
    }
}
@media (max-width: 768px) {

    .ws-section {
        display: block !important;
        padding: 0 16px !important;
    }

    .ws-section h2 {
        margin-bottom: 12px !important;
        font-size: 1.6rem !important;
    }

    .ws-section p {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 10px !important;
    }
}
@media (max-width: 768px) {

    .ws-page {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Sol kolon (atölye içeriği + popüler atölyeler) üstte */
    .ws-left {
        order: 1 !important;
    }

    /* Eğitmen bloğu ORTA'ya gelecek */
    .ws-right {
        order: 2 !important;
        margin-top: 20px !important;
    }
}
@media (max-width: 768px) {

    /* Asıl kapsayıcıyı flex'e çeviriyoruz */
    .ws-page.container {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Atölye içeriği ilk sırada */
    .ws-left {
        order: 1 !important;
    }

    /* Eğitmen ikinci sırada */
    .ws-right {
        order: 2 !important;
        margin-top: 20px !important;
    }
}
@media (max-width: 768px) {
    .ws-page {
        display: flex;
        flex-direction: column;
    }

    .ws-left-top { order: 1; }
    .ws-right     { order: 2; }
    .ws-left-bottom { order: 3; }
}
/* MASAÜSTÜ ORJİNAL LAYOUT – 768px ÜSTÜ */
@media (min-width: 769px) {

    .ws-page {
        display: grid;
        grid-template-columns: 1fr 330px;
        gap: 50px;
    }

    .ws-left-top {
        grid-column: 1; /* Sol üst */
    }

    .ws-right {
        grid-column: 2; /* Sağ üst */
        grid-row: 1; 
    }

    .ws-left-bottom {
        grid-column: 1; /* Sol alt */
        grid-row: 2;
    }
}
@media (max-width: 768px) {
    .about-section {
        display: block !important;
        text-align: left;
    }

    .about-section h2 {
        margin-bottom: 12px;
    }

    .about-section p {
        width: 100% !important;
    }
}

