@charset "utf-8";

/* === CUSTOM FONTS === */
@font-face {
    font-family: 'tomatoesregular';
    src: url('../fonts/Tomatoes-O8L8.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ============================================
   DISCOVER MARMARIS — Full Design System
   Replicating discovercappadocia.com layout
   ============================================ */

/* === RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #343434;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fefefe;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
    outline: none;
}

/* === UTILITY === */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.row {
    display: flex;
}

.column {
    display: flex;
    flex-direction: column;
}

.jCSBetween {
    justify-content: space-between;
}

.jCCenter {
    justify-content: center;
}

.aICenter {
    align-items: center;
}

.aIFlexEnd {
    align-items: flex-end;
}

.aIEnd {
    align-items: end;
}

.jCFlexEnd {
    justify-content: flex-end;
}

.flexGrow1 {
    flex-grow: 1;
}

.clear {
    clear: both;
}

.bold {
    font-weight: 900;
}

.light {
    font-weight: 300;
}

/* === TYPOGRAPHY === */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 900;
    color: #343434;
    line-height: 1.1;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

h4.light {
    color: #999;
}

p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.titleArea p {
    padding-top: 10px;
}

.titleColumn.center {
    text-align: center;
}

.titleColumn.center p {
    max-width: 731px;
    margin: 0 auto;
    padding-top: 20px;
}

.titleColumn.white h4,
.titleColumn.white p {
    color: #ffffff;
}

/* === HEADER === */
/* Default: absolute, transparent, overlaying the hero */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding-top: 3px;
    height: 103px;
    transition: all 0.4s ease;
}

/* On scroll: fixed with dark background */
header.fixed {
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    box-shadow: 2px 30px 43px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-discover {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo-marmaris {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
}

/* Weather */
.hava {
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-right: 25px;
}

.hava i {
    font-size: 20px;
    color: #d7b877;
    margin-right: 8px;
}

.hava-cont strong {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    display: block;
}

.hava-cont span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Site Top / Menu */
.siteUst {
    display: flex;
    align-items: center;
}

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

.siteMenu {
    display: flex;
    gap: 8px;
}

.siteMenu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #fff;
}

.siteMenu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.siteMenu a i {
    font-size: 16px;
    color: #d7b877;
}

.siteMenu .desc {
    display: flex;
    flex-direction: column;
}

.siteMenu .desc span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.siteMenu .desc span.bold {
    font-weight: 900;
    color: #ffffff;
    font-size: 13px;
}

.language {
    color: #d7b877;
    font-weight: 900;
    font-size: 14px;
    margin-left: 15px;
    padding: 5px 10px;
    border: 1px solid rgba(215, 184, 119, 0.4);
    border-radius: 4px;
}

.language:hover {
    background: rgba(215, 184, 119, 0.2);
}

/* Menu Button */
.allSiteMenu {
    margin-left: 10px;
}

.menuButton {
    color: #ffffff;
    font-size: 18px;
    padding: 8px;
}

.menuButton:hover {
    color: #d7b877;
}

/* Search Button */
.searchMenuBtn {
    margin-left: 10px;
}

.searchMenuBtn a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    padding: 8px;
}

.searchMenuBtn a:hover {
    color: #d7b877;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal .mcontent {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-modal .closeSearchModal {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 2px;
}

.search-modal form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.search-modal input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 20px 25px;
}

.search-modal input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-modal .searchButton {
    padding: 20px 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    transition: color 0.3s;
}

.search-modal .searchButton:hover {
    color: #d7b877;
}

/* ====================================================
   MAIN HOME — SECTIONS
   ==================================================== */

#mainHome .section {
    border: none;
    outline: 0;
    position: relative;
    background-color: #fefefe;
    overflow: hidden;
    min-height: 100vh;
}

#mainHome .section .container {
    height: 100%;
}

#mainHome .section#footer .container {
    height: auto;
}

#mainHome #footer,
#mainHome .section.carousel {
    border-bottom: none;
    background-color: transparent;
}

#mainHome .section#footer {
    background-image: url('../images/footer-bg.png') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    background-color: rgba(52, 52, 52, 1) !important;
}

/* ---- SECTION 1: HERO CAROUSEL ---- */
#mainHome .carousel,
#mainHome .section.carousel {
    border-bottom: none;
    background-color: #1a1a1a;
    min-height: 100vh;
    height: 100vh;
}

#mainHome .carousel .homeSlider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slick containers must fill full height */
#mainHome .carousel .homeSlider .slick-list,
#mainHome .carousel .homeSlider .slick-track,
#mainHome .carousel .homeSlider .slick-slide,
#mainHome .carousel .homeSlider .slick-slide>div {
    height: 100%;
}

#mainHome .carousel .itemSlide {
    position: relative;
    width: 100%;
    height: 100%;
}

#mainHome .carousel .itemSlide:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0) 63%);
}

#mainHome .homeSlider .itemSlide img,
#mainHome .homeSlider video.homeVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Carousel Bottom Bar */
.carouselBottom {
    position: absolute;
    bottom: 150px;
    width: 100%;
    z-index: 10;
}

.carouselBottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
}

/* Search Area in Hero */
#mainHome .searchArea {
    position: relative;
    max-width: 720px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.84);
    border-radius: 10px;
    height: 75px;
    overflow: hidden;
}

#mainHome .searchArea input {
    font-size: 16px;
    width: 100%;
    border: none;
    background: transparent;
    line-height: 75px;
    padding-left: 38px;
    color: #343434;
}

#mainHome .searchArea .searchButton {
    position: absolute;
    right: 26px;
    top: 50%;
    margin-top: -15px;
    color: rgba(0, 0, 0, 0.35);
    font-size: 18px;
    transition: all 0.3s;
}

#mainHome .searchArea .searchButton:hover {
    opacity: 1;
    color: #d7b877;
}

/* Social Area */
.socialArea {
    text-align: right;
}

.socialArea>span {
    display: block;
    color: #ffffff;
    font-weight: 900;
    font-size: 14px;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.socialArea>div {
    display: flex;
    gap: 12px;
}

.socialArea a {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s;
}

.socialArea a:hover {
    opacity: 1;
    color: #d7b877;
}

/* Scroll Down Indicator */
.scroll_down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: balloon1 4s linear infinite;
}

.scroll_down img {
    width: 45px;
    height: auto;
}

.scroll_down span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll_down:hover img {
    transform: scale(1.2);
    transition: all 0.3s;
}

@keyframes balloon1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Slider overlay for hero bottom curve */
#mainHome .homeSlider:after {
    content: "";
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: -74px;
}

/* ---- SECTION 2: GO TO MARMARIS ---- */
#mainHome .section.second {
    background-color: #fefefe;
}

#mainHome .section.second:before {
    content: "";
    background-color: #fefefe;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

#mainHome .section.second .container {
    display: flex;
    align-items: center;
}

/* The half-column system for two-column layouts */
.halfColumn {
    width: 50%;
}

.halfColumn.imgEating {
    height: 100%;
    position: relative;
}

.halfColumn.eatingCommentColumn {
    padding-left: 60px;
    max-width: 666px;
}

/* Statement List (checkmarks) */
.statementList {
    padding: 30px 0 40px 0;
}

.statementList li {
    position: relative;
    float: left;
    width: 50%;
    padding-left: 30px;
    margin: 10px 0;
}

.statementList li:before {
    content: "✓";
    color: #d7b877;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 16px;
}

.statementList li span {
    font-size: 16px;
    color: #343434;
    display: block;
}

.statementList li span.bold {
    font-weight: 900;
}

/* Logo Links (airlines etc) */
.logoLink {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logoLink a {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logoLink a:hover {
    opacity: 1;
}

.logoLink img {
    height: 30px;
    width: auto;
}

/* Transport Button */
.transportButton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #d7b877;
    border: 1px solid #d7b877;
    padding: 15px 25px;
    margin-top: 37px;
    transition: all 0.3s;
    cursor: pointer;
}

.transportButton i {
    color: #fff;
    font-size: 24px;
}

.transportButton span {
    display: block;
    font-size: 13px;
    color: #ffffff;
}

.transportButton span.bold {
    font-weight: 900;
    font-size: 15px;
    padding-bottom: 3px;
}

.transportButton:hover {
    background-color: #ffffff;
}

.transportButton:hover i,
.transportButton:hover span,
.transportButton:hover span.bold {
    color: #d7b877;
}

/* Gallery Boxes in Section 2 */
.boxesArea {
    border-left: 2px solid #ebebeb;
    flex: 1;
}

.boxesArea>div {
    border-right: 2px solid #ebebeb;
    padding: 0 12px;
    flex: 1;
}

/* The large single-column item */
.boxesArea>div:first-child {
    flex: 1;
}

/* The stacked pair column */
.boxesArea>div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.itemBox {
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.itemBox.hHalf {
    border-top: 2px solid #ebebeb;
    padding-top: 12px;
    margin-top: 12px;
    flex: 1;
}

.itemBox.hHalf:first-child {
    border-top: none;
    margin-top: 0;
    padding: 0;
}

.itemBox a {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.itemBox a::after {
    content: "";
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    inset: 0;
    transition: background 0.3s;
}

.itemBox a:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.itemBox a:hover img {
    transform: scale(1.15);
}

.itemBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.itemBox .smalltext {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    color: #fff;
    transition: all 0.3s;
}

.itemBox .smalltext span {
    display: block;
    font-size: 18px;
}

.itemBox .smalltext span.bold {
    font-weight: 900;
}

.itemBox .smalltext::after {
    content: "";
    width: 33%;
    background: #fff;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -9px;
}

.itemBox .largeText {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.25);
    z-index: 1;
}

.itemBox .largeText span {
    display: block;
}

.itemBox .largeText span.bold {
    font-weight: 900;
}

/* ---- SECTION 3 & 5: SPLIT LAYOUT (Stay In / Eat In) ---- */
#mainHome .section.eating>.row,
#mainHome .section.stayInYeni>.row {
    height: 100%;
}

.stayInYeni {
    padding-top: 0 !important;
}

.imageBorderFrame {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.imageBorderFrame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Big rotated text overlay */
.bigText {
    transform: rotate(-90deg);
    position: absolute;
    top: 35%;
    left: 46%;
    width: 100%;
    height: 100px;
}

.bigText span {
    display: block;
    font-weight: 900;
    font-size: 70px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.bigText span.large {
    -webkit-text-stroke: 1px white;
    -webkit-text-fill-color: transparent;
    font-size: 90px;
    width: 130%;
    margin-bottom: -50px;
}

/* Eat/Stay Thumb List */
.thumbEatList {
    padding-top: 20px;
    width: 100%;
}

.thumbEatList .eatItem {
    display: flex;
    border-left: 2px solid #f0f0f0;
    padding-left: 5px;
    padding-top: 30px;
    position: relative;
}

.thumbEatList .eatItem:first-child {
    padding-top: 0;
}

.thumbEatList .eatItem::after {
    content: "";
    width: 2px;
    height: 100%;
    background: #f0f0f0;
    position: absolute;
    top: 0;
    left: 165px;
}

.thumbEatList .eatItem .imageFrame {
    box-shadow: 0px 27px 22px 0px rgba(171, 171, 171, 0.2);
    background: #fff;
    padding: 12px;
    flex-shrink: 0;
}

.thumbEatList .eatItem .imageFrame img {
    width: 125px;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s;
}

.thumbEatList .eatItem:hover .imageFrame img {
    transform: scale(1.15);
}

.thumbEatList .eatItem .text {
    padding-left: 20px;
    padding-right: 30px;
    transition: all 0.3s;
}

.thumbEatList .eatItem:hover .text {
    transform: scale(0.95);
    padding-left: 0;
}

.thumbEatList .text .title {
    font-weight: 900;
    color: #ceb376;
    font-size: 22px;
    display: block;
    padding-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.thumbEatList .eatItem:hover .text .title {
    color: #343434;
}

.thumbEatList .text p {
    color: #454545;
    font-size: 14px;
}

/* See More Button (Eat/Stay) */
.seeButton {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #d7b877;
    border: 1px solid #d7b877;
    padding: 15px 25px;
    margin-top: 25px;
    transition: all 0.3s;
    color: #fff;
}

.seeButton i {
    font-size: 28px;
}

.seeButton span {
    display: block;
    font-size: 13px;
}

.seeButton span.bold {
    font-weight: 900;
    font-size: 15px;
    padding-bottom: 3px;
}

.seeButton:hover {
    background: #fff;
    color: #d7b877;
}

.seeButton:hover span,
.seeButton:hover i {
    color: #d7b877;
}

/* ---- SECTION 4: DON'T LEAVE WITHOUT SEEING — Card Slider ---- */
#mainHome .section.fourth {
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
}

#mainHome .section.fourth>div {
    position: relative;
    z-index: 2;
}

#mainHome .section.fourth::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

#mainHome .section.fourth .titleColumn {
    padding-top: 100px;
    text-align: center;
}

.wonderlandSlider {
    height: 300px;
    margin: 70px auto;
    position: relative;
    z-index: 2;
}

.wonderlandSlider .itemWonderland {
    padding: 0 20px;
}

.wonderlandSlider .itemWonderland>div {
    box-shadow: 0px 20px 30px rgba(34, 31, 25, 0.54);
    background: #fff;
    padding: 10px 10px 0 10px;
    position: relative;
    height: 239px;
}

.wonderlandSlider .itemWonderland>div>img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
}

.wonderlandSlider .itemWonderland .title {
    font-weight: 900;
    font-size: 16px;
    color: #d7b877;
    padding: 20px 0 30px 0;
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* ---- SECTION 6: ENJOY IN — Image Slider ---- */
#mainHome .section.sixth {
    background-size: cover;
    background-position: bottom center;
    background-color: #f5f0e8;
}

#mainHome .section.sixth .titleColumn {
    padding-top: 70px;
}

.enjojSlider {
    height: 350px;
    margin-top: 100px;
    position: relative;
}

.enjojSlider .itemEnjoj {
    position: relative;
}

.enjojSlider .itemEnjoj .imageFrame {
    background: #fff;
    padding: 15px;
    max-width: 372px;
    box-shadow: 0px 32px 30px rgba(34, 31, 25, 0.14);
    position: relative;
    overflow: hidden;
}

.enjojSlider .itemEnjoj .imageFrame::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s;
}

.enjojSlider .itemEnjoj:hover .imageFrame::after {
    background: rgba(0, 0, 0, 0);
}

.enjojSlider .itemEnjoj .imageFrame img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.enjojSlider .itemEnjoj a {
    display: block;
    position: relative;
    padding: 0 24px;
}

.enjojSlider .itemEnjoj a>span {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    position: absolute;
    bottom: 30px;
    max-width: 65%;
    text-align: center;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 2;
}

/* ---- SECTION 7: CREATE ROUTE + FOOTER ---- */
#mainHome .section.seventh>.row {
    height: 100%;
}

.otelList>div {
    max-width: 613px;
}

.thumbOtels {
    margin-top: 30px;
}

.thumbOtels>span {
    padding-bottom: 20px;
    font-size: 20px;
    color: #343434;
    display: block;
}

.thumbList {
    margin-top: 20px;
}

.thumbList a {
    float: left;
    width: 33%;
    text-align: center;
    border-right: 2px solid #eee;
    padding: 0 10px;
    transition: all 0.3s;
}

.thumbList a:first-child {
    border-left: 2px solid #eee;
}

.thumbList a:hover span {
    color: #d7b877;
}

.thumbList .imageFrame {
    max-width: 143px;
    overflow: hidden;
    max-height: 131px;
    margin: 0 auto;
    background: #fff;
    padding: 13px;
    box-shadow: 0px 18px 21px rgba(34, 31, 35, 0.08);
    margin-bottom: 20px;
}

.thumbList .imageFrame img {
    width: 100%;
    height: 105px;
    object-fit: cover;
    box-shadow: 0px 10px 16px rgba(34, 31, 35, 0.3);
    transition: transform 0.3s;
}

.thumbList a:hover .imageFrame img {
    transform: scale(1.15);
}

.thumbList span {
    font-size: 16px;
    color: #343434;
    display: block;
}

.thumbList span.bold {
    font-weight: 900;
    font-size: 17px;
}

.thumbList span.dateTime {
    font-weight: 900;
    font-size: 12px;
    margin-top: 15px;
}

.thumbList span.dateTime i {
    margin-right: 8px;
    color: #d7b877;
}

/* Create Route Area */
.cretaeTourArea {
    position: relative;
}

.cretaeTourArea .imageFrame {
    position: relative;
    overflow: hidden;
}

.cretaeTourArea .imageFrame img {
    max-width: 100%;
}

.createButton {
    font-weight: 900;
    font-size: 19px;
    color: #fff;
    background: #343434;
    border: 1px solid #343434;
    display: block;
    padding: 20px 0;
    text-align: center;
    max-width: 380px;
    width: 100%;
    margin-right: 90px;
    transition: all 0.3s;
}

.createButton:hover {
    background: #fff;
    color: #343434;
}

/* ---- FOOTER ---- */
.footer {
    background-image: url('../images/footer-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: rgba(52, 52, 52, 1);
    height: 100%;
    width: 100%;
    padding-bottom: 16px;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .tomatoes {
    font-family: 'tomatoesregular';
    text-align: center;
    padding-top: 35px;
    padding-bottom: 70px;
}

.footer .tomatoes .small {
    font-size: 24px;
    color: #ffffff;
    display: block;
    transform: rotate(-5deg);
    text-shadow: 0px 7px 6px rgba(34, 31, 25, 0.75);
}

.footer .tomatoes .large {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    color: #d7b877;
    transform: rotate(-5.2deg);
    padding-left: 100px;
    padding-top: 4px;
    text-shadow: 0px 7px 6px rgba(34, 31, 25, 0.75);
    display: block;
}

.footer .ftext {
    text-align: center;
    margin-bottom: 30px;
}

.footer .ftext a {
    display: block;
    text-align: center;
    color: #ceb376;
    font-weight: 600;
    font-size: 16px;
}

.footer .ftext a:hover {
    color: #ffffff;
}

.footer .footerMenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 55px;
    max-width: 632px;
    width: 100%;
    margin: 0 auto;
}

.footer .footerMenu li a {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 18px;
    padding: 0px 20px;
    text-align: left;
}

.footer .footerMenu li a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer .footerMenu li a.bold {
    font-weight: 900;
    color: #ceb376;
    padding-bottom: 13px;
}

.footer .logoArea {
    padding-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 628px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.footer .logoArea a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .logoArea img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s;
}

.footer .logoArea a:hover img {
    opacity: 0.5;
}

.footer .copyRight {
    text-align: center;
    padding-top: 20px;
    border-top: none;
}

.footer .copyRight,
.footer .copyRight a {
    color: #ceb376;
    font-size: 15px;
}

.footer .copyRight p {
    color: #ceb376;
    font-size: 12px;
}

.footer .copyRight a:hover {
    color: #ffffff;
}

.footer .copyRight a.web {
    padding-left: 15px;
}

/* === SLICK SLIDER OVERRIDES === */
#mainHome .slick-prev,
#mainHome .slick-next {
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 99;
    margin-top: -35px;
}

#mainHome .slick-prev:hover,
#mainHome .slick-next:hover {
    background: #ffffff;
}

#mainHome .slick-prev:before,
#mainHome .slick-next:before {
    color: #343434;
    font-size: 20px;
    opacity: 0.1;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: opacity 0.3s;
}

#mainHome .slick-prev:hover:before,
#mainHome .slick-next:hover:before {
    opacity: 1;
}

#mainHome .slick-prev:before {
    content: "\f053";
}

#mainHome .slick-next:before {
    content: "\f054";
}

#mainHome .slick-next {
    right: -85px;
}

#mainHome .slick-prev {
    left: -85px;
}

#mainHome .slick-dots {
    bottom: -100px;
}

#mainHome .slick-dots li button:before {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

#mainHome .slick-dots li.slick-active button:before {
    color: #ffffff;
}

/* Section 6 slider overrides */
#mainHome .enjojSlider .slick-next {
    right: -40px;
}

#mainHome .enjojSlider .slick-prev {
    left: -40px;
}

#mainHome .enjojSlider .slick-dots li button:before {
    color: rgba(192, 192, 192, 1);
}

#mainHome .enjojSlider .slick-dots li.slick-active button:before {
    color: rgba(192, 192, 192, 1);
}

#mainHome .enjojSlider .slick-list {
    margin-left: -30px;
    margin-right: -30px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .siteMenu a .desc {
        display: none;
    }

    .siteMenu a {
        padding: 8px;
    }

    .hava {
        display: none;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 42px;
    }

    .halfColumn {
        width: 100%;
    }

    .halfColumn.eatingCommentColumn {
        padding-left: 30px;
        padding-top: 40px;
    }

    .halfColumn.imgEating {
        max-height: 50vh;
    }

    #mainHome .section.eating>.row,
    #mainHome .section.stayInYeni>.row {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
    }

    .statementList li {
        width: 100%;
    }

    .boxesArea {
        border-left: none;
    }

    .boxesArea>div {
        border-right: none;
        padding: 0;
    }

    .thumbEatList .eatItem::after {
        display: none;
    }

    .bigText {
        display: none;
    }

    #mainHome .section.seventh>.row {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
    }

    .otelList>div {
        max-width: 100%;
    }

    .cretaeTourArea {
        margin-top: 40px;
        text-align: center;
    }

    .createButton {
        margin: 20px auto;
    }

    #mainHome .section.second .container {
        flex-direction: column;
    }

    #mainHome .section.second .container>div:first-child {
        width: 100%;
    }

    .boxesArea {
        width: 100%;
        margin-top: 30px;
    }

    .boxesArea>div {
        flex: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 34px;
    }

    h4 {
        font-size: 14px;
    }

    .siteMenu {
        display: none;
    }

    .language {
        display: none;
    }

    header .container {
        padding: 0 15px;
    }

    .carouselBottom {
        bottom: 40px;
    }

    .carouselBottom .container {
        flex-direction: column;
        gap: 20px;
    }

    #mainHome .searchArea {
        max-width: 100%;
        height: 55px;
    }

    #mainHome .searchArea input {
        line-height: 55px;
        font-size: 14px;
    }

    .socialArea {
        display: none;
    }

    .scroll_down {
        display: none;
    }

    #mainHome .section {
        min-height: 100vh;
        height: auto !important;
        padding: 60px 0 !important;
    }

    .wonderlandSlider {
        height: auto;
        margin: 40px auto;
    }

    .enjojSlider {
        height: auto;
        margin-top: 40px;
    }

    .thumbList a {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #eee;
        padding: 20px 0;
    }

    .thumbList a:first-child {
        border-left: none;
    }

    .thumbEatList .eatItem {
        flex-direction: column;
    }

    .thumbEatList .eatItem .text {
        padding-left: 0;
        padding-top: 15px;
    }

    .footer .tomatoes .large {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .halfColumn.eatingCommentColumn {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer .tomatoes .large {
        font-size: 36px;
    }

    .footerMenu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ====== MAGAZINE ISSUE (DERGİ) STYLES ====== */

/* Dergi section — min-height override for scrollify compatibility */
#mainHome .section.dergi-section {
    min-height: auto !important;
}

/* Dergi card hover effects */
.dergi-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 184, 119, 0.5) !important;
    box-shadow: 0 20px 60px rgba(215, 184, 119, 0.15);
    background: rgba(255, 255, 255, 0.08) !important;
}

.dergi-card:hover .dergi-card-glow {
    opacity: 1 !important;
}

.dergi-card:hover div:first-child {
    transform: scale(1.05);
}

/* Scrollbar styling for dergi slider */
.dergi-slider::-webkit-scrollbar {
    height: 6px;
}

.dergi-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.dergi-slider::-webkit-scrollbar-thumb {
    background: rgba(215, 184, 119, 0.3);
    border-radius: 3px;
}

.dergi-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(215, 184, 119, 0.5);
}

/* Blog sidebar issue links hover */
.sidebar-widget a[href*="blog/sayi"]:hover {
    background: rgba(215, 184, 119, 0.1) !important;
    border-color: rgba(215, 184, 119, 0.25) !important;
    color: #d7b877 !important;
}

/* ====== BLOG PAGE FIXES ====== */

/* Override global h1 size for blog pages */
.blog-list-page .section-header h1 {
    font-size: 38px !important;
    line-height: 1.2 !important;
}

/* Ensure blog content doesn't overlap with fixed header */
.blog-list-page {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for dergi section & blog */
@media (max-width: 768px) {
    .dergi-slider {
        gap: 16px !important;
    }

    .dergi-card {
        min-width: 220px !important;
        max-width: 220px !important;
        padding: 24px 18px !important;
    }

    .blog-list-page .section-header h1 {
        font-size: 28px !important;
    }
}