/* Include */
@font-face {
    font-family: "monument_extendedregular";
    src: url("https://www.yudiz.com/codepen/photography-banner/monumentextended-regular.woff2")
          format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Extenda Trial 20 Micro";
    src: url("https://www.yudiz.com/codepen/photography-banner/Extenda-20Micro.woff2")
          format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Extenda Trial 30 Deca";
    src: url("https://www.yudiz.com/codepen/photography-banner/Extenda-30Deca.woff2")
          format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Ana renkler için değişkenler */
:root {
  --primary-beige: #E0D0C0;     /* Daha parlak bir bej tonu */
  --light-beige: #FFF5EE;       /* Daha açık ve canlı bej */
  --warm-brown: #A69080;        /* Daha sıcak kahverengi */
  --cinnamon: #7D574B;          /* Daha canlı tarçın rengi */
  --warm-gray: #C8B8A8;         /* Daha sıcak gri tonu */
  --stone-gray: #8D7D72;        /* Daha canlı taş grisi */
  --dark-brown: #382E28;        /* Daha derin kahverengi */
  --turkish-red: rgba(240, 20, 30, 0.15);
  --turkish-red-dark: rgba(210, 35, 60, 0.2);
  --turkish-red-light: rgba(240, 20, 30, 0.1);
  --petal-border: var(--primary-beige);
  --petal-gradient-start: var(--warm-brown);
  --petal-gradient-end: var(--cinnamon);
}

/* Common CSS */
body,
html {
    overflow-x: hidden !important;
}

body {
    margin: 0;
    background-color: var(--dark-brown);
}

::selection {
    background-color: rgba(210, 180, 140, 0.2);
    color: var(--light-beige);
}

/* Demo css -start */
.info-section {
    height: 100svh;
    min-height: 780px;
    padding: 0 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    user-select: none;
}

.info-section::before {
    content: "";
    border-radius: 197.5px 0px;
    opacity: 0.4;
    background: var(--primary-beige);
    filter: blur(162px);
    height: 35%;
    width: 55%;
    position: absolute;
    top: -40%;
    left: -66%;
    transform: translate(50%, 50%);
    z-index: -1;
}

/* left part */
.left-part {
    padding: 20px 0 0;
    overflow: hidden;
}

.left-part h1 {
    margin: 0;
    color: var(--light-beige);
    font-family: "Extenda Trial 30 Deca";
    font-size: clamp(100px, 18.5vw, 282px);
    line-height: 0.75;
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
}

.left-part h1 .text {
    color: var(--warm-brown);
    display: block;
    height: 200px;
}

.left-part h1 .d-flex {
    display: flex;
    align-items: center;
}

.left-part h1 .char {
    transform: translateY(-515px);
    transition: transform 0.5s;
}

.typed-cursor {
    display: none !important;
}

.left-part p {
    width: 72%;
    margin: 20px 0 0;
    color: var(--warm-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 2;
    font-family: "monument_extendedregular";
    opacity: 0.8;
}

/* button */
.book-link {
    margin: 40px 0 0;
    padding: 0;
    border: 0;
    font-size: 56px;
    line-height: 1;
    color: var(--light-beige);
    letter-spacing: 0.25px;
    text-transform: uppercase;
    font-family: "Extenda Trial 20 Micro";
    font-weight: 300;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    position: relative;
    text-decoration: none;
}

.book-link .linktext {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.book-link .linktext::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 3px;
    background-color: var(--primary-beige);
    transform: scaleX(1);
    transition: transform 250ms ease-in-out;
    transform-origin: 0 0;
}

.book-link:hover .linktext:before {
    transform: scaleX(0);
    transform-origin: 100% 100%;
}

.book-link .arrow {
    height: 36px;
    width: 36px;
    top: -5px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.book-link .arrow::before,
.book-link .arrow::after {
    position: absolute;
    content: "";
    background-color: var(--warm-brown);
    transition: all ease-in-out 0.35s;
    transform-origin: 0 0;
    border-radius: 30px;
}

.book-link .arrow::before {
    height: 2px;
    width: 100%;
    top: 0;
    right: 0;
}

.book-link .arrow::after {
    width: 2px;
    height: 100%;
    top: 0;
    right: 0;
}

.book-link:hover .arrow::before {
    width: 65%;
}

.book-link:hover .arrow::after {
    height: 65%;
}

.book-link .arrow span {
    background-color: var(--warm-brown);
    height: 2px;
    width: 100%;
    display: inline-block;
    transform: rotate(-45deg) translate(-3px, -1px);
    transform-origin: right top;
    border-radius: 30px;
    position: relative;
    transition: all ease-in-out 0.35s;
    position: absolute;
    top: 0;
    left: 0;
}

.book-link .arrow span::before {
    background-color: var(--warm-brown);
    content: "";
    height: 100%;
    width: 15px;
    left: -15px;
    top: 0;
    position: absolute;
}

/* right part */
.right-part {
    background-color: transparent;
    height: 588px;
    width: 588px;
    margin: 0 0 0 auto;
    margin-right: -14px;
    display: block;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.right-part::before {
    content: "";
    border-radius: 197.5px 0px;
    opacity: 0.4;
    background: var(--warm-brown);
    filter: blur(112px);
    height: 35%;
    width: 55%;
    position: absolute;
    top: 50%;
    right: 33%;
    transform: translate(50%, -50%);
    z-index: -1;
}

.right-part .d-flex {
    height: 100%;
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    position: relative;
}

.main-grid {
    position: relative;
}

.box {
    width: calc((100% / 3) - 16px);
    height: calc((100% / 3) - 16px);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--warm-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    color: var(--light-beige);
    font-family: "monument_extendedregular";
    border-radius: 120px;
    position: absolute;
    animation: 30s infinite;
}

/* Box nth-child */
.box:nth-child(1) {
    left: 0;
    top: 0;
    animation-name: box-1;
}

.box:nth-child(2) {
    left: calc(100% / 3);
    top: 0;
    animation-name: box-2;
}

.box:nth-child(3) {
    left: calc((100% / 3) * 2);
    top: 0;
    animation-name: box-3;
}

.box:nth-child(4) {
    left: 0;
    top: calc(100% / 3);
    animation-name: box-4;
}

.box:nth-child(5) {
    left: calc((100% / 3) * 2);
    top: calc(100% / 3);
    animation-name: box-5;
}

.box:nth-child(6) {
    left: 0;
    top: calc((100% / 3) * 2);
    animation-name: box-6;
}

.box:nth-child(7) {
    left: calc(100% / 3);
    top: calc((100% / 3) * 2);
    animation-name: box-7;
}

.box:nth-child(8) {
    left: calc((100% / 3) * 2);
    top: calc((100% / 3) * 2);
    animation-name: box-8;
}

/* 1st Child */
@keyframes box-1 {
    0%,
    90%,
    100% {
          left: 0;
          top: 0;
  }
  
    2.5%,
    12.5% {
          left: calc(100% / 3);
  }
  
    15%,
    25% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    27.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
  }
  
    29.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    31.5%,
    33.5% {
          left: calc(100% / 3);
          width: 100%;
  }
  
    35.5%,
    37.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    40%,
    50% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    52.5%,
    62.5% {
          left: calc(100% / 3);
  }
  
    65%,
    75% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    77.5%,
    87.5% {
          top: calc(100% / 3);
  }
}

@-webkit-keyframes box-1 {
    0%,
    90%,
    100% {
          left: 0;
          top: 0;
  }
  
    2.5%,
    12.5% {
          left: calc(100% / 3);
  }
  
    15%,
    25% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    27.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
  }
  
    29.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    31.5%,
    33.5% {
          left: calc(100% / 3);
          width: 100%;
  }
  
    35.5%,
    37.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    40%,
    50% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    52.5%,
    62.5% {
          left: calc(100% / 3);
  }
  
    65%,
    75% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    77.5%,
    87.5% {
          top: calc(100% / 3);
  }
}

@keyframes box-2 {
    0%,
    90%,
    100% {
          left: calc(100% / 3);
  }
  
    2.5%,
    12.5% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    15%,
    17% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    19%,
    21% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    23%,
    25% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    27.5%,
    37.5% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    40%,
    50% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    52.5%,
    62.5% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    65%,
    75% {
          left: 0;
          top: calc(100% / 3);
  }
  
    77.5%,
    87.5% {
          left: 0;
          top: 0;
  }
}

@-webkit-keyframes box-2 {
    0%,
    90%,
    100% {
          left: calc(100% / 3);
  }
  
    2.5%,
    12.5% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    15%,
    17% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    19%,
    21% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    23%,
    25% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    27.5%,
    37.5% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    40%,
    50% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    52.5%,
    62.5% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    65%,
    75% {
          left: 0;
          top: calc(100% / 3);
  }
  
    77.5%,
    87.5% {
          left: 0;
          top: 0;
  }
}

@keyframes box-3 {
    0%,
    90%,
    100% {
          left: calc((100% / 3) * 2);
  }
  
    2.5%,
    12.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
  }
  
    4.5%,
    10.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    6.5%,
    8.5% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    15%,
    25% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    27.5%,
    37.5% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    40%,
    50% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    52.5%,
    62.5% {
          left: 0;
          top: calc(100% / 3);
  }
  
    65%,
    75% {
          left: 0;
          top: 0;
  }
  
    77.5%,
    87.5% {
          left: calc(100% / 3);
          top: 0;
  }
}

@-webkit-keyframes box-3 {
    0%,
    90%,
    100% {
          left: calc((100% / 3) * 2);
  }
  
    2.5%,
    12.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
  }
  
    4.5%,
    10.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    6.5%,
    8.5% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    15%,
    25% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    27.5%,
    37.5% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    40%,
    50% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    52.5%,
    62.5% {
          left: 0;
          top: calc(100% / 3);
  }
  
    65%,
    75% {
          left: 0;
          top: 0;
  }
  
    77.5%,
    87.5% {
          left: calc(100% / 3);
          top: 0;
  }
}

@keyframes box-4 {
    0%,
    90%,
    100% {
          top: calc(100% / 3);
  }
  
    2.5%,
    12.5% {
          left: 0;
          top: 0;
  }
  
    15%,
    25% {
          left: calc(100% / 3);
          top: 0;
  }
  
    27.5%,
    37.5% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    40%,
    42%,
    48%,
    50% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    44%,
    46% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    52.5%,
    62.5% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    65%,
    75% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    77.5%,
    87.5% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
}

@-webkit-keyframes box-4 {
    0%,
    90%,
    100% {
          top: calc(100% / 3);
  }
  
    2.5%,
    12.5% {
          left: 0;
          top: 0;
  }
  
    15%,
    25% {
          left: calc(100% / 3);
          top: 0;
  }
  
    27.5%,
    37.5% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    40%,
    42%,
    48%,
    50% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    44%,
    46% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    52.5%,
    62.5% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    65%,
    75% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    77.5%,
    87.5% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
}

@keyframes box-5 {
    0%,
    90%,
    92%,
    98%,
    100% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    2.5%,
    12.5% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    15%,
    25% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    27.5%,
    37.5% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    40%,
    50% {
          left: 0;
          top: calc(100% / 3);
  }
  
    52.5%,
    62.5% {
          left: 0;
          top: 0;
  }
  
    65%,
    75% {
          left: calc(100% / 3);
          top: 0;
  }
  
    77.5%,
    87.5% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    94%,
    96% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
}

@-webkit-keyframes box-5 {
    0%,
    90%,
    92%,
    98%,
    100% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    2.5%,
    12.5% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    15%,
    25% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    27.5%,
    37.5% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    40%,
    50% {
          left: 0;
          top: calc(100% / 3);
  }
  
    52.5%,
    62.5% {
          left: 0;
          top: 0;
  }
  
    65%,
    75% {
          left: calc(100% / 3);
          top: 0;
  }
  
    77.5%,
    87.5% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    94%,
    96% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
}

@keyframes box-6 {
    0%,
    90%,
    100% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    2.5%,
    12.5% {
          left: 0;
          top: calc(100% / 3);
  }
  
    15%,
    25% {
          left: 0;
          top: 0;
  }
  
    27.5%,
    37.5% {
          left: calc(100% / 3);
          top: 0;
  }
  
    40%,
    50% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    52.5%,
    54.5%,
    60.5%,
    62.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    56.5%,
    58.5% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    65%,
    75% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    77.5%,
    87.5% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
}

@-webkit-keyframes box-6 {
    0%,
    90%,
    100% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    2.5%,
    12.5% {
          left: 0;
          top: calc(100% / 3);
  }
  
    15%,
    25% {
          left: 0;
          top: 0;
  }
  
    27.5%,
    37.5% {
          left: calc(100% / 3);
          top: 0;
  }
  
    40%,
    50% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    52.5%,
    54.5%,
    60.5%,
    62.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    56.5%,
    58.5% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    65%,
    75% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    77.5%,
    87.5% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
}

@keyframes box-7 {
    0%,
    90%,
    100% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    2.5%,
    12.5% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    15%,
    25% {
          left: 0;
          top: calc(100% / 3);
  }
  
    27.5%,
    37.5% {
          left: 0;
          top: 0;
  }
  
    40%,
    50% {
          left: calc(100% / 3);
          top: 0;
  }
  
    52.5%,
    62.5% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    65%,
    67%,
    73%,
    75% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    69%,
    71% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    77.5%,
    87.5% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
}

@-webkit-keyframes box-7 {
    0%,
    90%,
    100% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    2.5%,
    12.5% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    15%,
    25% {
          left: 0;
          top: calc(100% / 3);
  }
  
    27.5%,
    37.5% {
          left: 0;
          top: 0;
  }
  
    40%,
    50% {
          left: calc(100% / 3);
          top: 0;
  }
  
    52.5%,
    62.5% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    65%,
    67%,
    73%,
    75% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
  }
  
    69%,
    71% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
  
    77.5%,
    87.5% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
}

@keyframes box-8 {
    0%,
    90%,
    100% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    2.5%,
    12.5% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    15%,
    25% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    27.5%,
    37.5% {
          left: 0;
          top: calc(100% / 3);
  }
  
    40%,
    50% {
          left: 0;
          top: 0;
  }
  
    52.5%,
    62.5% {
          left: calc(100% / 3);
          top: 0;
  }
  
    65%,
    75% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    77.5%,
    79.5%,
    85.5%,
    87.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
          border-radius: 100%;
  }
  
    81.5%,
    83.5% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
}

@-webkit-keyframes box-8 {
    0%,
    90%,
    100% {
          left: calc((100% / 3) * 2);
          top: calc((100% / 3) * 2);
  }
  
    2.5%,
    12.5% {
          left: calc(100% / 3);
          top: calc((100% / 3) * 2);
  }
  
    15%,
    25% {
          left: 0;
          top: calc((100% / 3) * 2);
  }
  
    27.5%,
    37.5% {
          left: 0;
          top: calc(100% / 3);
  }
  
    40%,
    50% {
          left: 0;
          top: 0;
  }
  
    52.5%,
    62.5% {
          left: calc(100% / 3);
          top: 0;
  }
  
    65%,
    75% {
          left: calc((100% / 3) * 2);
          top: 0;
  }
  
    77.5%,
    79.5%,
    85.5%,
    87.5% {
          left: calc((100% / 3) * 2);
          top: calc(100% / 3);
          width: calc((100% / 3) - 16px);
          border-radius: 100%;
  }
  
    81.5%,
    83.5% {
          left: calc(100% / 3);
          top: calc(100% / 3);
          width: 100%;
  }
}

/* Box Text */
.box span {
    position: absolute;
    display: block;
    opacity: 0.8;
    z-index: 5;
}

.box:nth-child(1) span {
    top: 43%;
    left: -27px;
    transform: translateY(-50%);
}

.box:nth-child(3) span {
    left: -10px;
    bottom: 2px;
}

.box:nth-child(4) span {
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}

.box:nth-child(8) span {
    top: 50%;
    transform: translate(-50%, -50%);
    left: 15%;
}

/* Box Background-Image */
.box .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 120px;
    overflow: hidden;
}

.box .bg-img,
.box .bg-img img {
    height: 100%;
    width: 100%;
}

.box .bg-img img {
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Curve Line */
.bg-line {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 85px;
    z-index: -1;
    overflow: hidden;
    display: flex;
    display: -webkit-flex;
    white-space: nowrap;
}

.bg-line img {
    position: relative;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    animation: 26s linear infinite;
}

.bg-line img:nth-child(1) {
    animation-name: first-text;
}

.bg-line img:nth-child(2) {
    animation-name: second-text;
}

@keyframes first-text {
    50% {
          transform: translateX(-100%);
          opacity: 1;
  }
  
    50.05% {
          opacity: 0;
  }
  
    50.1% {
          transform: translateX(100%);
          opacity: 1;
  }
  
    100% {
          transform: translateX(0%);
  }
}

@-webkit-keyframes first-text {
    50% {
          transform: translateX(-100%);
          opacity: 1;
  }
  
    50.05% {
          opacity: 0;
  }
  
    50.1% {
          transform: translateX(100%);
          opacity: 1;
  }
  
    100% {
          transform: translateX(0%);
  }
}

@keyframes second-text {
    50% {
          transform: translateX(-100%);
  }
  
    100% {
          transform: translateX(-200%);
  }
  
    0% {
          transform: translateX(0%);
  }
}

@-webkit-keyframes second-text {
    50% {
          transform: translateX(-100%);
  }
  
    100% {
          transform: translateX(-200%);
  }
  
    0% {
          transform: translateX(0%);
  }
}

/* Dash Circle */
.bg-dash-circle {
    position: absolute;
    bottom: -35px;
    right: -13px;
    z-index: -1;
    width: 180px;
    aspect-ratio: 1/1;
}

.bg-dash-circle img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    animation: cirlce-rotate 18s linear infinite;
}

@keyframes cirlce-rotate {
    0% {
          transform: rotate(0);
  }
  
    100% {
          transform: rotate(360deg);
  }
}

@-webkit-keyframes cirlce-rotate {
    0% {
          transform: rotate(0);
  }
  
    100% {
          transform: rotate(360deg);
  }
}

/* Circle Line */
.bg-circle-h-line {
    bottom: 42px;
    left: -68px;
    z-index: 1;
    width: 181px;
    height: 111px;
    position: relative;
}

.bg-circle-h-line img {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: absolute;
    left: 0;
}

.bg-circle-h-line img:nth-child(1) {
    top: 0;
    animation: top-ring-move 2.5s linear infinite;
}

.bg-circle-h-line img:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.bg-circle-h-line img:nth-child(3) {
    bottom: 0;
    animation: bottom-ring-move 2.5s linear infinite;
}

@keyframes top-ring-move {
    0% {
          transform: translateY(0);
  }
  
    50% {
          transform: translateY(5px);
  }
  
    100% {
          transform: translateY(0);
  }
}

@-webkit-keyframes top-ring-move {
    0% {
          transform: translateY(0);
  }
  
    50% {
          transform: translateY(5px);
  }
  
    100% {
          transform: translateY(0);
  }
}

@keyframes bottom-ring-move {
    0% {
          transform: translateY(0);
  }
  
    50% {
          transform: translateY(-5px);
  }
  
    100% {
          transform: translateY(0);
  }
}

@-webkit-keyframes bottom-ring-move {
    0% {
          transform: translateY(0);
  }
  
    50% {
          transform: translateY(-5px);
  }
  
    100% {
          transform: translateY(0);
  }
}

/*=== Responsive ===*/
@media screen and (min-width: 1500px) {
    .info-section {
          padding-left: 120px;
  }
}

@media screen and (min-width: 1400px) {
    .info-section {
          padding-left: 100px;
  }
}

@media screen and (max-width: 1199px) {
    .bg-line {
          height: 68px;
  }
  
    .right-part {
          height: 400px;
          width: 400px;
  }
  
    .d-flex {
          gap: 20px;
  }
  
    .main-grid::before,
    .box {
          height: 118px;
  }
  
    .box {
          width: 118px;
          font-size: 12px;
  }
  
    .left-part p {
          font-size: 14px;
          line-height: 1.8;
          width: 85%;
  }
  
    .left-part h1 .text {
          height: 132px;
  }
  
    .bg-dash-circle {
          width: 130px;
  }
  
    .bg-circle-h-line {
          width: 156px;
          height: 92px;
  }
  
    .book-link {
          font-size: 48px;
          gap: 24px;
  }
  
    .book-link .arrow {
          height: 28px;
          width: 28px;
  }
}

@media screen and (max-width: 767px) {
    .info-section {
          display: block;
          padding: 0;
  }
  
    .bg-line {
          height: 52px;
  }
  
    .left-part {
          padding: 40px 16px 60px;
  }
  
    .right-part {
          height: 334px;
          width: 334px;
  }
  
    .left-part h1 .text {
          height: 88px;
  }
  
    .left-part p {
          font-size: 12px;
          width: 96%;
  }
  
    .main-grid::before,
    .box {
          height: 96px;
  }
  
    .box {
          width: 96px;
          font-size: 10px;
  }
  
    .book-link .arrow {
          height: 24px;
          width: 24px;
  }
  
    .book-link {
          font-size: 42px;
          gap: 20px;
          margin-top: 24px;
  }
  
    .bg-dash-circle {
          width: 80px;
  }
  
    .bg-circle-h-line {
          width: 126px;
          height: 65px;
  }
}

/* Modern Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    background-color: transparent;
}

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

/* Logo Styles */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo .brand {
    color: var(--light-beige);
    font-family: "monument_extendedregular";
    font-size: 24px;
    letter-spacing: 2px;
}

.logo .sub-brand {
    color: var(--primary-beige);
    font-family: "monument_extendedregular";
    font-size: 24px;
    letter-spacing: 2px;
}

/* Navigation Styles */
.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    color: var(--light-beige);
    text-decoration: none;
    font-family: "monument_extendedregular";
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: var(--primary-beige);
}

/* Rezervasyon Button */
.contact-btn {
    color: var(--primary-beige) !important;
    padding: 8px 16px;
    border: 1px solid var(--primary-beige);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-beige);
    color: var(--dark-brown) !important;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .logo .brand,
    .logo .sub-brand {
        font-size: 20px;
    }
    
    .nav ul li a {
        font-size: 11px;
    }
}

/* Animasyon renk güncellemeleri */
@keyframes first-text {
    50% {
        color: var(--warm-brown);
    }
}

/* Ek efektler */
.bg-dash-circle img {
    filter: sepia(20%) brightness(90%);
}

.bg-circle-h-line img {
    filter: sepia(20%) brightness(90%);
}

/* Scroll durumunda header'ın görünümü için */
.header.scrolled {
    background-color: rgba(62, 39, 35, 0.9);
    backdrop-filter: blur(10px);
}

/* Dil değiştirme butonu stilleri */
.lang-switch {
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-family: "monument_extendedregular";
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--light-beige);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn:hover {
    color: var(--primary-beige);
}

.lang-btn .current-lang {
    color: var(--primary-beige);
    font-weight: bold;
}

.lang-btn .divider {
    opacity: 0.5;
}

.lang-btn .other-lang {
    opacity: 0.7;
}

/* Loading Animation Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-brown);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-text {
    color: var(--primary-beige);
    font-family: "monument_extendedregular";
    font-size: 32px;
    letter-spacing: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.loader-text span {
    opacity: 0;
    transform: translateY(20px);
}

.loader-text span:first-child {
    animation: fadeInUp 0.5s ease forwards;
}

.loader-text .pension {
    color: var(--warm-brown);
    font-size: 24px;
    letter-spacing: 6px;
    animation: fadeInUp 0.5s ease forwards 0.2s;
}

.progress-bar {
    width: 200px;
    height: 2px;
    background-color: rgba(213, 197, 181, 0.2);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-beige);
    animation: progress 1.5s ease forwards;
}

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

@keyframes progress {
    to {
        width: 100%;
    }
}

/* WhatsApp Float Button Styles */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: var(--dark-brown);
    color: var(--primary-beige);
    border: 1px solid var(--primary-beige);
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    padding: 12px 25px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    background-color: rgba(56, 46, 40, 0.95);
}

.whatsapp-float i {
    font-size: 26px;
    color: var(--primary-beige);
    transition: transform 0.3s ease;
}

.whatsapp-float .whatsapp-text {
    font-family: "monument_extendedregular";
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    color: var(--primary-beige);
    text-transform: uppercase;
}

.whatsapp-float:hover {
    background-color: var(--primary-beige);
    color: var(--dark-brown);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover i,
.whatsapp-float:hover .whatsapp-text {
    color: var(--dark-brown);
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

/* WhatsApp butonunun responsive ayarları */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
        padding: 15px;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none !important;
    }

    .whatsapp-float i {
        font-size: 24px;
        margin: 0;
    }
}

/* Yatay modda WhatsApp butonu pozisyonu */
@media screen and (max-height: 480px) and (orientation: landscape) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px;
    }

    .whatsapp-float i {
        font-size: 20px;
    }
}

/* Touch cihazlar için hover efektini düzenle */
@media (hover: none) {
    .whatsapp-float {
        background-color: rgba(56, 46, 40, 0.95);
    }
    
    .whatsapp-float:hover {
        transform: none;
    }
}

/* Karanlık mod desteği */
@media (prefers-color-scheme: dark) {
    .whatsapp-float {
        background-color: rgba(56, 46, 40, 0.98);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
}

/* Tablet ve Mobil için düzenlemeler */
@media screen and (max-width: 1024px) {
    .info-section {
        min-height: 100vh;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
    }

    .left-part {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 60px;
    }

    .left-part h1 {
        font-size: clamp(60px, 12vw, 120px);
        line-height: 1;
        margin-bottom: 20px;
    }

    .left-part h1 .text {
        height: auto;
        min-height: 120px;
        font-size: clamp(60px, 12vw, 120px);
    }

    .left-part p {
        font-size: clamp(20px, 4vw, 28px);
        max-width: 800px;
        margin: 0 auto 30px;
        line-height: 1.4;
    }

    .book-link {
        margin-top: 20px;
        padding: 40px 60px;
        width: 90%;
        max-width: 800px;
        text-align: center;
        border-radius: 15px;
        background: var(--primary-beige);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: 2px solid var(--dark-brown);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        position: relative;
        overflow: hidden;
    }

    .book-link .linktext {
        font-size: 57px;
        font-weight: 800;
        color: var(--dark-brown);
        white-space: nowrap;
        letter-spacing: 7px;
        text-transform: uppercase;
        text-shadow: 1px 1px 0 var(--primary-beige);
        position: relative;
        z-index: 2;
    }

    .book-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        background: var(--dark-brown);
    }

    .book-link:hover .linktext {
        color: var(--primary-beige);
        text-shadow: 1px 1px 0 var(--dark-brown);
    }

    /* Sağ kısımdaki grid düzenlemesi */
    .right-part {
        width: 100%;
        margin-top: 40px;
    }
}

/* Mobil için ek düzenlemeler */
@media screen and (max-width: 768px) {
    .info-section {
        padding: 30px 15px;
    }

    .left-part {
        margin-top: 40px;
        gap: 30px;
    }

    .left-part h1 {
        font-size: clamp(48px, 10vw, 90px);
    }

    .left-part h1 .text {
        font-size: clamp(48px, 10vw, 90px);
        min-height: 100px;
    }

    .left-part p {
        font-size: clamp(18px, 3.5vw, 24px);
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .book-link {
        padding: 35px 45px;
        width: 92%;
    }

    .book-link .linktext {
        font-size: 48px;
        letter-spacing: 6px;
        font-weight: 800;
    }
}

/* Küçük ekranlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    .left-part {
        margin-top: 30px;
        gap: 25px;
    }

    .left-part h1 {
        font-size: clamp(40px, 9vw, 70px);
    }

    .left-part h1 .text {
        font-size: clamp(40px, 9vw, 70px);
        min-height: 90px;
    }

    .left-part p {
        font-size: clamp(16px, 3vw, 20px);
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .book-link {
        padding: 30px 40px;
        width: 95%;
    }

    .book-link .linktext {
        font-size: 42px;
        letter-spacing: 5px;
        font-weight: 800;
    }
}

/* Yatay görünüm için düzenlemeler */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .info-section {
        padding: 80px 20px;
    }

    .left-part {
        gap: 20px;
    }

    .book-link {
        margin-top: 10px;
        padding: 15px 30px;
    }
}

/* WhatsApp butonu responsive düzenlemeleri */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-float i {
        font-size: 24px;
        margin: 0;
    }
}

/* Mevcut CSS'in sonuna eklenecek mobil optimizasyonları */

@media screen and (max-width: 768px) {
    /* Ana grid yapısı için yeni düzen */
    .right-part {
        height: auto;
        width: 100%;
        max-width: 450px;
        margin: 30px auto;
        padding: 15px;
        background: linear-gradient(145deg, rgba(56, 46, 40, 0.3), rgba(166, 144, 128, 0.1));
        backdrop-filter: blur(10px);
        border-radius: 25px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .main-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-flow: dense;
        gap: 12px;
        height: 100%;
        padding: 10px;
    }

    /* Yeni box düzeni */
    .box {
        position: relative !important;
        animation: none !important;
        border-radius: 18px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        aspect-ratio: 1;
        border: none;
    }

    /* Box boyutlandırma */
    .box:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .box:nth-child(2) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .box:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .box:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Diğer boxları gizle */
    .box:nth-child(n+5) {
        display: none;
    }

    /* Box içerik optimizasyonu */
    .box .bg-img {
        height: 100%;
        transform: scale(1.05);
        transition: transform 0.5s ease;
    }

    .box:active .bg-img {
        transform: scale(1);
    }

    .box .bg-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        filter: brightness(0.95) contrast(1.05);
        transition: filter 0.3s ease;
    }

    /* Sol kısım yeni tasarım */
    .left-part {
        padding: 30px 20px;
        position: relative;
        z-index: 2;
    }

    .left-part::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(180deg, 
            rgba(56, 46, 40, 0.8) 0%,
            rgba(56, 46, 40, 0.4) 100%);
        z-index: -1;
        backdrop-filter: blur(8px);
    }

    .left-part h1 {
        font-size: clamp(42px, 9vw, 72px);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .left-part p {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.5px;
        color: var(--light-beige);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        max-width: 90%;
        margin: 0 auto 25px;
    }

    /* Yeni buton tasarımı */
    .book-link {
        background: linear-gradient(135deg, var(--primary-beige), var(--warm-brown));
        padding: 15px 30px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        border: none;
        width: auto;
        max-width: 280px;
    }

    .book-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.5s ease;
    }

    .book-link:active::before {
        transform: translateX(100%);
    }

    .book-link .linktext {
        font-size: 18px;
        font-weight: 600;
        color: var(--dark-brown);
        position: relative;
        z-index: 2;
    }

    /* Scroll animasyonu */
    .info-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    /* Loading optimizasyonu */
    .page-loader {
        background: linear-gradient(145deg, var(--dark-brown), var(--warm-brown));
    }
}

/* Küçük ekranlar için ince ayarlar */
@media screen and (max-width: 480px) {
    .right-part {
        max-width: 340px;
        margin: 20px auto;
    }

    .main-grid {
        gap: 8px;
        padding: 8px;
    }

    .left-part h1 {
        font-size: clamp(36px, 8vw, 56px);
    }

    .book-link {
        padding: 12px 25px;
        max-width: 240px;
    }

    .book-link .linktext {
        font-size: 16px;
    }
}

/* Performans optimizasyonları */
@media screen and (max-width: 768px) {
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .box, .book-link {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
    }

    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mobil Optimizasyonları */
@media screen and (max-width: 768px) {
    /* Ana Layout Düzenlemesi */
    .info-section {
        min-height: 100vh;
        padding: 80px 20px 40px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        background: linear-gradient(
            180deg,
            var(--dark-brown) 0%,
            rgba(56, 46, 40, 0.95) 100%
        );
    }

    /* Sol Kısım Optimizasyonu */
    .left-part {
        padding: 0;
        text-align: left;
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

    .left-part h1 {
        font-size: clamp(32px, 7vw, 48px);
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .left-part h1 .text {
        height: 40px;
        font-size: clamp(32px, 7vw, 48px);
        margin: 8px 0;
    }

    .left-part h1 .d-flex {
        font-size: clamp(24px, 5vw, 32px);
        opacity: 0.9;
        margin-bottom: 4px;
    }

    .left-part p {
        font-size: 15px;
        line-height: 1.6;
        margin: 16px 0;
        opacity: 0.9;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        letter-spacing: 0.2px;
    }

    /* Rezervasyon Butonu Optimizasyonu */
    .book-link {
        margin: 24px 0;
        padding: 16px 28px;
        background: var(--primary-beige);
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transform: translateY(0);
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .book-link .linktext {
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: var(--dark-brown);
    }

    .book-link .arrow {
        width: 20px;
        height: 20px;
    }

    /* Görsel Grid Optimizasyonu */
    .right-part {
        width: 100%;
        max-width: 540px;
        height: auto;
        margin: 0 auto;
        aspect-ratio: 16/9;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
    }

    .main-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 8px;
        height: 100%;
        padding: 0;
        background: rgba(56, 46, 40, 0.05);
    }

    /* Box Optimizasyonları */
    .box {
        position: relative !important;
        border: none;
        border-radius: 8px;
        overflow: hidden;
        animation: none !important;
    }

    /* Box Yerleşimleri */
    .box:nth-child(1) {
        grid-column: 1 / span 4;
        grid-row: 1 / span 3;
    }

    .box:nth-child(2) {
        grid-column: 5 / span 2;
        grid-row: 1 / span 2;
    }

    .box:nth-child(3) {
        grid-column: 5 / span 2;
        grid-row: 3 / span 2;
    }

    .box:nth-child(4) {
        grid-column: 1 / span 4;
        grid-row: 4 / span 1;
    }

    /* Diğer boxları gizle */
    .box:nth-child(n+5) {
        display: none;
    }

    /* Görsel Optimizasyonları */
    .box .bg-img {
        height: 100%;
        width: 100%;
    }

    .box .bg-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transform: scale(1.02);
        transition: transform 0.3s ease;
        will-change: transform;
    }

    .box:active .bg-img img {
        transform: scale(1);
    }

    /* Gereksiz Elementleri Gizle */
    .bg-line,
    .bg-dash-circle,
    .bg-circle-h-line {
        display: none;
    }

    /* Performans Optimizasyonları */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-font-smoothing: antialiased;
    }

    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Daha Küçük Ekranlar İçin Optimizasyonlar */
@media screen and (max-width: 480px) {
    .info-section {
        padding: 60px 16px 32px;
        gap: 32px;
    }

    .left-part h1 {
        font-size: clamp(28px, 6vw, 36px);
    }

    .left-part h1 .text {
        height: 36px;
        font-size: clamp(28px, 6vw, 36px);
    }

    .left-part p {
        font-size: 14px;
        margin: 12px 0;
    }

    .book-link {
        padding: 14px 24px;
        margin: 20px 0;
    }

    .book-link .linktext {
        font-size: 15px;
    }

    .right-part {
        aspect-ratio: 4/3;
    }

    .main-grid {
        gap: 6px;
    }
}

/* Yatay Mod Optimizasyonları */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .info-section {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .left-part, .right-part {
        flex: 1;
        max-width: 50%;
    }

    .right-part {
        aspect-ratio: 4/3;
    }
}

/* Sol Kısım ve Buton Optimizasyonları - Mobil */
@media screen and (max-width: 768px) {
    .left-part {
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(
            180deg,
            rgba(56, 46, 40, 0.85) 0%,
            rgba(56, 46, 40, 0.95) 100%
        );
        border-radius: 24px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        margin: 20px;
    }

    /* Başlık Optimizasyonları */
    .left-part h1 {
        font-size: clamp(28px, 6vw, 36px);
        line-height: 1.2;
        margin-bottom: 16px;
        color: var(--light-beige);
        font-family: "Extenda Trial 30 Deca";
    }

    .left-part h1 .text {
        height: auto;
        min-height: 42px;
        display: block;
        margin: 8px 0;
        color: var(--primary-beige);
    }

    .left-part h1 .d-flex {
        font-size: clamp(20px, 4vw, 24px);
        color: var(--warm-brown);
        opacity: 0.9;
    }

    /* Paragraf Optimizasyonları */
    .left-part p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--warm-gray);
        margin: 16px auto;
        max-width: 85%;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        letter-spacing: 0.3px;
    }

    /* Buton Grubu Container */
    .button-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 24px auto;
    }

    /* Ana Rezervasyon Butonu */
    .book-link {
        width: 100%;
        padding: 16px 24px;
        background: var(--primary-beige);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        text-decoration: none;
    }

    .book-link::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent
        );
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .book-link:active {
        transform: translateY(2px);
    }

    .book-link:active::after {
        transform: translateX(100%);
    }

    .book-link .linktext {
        font-size: 16px;
        font-weight: 600;
        color: var(--dark-brown);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-family: "monument_extendedregular";
    }

    /* Ok İkonu Optimizasyonu */
    .book-link .arrow {
        width: 20px;
        height: 20px;
        position: relative;
        transition: transform 0.3s ease;
    }

    .book-link:active .arrow {
        transform: translateX(4px);
    }

    /* İkincil Butonlar */
    .secondary-button {
        width: 100%;
        padding: 14px 20px;
        background: transparent;
        border: 1px solid var(--primary-beige);
        border-radius: 12px;
        color: var(--primary-beige);
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-family: "monument_extendedregular";
        transition: all 0.3s ease;
    }

    .secondary-button:active {
        background: rgba(224, 208, 192, 0.1);
        transform: translateY(1px);
    }

    /* Touch Feedback Optimizasyonları */
    .book-link, .secondary-button {
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
        user-select: none;
    }

    /* Aktif Durum Efektleri */
    .book-link:active {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .secondary-button:active {
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Daha Küçük Ekranlar İçin İnce Ayarlar */
@media screen and (max-width: 480px) {
    .left-part {
        padding: 16px;
        margin: 16px;
    }

    .left-part h1 {
        font-size: clamp(24px, 5vw, 32px);
    }

    .left-part p {
        font-size: 14px;
        line-height: 1.5;
        margin: 12px auto;
    }

    .button-group {
        max-width: 260px;
        gap: 10px;
    }

    .book-link {
        padding: 14px 20px;
    }

    .book-link .linktext {
        font-size: 15px;
    }

    .secondary-button {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Yatay Mod Optimizasyonları */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .left-part {
        padding: 16px;
        margin: 10px;
        max-width: 45%;
    }

    .button-group {
        flex-direction: row;
        max-width: 100%;
    }

    .book-link, .secondary-button {
        flex: 1;
        padding: 12px 16px;
    }
}

/* Sol Kısım ve Grid Yapısı - Mobil */
@media screen and (max-width: 768px) {
    .info-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
        min-height: 100vh;
        background: linear-gradient(
            180deg,
            var(--dark-brown) 0%,
            rgba(56, 46, 40, 0.98) 100%
        );
    }

    /* Sol Kısım Yeni Tasarım */
    .left-part {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
        background: linear-gradient(
            135deg,
            rgba(56, 46, 40, 0.9) 0%,
            rgba(166, 144, 128, 0.1) 100%
        );
        border-radius: 24px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        margin: 0;
        width: 100%;
        max-width: none;
    }

    /* Başlık Grubu */
    .title-group {
        text-align: left;
    }

    .left-part h1 {
        font-size: clamp(36px, 8vw, 56px);
        line-height: 1.1;
        color: var(--light-beige);
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .left-part h1 .text {
        height: auto;
        min-height: 60px;
        font-size: clamp(36px, 8vw, 56px);
        color: var(--primary-beige);
        display: block;
        margin: 8px 0;
    }

    .left-part h1 .d-flex {
        font-size: clamp(28px, 6vw, 36px);
        color: var(--warm-brown);
        opacity: 0.9;
    }

    /* Açıklama Metni */
    .left-part p {
        font-size: 16px;
        line-height: 1.6;
        color: var(--warm-gray);
        max-width: 90%;
        margin: 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        letter-spacing: 0.3px;
    }

    /* Buton Grubu */
    .button-group {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        width: 100%;
        margin: 10px 0 0 0;
    }

    /* Ana Rezervasyon Butonu */
    .book-link {
        width: 100%;
        padding: 18px 28px;
        background: var(--primary-beige);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        margin: 0;
    }

    .book-link .linktext {
        font-size: 17px;
        font-weight: 600;
        color: var(--dark-brown);
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    /* Sağ Kısım Grid Düzeni */
    .right-part {
        margin: 0;
        width: 100%;
        aspect-ratio: 16/10;
        border-radius: 20px;
        overflow: hidden;
        background: rgba(56, 46, 40, 0.05);
    }

    .main-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        height: 100%;
    }
}

/* Tablet Boyutu İçin Özel Düzen */
@media screen and (min-width: 600px) and (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
        padding: 30px;
    }

    .left-part, .right-part {
        height: 100%;
    }

    .right-part {
        aspect-ratio: 4/5;
    }
}

/* Küçük Ekranlar İçin İnce Ayarlar */
@media screen and (max-width: 480px) {
    .info-section {
        padding: 16px;
        gap: 20px;
    }

    .left-part {
        padding: 24px;
    }

    .left-part h1 {
        font-size: clamp(32px, 7vw, 42px);
    }

    .left-part h1 .text {
        font-size: clamp(32px, 7vw, 42px);
        min-height: 50px;
    }

    .left-part p {
        font-size: 15px;
        max-width: 100%;
    }

    .button-group {
        grid-template-columns: 1fr;
    }

    .book-link {
        padding: 16px 24px;
    }

    .book-link .linktext {
        font-size: 16px;
    }
}

/* Yatay Mod İçin Özel Düzen */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .info-section {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px;
        min-height: auto;
    }

    .left-part {
        padding: 20px;
    }

    .button-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil Optimizasyonlar */
@media screen and (max-width: 768px) {
    .info-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
        min-height: 100vh;
        background: linear-gradient(
            180deg,
            var(--dark-brown) 0%,
            rgba(56, 46, 40, 0.98) 100%
        );
    }

    /* Sol Kısım */
    .left-part {
        width: 100%;
        max-width: 600px;
        padding: 20px;
        background: rgba(56, 46, 40, 0.9);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .left-part h1 {
        font-size: clamp(28px, 6vw, 36px);
        line-height: 1.2;
        color: var(--light-beige);
        margin-bottom: 12px;
    }

    .left-part h1 .text {
        display: block;
        font-size: clamp(28px, 6vw, 36px);
        color: var(--primary-beige);
        margin: 8px 0;
    }

    .left-part p {
        font-size: 14px;
        line-height: 1.5;
        color: var(--warm-gray);
        margin-bottom: 16px;
    }

    /* Butonlar */
    .button-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .book-link {
        padding: 14px 20px;
        background: var(--primary-beige);
        border-radius: 12px;
        color: var(--dark-brown);
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: background 0.3s ease;
    }

    .book-link:hover {
        background: var(--warm-brown);
    }

    /* Görsel Grid */
    .right-part {
        width: 100%;
        max-width: 600px;
        aspect-ratio: 16/9;
        border-radius: 16px;
        overflow: hidden;
        background: rgba(56, 46, 40, 0.05);
    }

    .main-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 8px;
    }

    .box {
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

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

    .box:hover img {
        transform: scale(1.05);
    }
}

/* Küçük Ekranlar İçin İnce Ayarlar */
@media screen and (max-width: 480px) {
    .info-section {
        padding: 16px;
        gap: 16px;
    }

    .left-part {
        padding: 16px;
    }

    .left-part h1 {
        font-size: clamp(24px, 5vw, 32px);
    }

    .left-part p {
        font-size: 13px;
    }

    .button-group {
        max-width: 260px;
    }

    .book-link {
        padding: 12px 18px;
        font-size: 15px;
    }
}

/* Mobil için Sol Kısım Grid Optimizasyonu */
@media screen and (max-width: 768px) {
    .info-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 16px;
        min-height: 100vh;
        background: linear-gradient(
            180deg,
            var(--dark-brown) 0%,
            rgba(56, 46, 40, 0.95) 100%
        );
    }

    /* Sol Kısım - Booking Tarzı Düzen */
    .left-part {
        display: grid;
        grid-template-rows: auto auto 1fr;
        gap: 16px;
        padding: 24px;
        background: rgba(56, 46, 40, 0.85);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    /* Başlık Grubu */
    .title-group {
        display: grid;
        gap: 8px;
    }

    .left-part h1 {
        font-size: clamp(24px, 5vw, 32px);
        line-height: 1.2;
        color: var(--light-beige);
        letter-spacing: -0.5px;
        font-family: "Extenda Trial 30 Deca", -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .left-part h1 .text {
        display: block;
        color: var(--primary-beige);
        font-size: clamp(28px, 6vw, 36px);
        margin: 4px 0;
        min-height: 40px;
    }

    .left-part h1 .d-flex {
        font-size: clamp(20px, 4vw, 24px);
        color: var(--warm-brown);
        opacity: 0.9;
    }

    /* Açıklama Metni */
    .left-part p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--warm-gray);
        margin: 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        letter-spacing: 0.2px;
    }

    /* Rezervasyon Bölümü */
    .booking-section {
        display: grid;
        gap: 20px;
        margin-top: 8px;
    }

    /* Özellikler Listesi */
    .features-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 16px 0;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--warm-gray);
        font-size: 13px;
    }

    .feature-item i {
        color: var(--primary-beige);
        font-size: 16px;
    }

    /* CTA Butonları */
    .button-group {
        display: grid;
        gap: 12px;
        width: 100%;
    }

    .book-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 24px;
        background: var(--primary-beige);
        border-radius: 12px;
        color: var(--dark-brown);
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .book-link:active {
        transform: translateY(1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .book-link i {
        font-size: 18px;
    }

    /* Fiyat Bilgisi */
    .price-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 12px;
        padding: 12px;
        background: rgba(56, 46, 40, 0.3);
        border-radius: 8px;
    }

    .price-label {
        color: var(--warm-gray);
        font-size: 13px;
    }

    .price-value {
        color: var(--primary-beige);
        font-size: 18px;
        font-weight: 600;
    }

    /* Performans Optimizasyonları */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .left-part, .book-link {
        will-change: transform;
        transform: translateZ(0);
    }
}

/* Küçük Ekranlar İçin İnce Ayarlar */
@media screen and (max-width: 480px) {
    .info-section {
        padding: 12px;
        gap: 16px;
    }

    .left-part {
        padding: 20px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .book-link {
        padding: 14px 20px;
    }
}

/* Yatay Mod Optimizasyonları */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .info-section {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 16px;
        min-height: auto;
    }

    .left-part {
        height: 100%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* WhatsApp Butonu ve Container Düzenlemeleri - Mobil */
@media screen and (max-width: 768px) {
    /* Container Yerleşimleri */
    .info-section {
        display: grid;
        grid-template-areas: 
            "whatsapp"
            "content"
            "gallery";
        gap: 20px;
        padding: 16px;
        position: relative;
    }

    .left-part {
        grid-area: content;
        margin-top: 60px; /* WhatsApp butonu için alan */
    }

    .right-part {
        grid-area: gallery;
    }

    /* Büyütülmüş WhatsApp Butonu */
    .whatsapp-float {
        grid-area: whatsapp;
        position: fixed;
        bottom: auto;
        top: 20px;
        right: 16px;
        display: flex;
        align-items: center;
        padding: 16px 24px;
        background: #25D366;
        border-radius: 30px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        z-index: 1000;
        transition: all 0.3s ease;
        text-decoration: none;
        width: calc(100% - 32px);
        max-width: 600px;
        margin: 0 auto;
        justify-content: center;
    }

    .whatsapp-float i {
        font-size: 32px;
        color: #fff;
        margin-right: 12px;
    }

    .whatsapp-text {
        display: block;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    /* Aktif Durum */
    .whatsapp-float:active {
        transform: translateY(2px);
        box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
    }

    /* Animasyon */
    @keyframes whatsappPulse {
        0% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        }
        50% {
            box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
        }
        100% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        }
    }

    .whatsapp-float {
        animation: whatsappPulse 2s infinite;
    }
}

/* Küçük Ekranlar İçin WhatsApp Düzenlemeleri */
@media screen and (max-width: 480px) {
    .whatsapp-float {
        padding: 14px 20px;
        top: 16px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .whatsapp-text {
        font-size: 16px;
    }
}

/* Yatay Mod İçin WhatsApp Düzenlemeleri */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .info-section {
        grid-template-areas: 
            "whatsapp whatsapp"
            "content gallery";
    }

    .whatsapp-float {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        margin-bottom: 10px;
    }
}

/* Scroll Durumunda WhatsApp Butonu */
@media screen and (max-width: 768px) {
    .whatsapp-float.scrolled {
        position: fixed;
        top: auto;
        bottom: 20px;
        width: auto;
        padding: 16px;
        border-radius: 50%;
    }

    .whatsapp-float.scrolled .whatsapp-text {
        display: none;
    }

    .whatsapp-float.scrolled i {
        margin: 0;
        font-size: 32px;
    }
}

