* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Georgia", "Times New Roman", serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin-left: auto;
    margin-right: auto;
}

/* HEADER */

.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b79a54;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #b79a54;
}

/* HODEGON SUITE LINK */

.suite-link {
    color: #b79a54 !important;
    font-weight: 700 !important;
    border: 1px solid #b79a54;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.suite-link:hover {
    background: #b79a54;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #222;
}

/* LANGUAGE SELECT */

.language-box {
    display: flex;
    align-items: center;
}

.language-box select {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
}

.language-box select:focus {
    border-color: #b79a54;
}

/* HERO SLIDER */

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 78px);
    min-height: 620px;
    overflow: hidden;
    background: #111;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: min(900px, 92%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-small {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8d19b;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(46px, 7vw, 92px);
    line-height: 1.05;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 21px;
    max-width: 720px;
    margin: 0 auto 34px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary {
    margin: 0 auto;
    background: #b79a54;
    color: #fff;
    border: 1px solid #b79a54;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary {
    margin: 20px 0 0;
    background: transparent;
    color: #b79a54;
    border: 1px solid #b79a54;
}

.btn-secondary:hover {
    background: #b79a54;
    color: #fff;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #b79a54;
    border-color: #b79a54;
}

.slider-btn.prev {
    left: 28px;
}

.slider-btn.next {
    right: 28px;
}

.slider-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
}

.slider-dots button.active {
    background: #b79a54;
    border-color: #b79a54;
}

/* GENERAL SECTIONS */

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 58px;
}

.section-subtitle {
    display: block;
    color: #b79a54;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title h2,
.about-content h2,
.contact-info h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;
    color: #111;
    margin-bottom: 18px;
}

.section-title p,
.about-content p,
.contact-info p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* ABOUT */

.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-content p {
    margin-bottom: 18px;
}

/* EVENTS SECTION */

.events-section {
    background: #f8f5ef;
}

.events-section .section-title {
    margin-bottom: 54px;
}

.events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.event-card {
    width: calc(33.333% - 19px);
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
}

.event-card-image {
    width: 100%;
    height: 245px;
    overflow: hidden;
    background: #eee;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.06);
}

.event-card-content {
    padding: 26px 24px 30px;
}

.event-card-content h3 {
    font-size: 24px;
    line-height: 1.25;
    color: #111;
    margin-bottom: 12px;
}

.event-card-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-card-link {
    display: inline-flex;
    color: #b79a54;
    font-weight: 700;
    border-bottom: 1px solid #b79a54;
    padding-bottom: 3px;
}

.event-card-link:hover {
    color: #111;
    border-color: #111;
}

.events-section-button {
    text-align: center;
    margin-top: 45px;
}

.events-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: #b79a54;
    border: 1px solid #b79a54;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.events-button:hover {
    background: transparent;
    color: #b79a54;
}

/* EVENTS DETAIL PAGE */

.events-hero {
    position: relative;
    min-height: 520px;
    background-image: url("../images/events/special-night.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.events-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.events-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.events-hero-content h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.08;
    margin-bottom: 22px;
    color: #fff;
}

.events-hero-content p {
    font-size: 20px;
    color: #f4f4f4;
    max-width: 760px;
    margin: 0 auto 32px;
}

/* MENU */

.menu-section {
    background: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.menu-card {
    background: #f8f5ef;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
}

.menu-img {
    width: 100%;
    height: 245px;
    overflow: hidden;
    background: #eee;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img img {
    transform: scale(1.08);
}

.menu-card-content {
    background: #f8f5ef;
    padding: 24px 22px 28px;
    text-align: center;
}

.menu-card-content h3 {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #111;
}

.menu-card-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* HOME QR MENU */

.home-qr-menu-box {
    margin: 55px auto 0;
    max-width: 620px;
    background: #fff;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 26px;
    align-items: center;
    padding: 26px 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.home-qr-menu-image {
    width: 150px;
    height: 150px;
    background: #f8f5ef;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-qr-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-qr-menu-text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b79a54;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.home-qr-menu-text a:hover {
    color: #111;
}

/* Eski QR class'ları kullanılırsa da bozulmasın */

.qr-menu-box {
    margin-top: 60px;
    background: #fff;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 38px;
    align-items: center;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.qr-menu-image {
    width: 220px;
    height: 220px;
    background: #f8f5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.qr-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-menu-content span {
    display: block;
    color: #b79a54;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.qr-menu-content h3 {
    font-size: 34px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 14px;
}

.qr-menu-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.qr-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border: 1px solid #b79a54;
    background: #b79a54;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.qr-menu-button:hover {
    background: transparent;
    color: #b79a54;
}

/* GALLERY */

.gallery-section {
    background: #f8f5ef;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    height: 310px;
    overflow: hidden;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 0.78;
}

/* CONTACT */

.contact-section {
    background: #f8f5ef;
    padding-top: 0;
}

.contact-map {
    width: 100%;
    height: 360px;
    margin-bottom: 80px;
    overflow: hidden;
    background: #eee;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(8%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-info ul {
    list-style: none;
    margin-top: 28px;
}

.contact-info li {
    font-size: 17px;
    color: #444;
    margin-bottom: 14px;
}

.contact-info li strong {
    color: #111;
    margin-right: 5px;
}

.contact-form {
    background: #fff;
    padding: 42px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 15px 16px;
    margin-bottom: 16px;
    font-size: 16px;
    outline: none;
    color: #222;
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b79a54;
}

/* FORM MESSAGES */

.form-message {
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    line-height: 1.5;
}

.form-message.success {
    background: #e8f6ed;
    color: #1d6b38;
    border: 1px solid #b9e3c7;
}

.form-message.error {
    background: #fdecec;
    color: #9b1c1c;
    border: 1px solid #f3bcbc;
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* CONTACT BUTTONS */

.contact-form .contact-button-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    margin-top: 6px !important;
}

.contact-form .contact-action-btn {
    width: 100% !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 20px !important;
    border-radius: 0 !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: all 0.3s ease !important;
}

.contact-form .contact-whatsapp-btn {
    background-color: #25d366 !important;
    border: 1px solid #25d366 !important;
    color: #ffffff !important;
}

.contact-form .contact-whatsapp-btn:hover {
    background-color: transparent !important;
    color: #25d366 !important;
}

.contact-form .contact-mail-btn {
    background-color: #b79a54 !important;
    border: 1px solid #b79a54 !important;
    color: #ffffff !important;
}

.contact-form .contact-mail-btn:hover {
    background-color: transparent !important;
    color: #b79a54 !important;
}

/* FOOTER */

.site-footer {
    background: #111;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.site-footer h3 {
    color: #b79a54;
    font-size: 22px;
    margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: #cfcfcf;
    font-size: 16px;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: #b79a54;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 22px 15px;
}

.footer-bottom p {
    font-size: 15px;
    color: #aaa;
}

/* RTL - ARABIC */

body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .header-inner,
body.rtl .main-nav,
body.rtl .logo-area {
    direction: rtl;
}

body.rtl .hero-content,
body.rtl .section-title,
body.rtl .menu-card-content {
    text-align: center;
}

body.rtl .about-content,
body.rtl .contact-info,
body.rtl .site-footer {
    text-align: right;
}

body.rtl .contact-info li strong {
    margin-right: 0;
    margin-left: 5px;
}

body.rtl .btn-secondary {
    margin-right: 0;
}

body.rtl .footer-bottom {
    text-align: center;
}

body.rtl .home-qr-menu-box,
body.rtl .qr-menu-box {
    direction: rtl;
}

/* MEDIUM DESKTOP */

@media only screen and (max-width: 1180px) {
    .main-nav {
        gap: 13px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .logo-text {
        font-size: 18px;
    }

    .suite-link {
        padding: 7px 9px;
    }

    .language-box select {
        max-width: 120px;
    }
}

/* TABLET */

@media only screen and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card {
        width: calc(50% - 14px);
    }
}

/* MOBILE */

@media only screen and (max-width: 820px) {
    .header-inner {
        min-height: 72px;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        border-top: 1px solid #eee;
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        border-bottom: 1px solid #eee;
        font-size: 16px;
    }

    .suite-link {
        border: none;
        color: #b79a54 !important;
        padding: 16px 0 !important;
    }

    .suite-link:hover {
        background: #f8f5ef;
        color: #b79a54 !important;
    }

    .language-box {
        width: 100%;
        justify-content: center;
        padding: 14px 0;
        border-bottom: 1px solid #eee;
    }

    .language-box select {
        width: 80%;
        max-width: none;
        height: 42px;
        text-align: center;
        font-size: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-slider {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        aspect-ratio: 16 / 9 !important;
        overflow: hidden !important;
        background: #111 !important;
    }

    .slide {
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.32);
    }

    .hero-content {
        width: 92%;
        padding: 0 18px;
        justify-content: center;
    }

    .hero-small {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 22px;
        font-size: 13px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 32px;
    }

    .slider-btn.prev {
        left: 14px;
    }

    .slider-btn.next {
        right: 14px;
    }

    .slider-dots {
        bottom: 12px;
    }

    .slider-dots button {
        width: 9px;
        height: 9px;
    }

    .section {
        padding: 80px 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 420px;
    }

    .home-qr-menu-box {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 360px;
        padding: 26px 22px;
    }

    .home-qr-menu-image {
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }

    .home-qr-menu-text a {
        font-size: 21px;
    }

    .qr-menu-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 24px;
        gap: 24px;
    }

    .qr-menu-image {
        margin: 0 auto;
        width: 200px;
        height: 200px;
    }

    .qr-menu-content h3 {
        font-size: 28px;
    }

    .qr-menu-button {
        width: 100%;
        padding: 14px 22px;
    }

    .event-card {
        width: calc(50% - 14px);
    }

    .events-hero {
        min-height: 430px;
    }

    .contact-section {
        padding-top: 0;
    }

    .contact-map {
        height: 300px;
        margin-bottom: 55px;
    }

    .contact-form {
        padding: 34px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    body.rtl .main-nav {
        direction: rtl;
    }

    body.rtl .main-nav a {
        text-align: center;
    }
}

/* SMALL MOBILE */

@media only screen and (max-width: 560px) {
    .logo-text {
        font-size: 16px;
    }

    .logo-img {
        height: 40px;
    }

    .hero-slider {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        aspect-ratio: 16 / 9 !important;
        overflow: hidden !important;
    }

    .slide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-content {
        padding: 0 14px;
    }

    .hero-small {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 5px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: 1.5px;
        margin-bottom: 7px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 12px;
    }

    .slider-btn {
        display: none;
    }

    .slider-dots {
        bottom: 8px;
    }

    .section {
        padding: 75px 0;
    }

    .section-title {
        margin-bottom: 42px;
    }

    .section-title h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 31px;
    }

    .section-title p,
    .about-content p,
    .contact-info p {
        font-size: 16px;
    }

    .menu-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .menu-img {
        height: 240px;
    }

    .home-qr-menu-box {
        margin-top: 42px;
        max-width: 330px;
        padding: 24px 18px;
    }

    .home-qr-menu-image {
        width: 140px;
        height: 140px;
    }

    .home-qr-menu-text a {
        font-size: 20px;
    }

    .qr-menu-box {
        margin-top: 42px;
        padding: 26px 20px;
    }

    .qr-menu-image {
        width: 180px;
        height: 180px;
    }

    .qr-menu-content h3 {
        font-size: 25px;
    }

    .qr-menu-content p {
        font-size: 16px;
    }

    .event-card {
        width: 100%;
    }

    .event-card-image {
        height: 220px;
    }

    .events-section-button {
        margin-top: 34px;
    }

    .events-button {
        width: 100%;
    }

    .events-hero {
        min-height: 390px;
    }

    .events-hero-content h1 {
        font-size: 36px;
    }

    .events-hero-content p {
        font-size: 16px;
    }

    .gallery-item {
        height: 260px;
    }

    .about-image img {
        height: 300px;
    }

    .contact-section {
        padding-top: 0;
    }

    .contact-map {
        height: 240px;
        margin-bottom: 45px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .contact-info li {
        font-size: 16px;
    }

    .form-message {
        font-size: 14px;
        padding: 12px 14px;
    }

    .contact-form .contact-button-group {
        grid-template-columns: 1fr !important;
    }

    .contact-form .contact-action-btn {
        height: 52px !important;
        min-height: 52px !important;
        font-size: 14px !important;
    }

    .language-box select {
        width: 86%;
    }
}

/* =========================================================
   HAKKIMIZDA BÖLÜMÜ PROFESYONEL DÜZENLEME
   Bu kod style.css dosyasının EN ALTINA eklenecek.
   ========================================================= */

.about-section {
    background: #ffffff;
    padding-top: 95px;
    padding-bottom: 95px;
}

.about-section .about-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.about-section .about-image {
    width: 47%;
    flex: 0 0 47%;
}

.about-section .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-section .about-content {
    width: 48%;
    flex: 0 0 48%;
    max-width: 590px;
}

.about-section .about-content .section-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 14px;
    color: #b79a54;
}

.about-section .about-content h2 {
    font-size: 42px;
    line-height: 1.18;
    letter-spacing: -0.4px;
    color: #111111;
    margin-bottom: 24px;
    max-width: 560px;
}

.about-section .about-content p {
    font-size: 17px;
    line-height: 1.85;
    color: #444444;
    margin-bottom: 18px;
    max-width: 560px;
}

.about-section .about-content .btn-secondary {
    margin-top: 16px;
    padding: 13px 32px;
    font-size: 14px;
}

/* TABLET HAKKIMIZDA */

@media only screen and (max-width: 1024px) {
    .about-section .about-grid {
        gap: 42px;
    }

    .about-section .about-image {
        width: 46%;
        flex: 0 0 46%;
    }

    .about-section .about-content {
        width: 50%;
        flex: 0 0 50%;
    }

    .about-section .about-content h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .about-section .about-image img {
        height: 440px;
    }
}

/* MOBİL HAKKIMIZDA */

@media only screen and (max-width: 820px) {
    .about-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .about-section .about-grid {
        display: block;
    }

    .about-section .about-image,
    .about-section .about-content {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .about-section .about-image {
        margin-bottom: 36px;
    }

    .about-section .about-image img {
        height: 380px;
    }

    .about-section .about-content {
        text-align: center;
    }

    .about-section .about-content h2 {
        font-size: 34px;
        line-height: 1.22;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-section .about-content p {
        font-size: 16px;
        line-height: 1.75;
        max-width: 100%;
    }

    .about-section .about-content .btn-secondary {
        margin-left: auto;
        margin-right: auto;
    }
}

/* KÜÇÜK MOBİL HAKKIMIZDA */

@media only screen and (max-width: 560px) {
    .about-section .about-image img {
        height: 300px;
    }

    .about-section .about-content h2 {
        font-size: 30px;
        line-height: 1.24;
    }

    .about-section .about-content .section-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .about-section .about-content p {
        font-size: 15.5px;
    }
}

/* GENEL BÖLÜM BAŞLIKLARI DÜZENLEME */

.section-subtitle {
    font-size: 16px !important;
    letter-spacing: 4px !important;
    font-weight: 700 !important;
    color: #b79a54 !important;
    margin-bottom: 16px !important;
}

.section-title h2,
.about-content h2,
.contact-info h2,
.events-hero-content h1,
.qr-menu-content h3 {
    font-size: 38px !important;
    line-height: 1.24 !important;
    letter-spacing: -0.2px !important;
    font-weight: 700 !important;
}

.section-title p,
.about-content p,
.contact-info p,
.event-card-content p,
.qr-menu-content p {
    font-size: 17px !important;
    line-height: 1.75 !important;
}

/* MOBİLDE BAŞLIKLARI DENGELE */

@media only screen and (max-width: 820px) {
    .section-subtitle {
        font-size: 14px !important;
        letter-spacing: 3px !important;
    }

    .section-title h2,
    .about-content h2,
    .contact-info h2,
    .events-hero-content h1,
    .qr-menu-content h3 {
        font-size: 32px !important;
        line-height: 1.25 !important;
    }

    .section-title p,
    .about-content p,
    .contact-info p,
    .event-card-content p,
    .qr-menu-content p {
        font-size: 16px !important;
    }
}

@media only screen and (max-width: 560px) {
    .section-subtitle {
        font-size: 13px !important;
        letter-spacing: 2px !important;
    }

    .section-title h2,
    .about-content h2,
    .contact-info h2,
    .events-hero-content h1,
    .qr-menu-content h3 {
        font-size: 29px !important;
    }
}
/* SPECIAL DAYS SECTION */

.special-days-section {
    background: #f8f5ef;
    padding-top: 90px;
    padding-bottom: 90px;
}

.special-days-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 58px;
    flex-wrap: wrap;
}

.special-days-video {
    width: 46%;
    min-width: 320px;
    flex: 1 1 420px;
    background: #111;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.special-days-video video {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
}

.special-days-content {
    width: 48%;
    min-width: 320px;
    flex: 1 1 420px;
    max-width: 580px;
}

.special-days-content .section-subtitle {
    display: block;
    color: #b79a54;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 18px;
    font-weight: 700;
}

.special-days-content h2 {
    font-size: 40px;
    line-height: 1.22;
    letter-spacing: -0.3px;
    color: #111;
    margin-bottom: 24px;
    max-width: 560px;
}

.special-days-content p {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 26px;
    max-width: 560px;
}

.special-days-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border: 1px solid #b79a54;
    background: #b79a54;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.special-days-button:hover {
    background: transparent;
    color: #b79a54;
}

/* MOBILE SPECIAL DAYS */

@media only screen and (max-width: 820px) {
    .special-days-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .special-days-wrap {
        display: block;
    }

    .special-days-video,
    .special-days-content {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .special-days-video {
        margin-bottom: 36px;
    }

    .special-days-video video {
        height: 420px;
    }

    .special-days-content {
        text-align: center;
    }

    .special-days-content h2 {
        font-size: 34px;
        line-height: 1.24;
        max-width: 100%;
    }

    .special-days-content p {
        font-size: 16px;
        line-height: 1.75;
        max-width: 100%;
    }

    .special-days-button {
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 560px) {
    .special-days-video video {
        height: 360px;
    }

    .special-days-content h2 {
        font-size: 30px;
    }

    .special-days-content .section-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .special-days-button {
        width: 100%;
    }
}
/* SPECIAL DAYS VIDEO DİKEY FORMAT DÜZELTME */

.special-days-video {
    width: 34%;
    max-width: 360px;
    min-width: 300px;
    background: #111;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.special-days-video video {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    display: block;
    object-fit: cover;
    background: #111;
}

.special-days-content {
    width: 58%;
    min-width: 320px;
}

/* TABLET */

@media only screen and (max-width: 820px) {
    .special-days-video {
        width: 100%;
        max-width: 360px;
        min-width: 0;
        margin: 0 auto 36px;
    }

    .special-days-video video {
        width: 100%;
        aspect-ratio: 9 / 16;
        height: auto;
    }

    .special-days-content {
        width: 100%;
        text-align: center;
    }
}

/* MOBİL */

@media only screen and (max-width: 560px) {
    .special-days-video {
        max-width: 320px;
    }
}
/* MOBİLDE SLIDER RESİMLERİ HİÇ KESİLMESİN İSTERSENİZ 
   AŞAĞIDAKİ BLOĞUN YORUM İŞARETLERİNİ KALDIRIN */

/*
@media only screen and (max-width: 820px) {
    .slide {
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-color: #111 !important;
    }
}
*/