.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.animation-fix {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.animated-on-scroll {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

@media only screen and (max-width: 87.5em) {
  html {
    font-size: 57.5%;
  }
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 52.5%;
  }
}

@media only screen and (max-width: 31.25em) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
}

.container {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 75em) {
  .container {
    width: 90%;
  }
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

::selection {
  background-color: rgba(255, 69, 0, 0.8);
  color: black;
}

.heading__secondary_black {
  color: black;
  font-size: 3.5rem;
  letter-spacing: 1px;
  margin-bottom: .4rem;
  text-align: center;
  font-weight: 600;
}

.heading__secondary_white {
  color: white;
  font-size: 3.5rem;
  letter-spacing: 1px;
  margin-bottom: .4rem;
  text-align: center;
  font-weight: 600;
}

.heading__tertiary {
  letter-spacing: 1px;
  color:white;
  font-weight: normal;
  font-size: calc(0.8928571429vw + 5.1428571429px);	
}

.sub-heading {
  margin-bottom: 6rem;
  font-size: 1.6rem;
  text-align: center;
}

@media only screen and (max-width: 62.5em) {
  .sub-heading {
    margin-bottom: 3rem;
  }
}

.header {
  height: 8rem;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background-color .4s;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scroll, .blogHeader {
  background-color: #371922;
  box-sizing: border-box;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.9);

  .logo {
    width: 8rem;
    height: 8rem;
    margin-top: 0;
  }
}
.static-header {
  background-color: #371922;
  box-sizing: border-box;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.9);

  .logo {
    width: 8rem;
    height: 8rem;
    margin-top: 0;
  }
}

@media only screen and (max-width: 43.75em) {
  .logo-box .logo {
    display: flex;
  }
}

.logo-box .logo {
  width: 15rem;
  height: 15rem;
  margin-top: 5rem;
  display: flex;
}

.nav__list {
  list-style: none;
}

.nav__item {
  display: inline-block;
}

.nav__item:not(:last-child) {
  margin-right: 2rem;
}

.nav__link {
  color: white;
  position: relative;
  font-weight: 600;
}

.nav__link.active:hover:before {
  width: 0;
}

.nav__link.active:after {
  width: 100%;
  transition-delay: .2s;
}

.nav__link:before,
.nav__link:after {
  content: "";
  display: block;
  height: 2px;
  background-color: white;
  width: 0;
  position: absolute;
  transition: width 0.3s linear;
}

.nav__link:before {
  top: -5px;
  right: 0;
}

.nav__link:after {
  bottom: -5px;
  left: 0;
}

.nav__link:hover:before,
.nav__link:hover:after {
  width: 100%;
}

.menu {
  display: none;
  z-index: 2000;
  position: fixed;
  top: 2rem;
  right: 3rem;
  width: 4rem;
  height: 3rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform .5s ease-out;
  background-color: transparent;
}

.menu__overlay .logo-box .logo {
  display: none;
}

@media only screen and (max-width: 78.125em) {
  .menu__overlay .logo-box .logo {
    display: flex;
  }

  .menu__overlay .logo-box {
    display: flex;
    background-color: #371922;
    box-sizing: border-box;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.9);

    .logo {
      width: 8rem;
      height: 8rem;
      margin-top: 0;
      margin-left: 2rem;
    }
  }
}

@media only screen and (max-width: 78.125em) {
  .menu {
    display: flex;
  }
}

.menu .bar {
  background-color: white;
  width: 100%;
  height: .3rem;
  border-radius: 1rem;
}

.menu .half {
  width: 50%;
}

.menu .left {
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.menu .right {
  align-self: flex-end;
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.menu.open {
  transform: rotate(-225deg);
}

.menu.open .bar.left {
  transform: rotate(-90deg) translateX(0.8rem);
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.menu.open .bar.right {
  transform: rotate(-90deg) translateX(-0.8rem);
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.call-btn {
  display: none;
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  z-index: 2000;
  border-radius: 50%;
  background-color: green;
  overflow: hidden;
}

@media only screen and (max-width: 78.125em) {
  .call-btn {
    display: block;
  }
}

.call-btn__link {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e0e0e0c2;
  font-size: 2.5rem;
  padding: 1rem;
  line-height: 1;
}

@media only screen and (max-width: 78.125em) {
  .header {
    transform: translateX(100%);
    z-index: 1000;
    text-align: center;
    height: 100vh;
    width: 100%;
    transition: transform .5s;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .logo-box {
	 position: fixed;
	 width: 100%;
	 z-index:100;
  }
  .header.opened {
    transform: translate(0);
  }

  .header.scroll {
    background-color: rgba(0, 0, 0, 0.9);
  }
  .logo-box .logo{
		display: none;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__item {
    display: block;
  }

  .nav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .nav__link {
    font-size: 2.5rem;
    line-height: 1;
  }

  .nav__link:before,
  .nav__link:after {
    display: none;
  }
}

.home {
  height: 100vh;
  background-color: #e0e0e0c2;
}
.blog {
  height: 100%;
  background-color: #e0e0e0c2;
  padding-top: 15rem;
  padding-bottom: 10rem;
}
.blogSection {
  background: transparent;
  z-index: 90;
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 4);
  padding-left:5rem; 
  padding-right:5rem;
  padding-top: 10rem;
  padding-bottom: 20rem;
}
.blogSection .title{
	color: #371922;
	font-weight: 700;
	font-size: x-large;
	padding-bottom: 3rem;
	border-bottom: 2px solid  #371922;
}
.blogSection .content{
	padding-top: 3rem;
	
}
.blogSection .content img{
  width: 100% !important;
  height: 100% !important;
	
}
.home .swiper-container {
  width: 100%;
  height: 100%;
  background: #371922;
}

.home .swiper-slide {
  color: #e0e0e0c2;
  display: flex;
  align-items: center;
}

.home .swiper-slide .container {
  position: relative;
}

@media only screen and (max-width: 62.5em) {
  .home .swiper-control-btn {
    display: none;
  }
}

.slider_img_1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/slide_1.webp);
  background-size: cover;
  background-position: center;
}

.slider_img_2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/slide_2.webp);
  background-size: cover;
  background-position: center;
}

.slider_img_3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/slide_3.webp);
  background-size: cover;
  background-position: center;
}

.home .swiper-caption-1,
.swiper-caption-2,
.swiper-caption-3 {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  border-top: 2px solid #371922;
  border-bottom: 2px solid #371922;
  padding: 4rem 3rem;
  background: -moz-linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  background: -o-linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  background: -ms-linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  animation: mainAni 3s ease-out;
}

@media only screen and (max-width: 31.25em) {

  .home .swiper-caption-1,
  .swiper-caption-2,
  .swiper-caption-3 {
    padding: 4rem 2rem;
  }
}

@media only screen and (max-width: 31.25em) and (max-width: 31.25em) {
  .home .swiper-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

.home .parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/slider-bg.jpg);
  background-size: cover;
  background-position: center;
}

.home .swiper-slide .title {
  color: white;
  font-size: 3rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.home .swiper-slide .subtitle {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.home .swiper-slide .text {
  max-width: 100rem;
  line-height: 1.3;
}

.rooms {
  background-color: #e0e0e0c2;
  text-align: center;
  color: #e0e0e0c2;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.rooms .sub-heading {
  text-align: center;
  color: black;
}

@media only screen and (max-width: 31.25em) {
  .rooms {
    padding-top: 0.1vh;
  }
}

.rooms__sub-heading {
  margin-bottom: 4rem;
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
  margin: auto;
  width: 100%;
}

@media only screen and (max-width: 87.5em) {
  .rooms__grid {
    width: 90%;
  }
}

@media only screen and (max-width: 81.25em) {
  .rooms__grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

@media only screen and (max-width: 48.31em) {
  .rooms__grid {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

.rooms__item__container {
  background-color:  #e0e0e0c2;
  position: relative;
  width: 100%;
  height: 100%;
  transition: box-shadow 3s ease-in-out;
  backface-visibility: hidden;
  box-shadow: 0 18px 16px rgba(0, 0, 0, 0.9);
  color:black;
  font-weight: 600;
  border-radius: 20px;
}

.rooms__item__container:hover {
	background-color:  #371922;
    box-shadow: 3px 3px 10px rgba(255, 69, 0, 0.3);
}

.rooms__item__container:hover .rooms__item {
  transform: translate(-0.8rem, -1rem);
  border: none;
}

.rooms__item__container:hover .rooms__item span:nth-child(odd) {
  width: 100%;
}

.rooms__item__container:hover .rooms__item span:nth-child(even) {
  height: 100%;
}

.rooms__item_img {
  background-color: #371922;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  aspect-ratio: 5 / 3;  
}

.rooms__item_img img {
  background-color: black;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.rooms__item {
border-radius: 20px;	
  background-color: rgba(100, 100, 100, 0.7);
  padding: 2rem;
  transition: transform 0.2s cubic-bezier(0.39, 0.45, 0.36, 0.98);
  transition-delay: 0.5s;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.rooms__item__icon {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  color: white;
}

.rooms__item__heading {
  font-size: 2rem;
}

.rooms__item__text {
  line-height: 140%;
}

.rooms__item span {
  position: absolute;
  background-color: #371922;
  height: 0;
  width: 0;
  margin-bottom: 0 !important;
}

.rooms__item .top {
  top: 0;
  left: 0;
  height: 2px;
  transition: width 0.2s cubic-bezier(0.39, 0.45, 0.36, 0.98);
}

.rooms__item .bottom {
  bottom: 0;
  right: 0;
  height: 2px;
  transition: width 0.2s cubic-bezier(0.39, 0.45, 0.36, 0.98);
}

.rooms__item .right {
  top: 0;
  right: 0;
  width: 2px;
  transition: height 0.2s cubic-bezier(0.39, 0.45, 0.36, 0.98);
  transition-delay: 0.2s;
}

.rooms__item .left {
  left: 0;
  bottom: 0;
  width: 2px;
  transition: height 0.2s cubic-bezier(0.39, 0.45, 0.36, 0.98);
  transition-delay: 0.2s;
}

.rooms__item *:not(:last-child) {
  margin-bottom: 1rem;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.75);
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}

.lightbox.lightbox-open {
  transform: scale(1);
  pointer-events: all;
  opacity: 1;
}

.lightbox__close-btn {
  position: fixed;
  right: 5rem;
  top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  border-radius: 50%;
  backface-visibility: hidden;
  z-index: 55555;
}

.lightbox__close-btn:hover:before,
.lightbox__close-btn:hover:after {
  background-color: #e0e0e0c2;
}

.lightbox__close-btn:before,
.lightbox__close-btn:after {
  content: "";
  width: 100%;
  height: 3px;
  background: rgba(224, 224, 224, 0.5);
  position: absolute;
  border-radius: 10rem;
  transition: background-color .2s;
  backface-visibility: hidden;
}

.lightbox__close-btn:before {
  transform: rotate(-45deg);
}

.lightbox__close-btn:after {
  transform: rotate(45deg);
}

.lightbox__picture {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  height: 100%;
}

.lightbox__img {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.lightbox__img::selection {
  background-color: transparent;
}

.lightbox__control-btn {
  width: 3rem;
  height: 3rem;
  border-left: 2px solid rgba(224, 224, 224, 0.5);
  border-top: 2px solid rgba(224, 224, 224, 0.5);
  position: absolute;
  top: 50%;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 200;
}

.lightbox__control-btn:hover {
  border-left: 2px solid #e0e0e0c2;
  border-top: 2px solid #e0e0e0c2;
}

.lightbox__prev {
  transform: rotate(-45deg) translateY(-50%);
  left: 5rem;
}

.lightbox__next {
  transform: rotate(135deg) translateY(-50%);
  right: 5rem;
}

.gallery {
  background-color: #e0e0e0c2;
  color: #e0e0e0c2;
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

@media only screen and (max-width: 31.25em) {
  .gallery {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}


.gallery__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 0.5rem;
}

@media only screen and (max-width: 31.25em) {
	.gallery__grid {
	  grid-template-columns: repeat(2, 1fr);
	  grid-template-rows: repeat(3, 1fr);
	}
}

.gallery__item {
  width: 100%;              /* ya da bir container'a göre sabit olabilir */
  aspect-ratio: 5 / 4;      /* genişlik 5 birim, yükseklik 3 birim */
  position: relative;
  overflow: hidden;
}


.gallery__item:hover .gallery__overlay {
  opacity: 1;
  pointer-events: all;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.1);
}

.gallery__img {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .7s ease;
  backface-visibility: hidden;
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
  backface-visibility: hidden;
  cursor: pointer;
}

.gallery__icon {
  color: #371922;
  font-size: 2.5rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
}

.gallery_btn .nav__list {
  display: flex;
  justify-content: center;
}

.gallery_btn {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.gallery_btn a {
  width: 10rem;
  font-size: 2rem;
  font-weight: 600;
  color: black;
  background-color: transparent;
  padding: 1rem;
}

.contact {
  padding-top: 15rem;
  background-color: #371922;
  color: #e0e0e0c2;
}

@media only screen and (max-width: 68.75em) {
  .contact {
    padding-top: 4rem;
  }
}

@media only screen and (max-width: 31.25em) {
  .contact {
    padding-top: 3rem;
  }
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 81.25em) {
  .contact__grid {
    grid-template-columns: 2fr 3fr;
  }
}

@media only screen and (max-width: 50em) {
  .contact__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 35rem 1fr;
    margin-bottom: 5rem;
  }
}

.contact__left {
  position: relative;
}

.contact__left--container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 81.25em) {
  .contact__left--container {
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
  }
}

.contact__heading {
  font-weight: 500;
  margin-bottom: .5rem;
  color: white;
}

.contact__list {
  margin-bottom: 2.5rem;
  list-style: none;
}

.contact__item {
  margin-bottom: 1rem;
}

.contact__link {
  color: inherit;
  position: relative;
}

.contact__link:hover:after {
  width: 100%;
}

.contact__link:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #371922;
  transition: width .4s;
}

.contact__icon {
  margin-right: 1rem;
  font-size: x-large;
}

.contact__map {
  width: 100%;
  border: none;
  height: 50rem;
}

.footer {
  color: white;
  background-color:#371922;
  text-align: center;
  margin-top: 15rem;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer a{
	color:white;
}

@media only screen and (max-width: 87.5em) {
  .footer {
    margin-top: 5rem;
  }
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.rooms__item__btn button {
  margin-top: 1rem;
  color: black;
  padding: 1.2rem;
  font-weight:400;
  background-color: #371922;
  border: transparent 0.1rem solid;
  box-shadow: 3px 8px 10px black;
  border-radius: 12px;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

 table {
  width: 100% !important;
  border-collapse: collapse !important;
}

 @media screen and (max-width: 900px) {
    table, thead, tbody, th, td, tr {
     display: block !important;
     width: 100% !important;
   }

    thead {
     display: none !important;
   }

   td::before {
     content: attr(data-label) !important;
     position: absolute !important;
     top: 10px !important;
     left: 10px !important;
     width: 45% !important;
     padding-right: 10px !important;
     font-weight: bold !important;
     white-space: nowrap !important;
   }
 }


.modal-content {
  background-color:#e0e0e0c2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 90vh;
  border-radius: 8px;
  overflow-y: scroll;
  animation: fadeIn 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal-body {
  height: 100%;
}

.modal-image,
.modal-text {
  width: 100%;
  height: 70%;
}

.modal .close-btn {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 50px;
  cursor: pointer;
  z-index: 10000000000000000000000;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  background-color:black;
  object-fit: contain;
}

#odaBaslik {
  font-size: 3rem;
  color:black;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-text {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #e0e0e0c2;
  color:black;
  font-style: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  gap: 12px;
  box-shadow: inset 0 0 10px rgba(0, 195, 255, 0.2);
  border-radius: 0 8px 8px 0;
  overflow-x:hidden;
  text-align: center; 
}

.modal-text h2 {
  font-size: 28px;
  margin: 0 0 15px;
  color: #371922;
  border-bottom: 2px solid #371922;
  padding-bottom: 8px;
  text-align: center;
}

.modal-text p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
#odaDetay h3,#odaDetay table,#odaDetay p,#odaDetay q,#odaDetay h1,#odaDetay h2,#odaDetay h4,#odaDetay h5,#odaDetay strong,#odaDetay b,#odaDetay *{
  display: inline-block; 
  max-width: 70%;
  word-wrap: break-word; 
  text-align: center;
}

.modal-text h5 {
  font-style: italic;
  color: #ccc;
  font-size: 1.7rem;
  margin-top: 2rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  text-align: center;
}

#odaTesisOzellikleri {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
  justify-content: flex-start;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 8rem;
  padding: 8px 10px;
  border-radius: 8px;
  background-color: rgba(0, 195, 255, 0.08);
  color: #f1f1f1;
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.feature-item i {
  color: #371922;
  font-size: 20px;
  margin-bottom: 5px;
}

.feature-item:hover {
  background-color: #371922;
  color: #fff;
  transform: translateY(-3px);
}

.feature-item:hover i {
  color: #fff;
}

@media (max-width: 600px) {
  #odaTesisOzellikleri {
    align-items: center;
  }

  .feature-item {
    width: 100%;
    max-width: 250px;
  }
}

#odaFiyat {
  align-self: flex-start;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 600;
  text-align: end;
  margin-top: 10px;
  box-shadow: 0 0 12px rgba(255, 81, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#odaFiyat:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px #371922;
}

.oda_baslik_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media (max-width: 768px) {
/*   .modal-content { */
/*     flex-direction: column; */
/*   } */

/*   .modal-body { */
/*     flex-direction: column; */
/*     height: 100%; */
/*   } */

  .modal-image,
  .modal-text {
    width: 100%;
    height: 50%;
  }

  .modal-text {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .modal-text h2 {
    font-size: 1.25rem;
  }

  .modal-text p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .modal-text h5 {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .feature-item {
    font-size: 0.75rem;
    padding: 0.5rem;
    width: 7rem;
  }

  .feature-item i {
    font-size: 1.125rem;
  }

  #odaFiyat {
    font-size: 1.2rem;
    padding: 1rem;
  }
}


@media (max-width: 900px) {
/*   .modal-content { */
/*     height: auto; */
/*     flex-direction: column; */
/*   } */

/*   .modal-body { */
/*     flex-direction: column; */
/*     height: 200%; */
/*   } */

  .modal-image,
  .modal-text {
    width: 100%;
    height: 50%;
  }

  .modal-text {
    padding: 5rem;
    font-size: 1.875rem;
  }

  .modal-text h2 {
    font-size: 0.75rem;
  }

  .modal-text p {
    font-size: 1.8125rem;
    line-height: 1.4;
  }

  .modal-text h5 {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .feature-item {
    font-size: 1.75rem;
    padding: 0.5rem;
    width: 7rem;
  }

  .feature-item i {
    font-size: 2.125rem;
  }

  #odaFiyat {
    font-size: 2.2rem;
    padding: 1rem;
  }
}

.gallery_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.filter-btn {
  position: relative;
  padding: 0.75rem 1.5rem;
  width: 100%;
  max-width: 200px;
  text-align: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.filter-btn:before,
.filter-btn:after {
  content: "";
  display: block;
  height: 4px;
  background-color: #371922;
  position: absolute;
  width: 0;
  transition: width 0.5s ease;
}

.filter-btn:before {
  top: 0;
  left: 0;
}

.filter-btn:after {
  bottom: 0;
  right: 0;
}

.filter-btn.activeGallery:before {
  width: 100%;
  left: 0;
}

.filter-btn.activeGallery:after {
  width: 100%;
  right: 0;
}

.outer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 10vh;
  position: absolute;
  transform: translateY(-50%);
  z-index: 40;
}

.reservation-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 80%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.9);
}

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

.counter-group label {
  font-size: 1.7rem;
}

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

.counter-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  border: none;
  border-radius: 4px;
  width: 22rem;
  height: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  padding: 1rem;
  margin-left: 1rem;
}

.counter-btn {
  font-size: 2.5rem;
  color: white;
  border: none;
  cursor: pointer;
  background-color: transparent;
  padding: 1.2rem;
}

.input-field {
  font-size: 1.5rem;
  width: 5.5rem;
  text-align: center !important;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 1rem;
}

.input-field[type="date"] {
  width: 20rem;
  margin-left: 1rem;
}

.reservation-button {
  font-size: 1.5rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 3rem;
  margin-left: 2rem;
}

.reservation-button:hover {
  background-color: #371922;
}

.adultsAndChildren {
  font-size: 2rem;
  padding-left: 2rem;
  padding-right: 1rem;
}

@media only screen and (max-width: 78.125em) {
  .reservation-container {
    width: 75%;
  }

  .counter-group label {
    font-size: 1.5rem
  }

  .counter-btns {
    height: 3rem;
  }

  .counter-btn {
    font-size: 2.3rem;
  }

  .input-field {
    font-size: 1.3rem;
    width: 5.2rem;
  }

  .input-field[type="date"] {
    width: 15rem;
  }

  .reservation-button {
    font-size: 1.3rem;
  }
  
  .iletisim {
	 margin-bottom: 10vh; 
  }
  .video_center {
	  width: 100% !important;
  }
}


@media only screen and (max-width: 67.5em) {
  .reservation-container {
    width: 95%;
  }
}

@media only screen and (max-width: 54.4em) {
  .reservation-container {
    height: 25vh;
    margin-top: -10rem;
  }

  .rooms .container {
    margin-top: 13rem;
  }

  .reservation-button {
    width: 90%;
  }

  .input-field[type="date"] {
    width: 90%;
  }
}

.contact__right {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.contact__right iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video {
  height: 100%;
  background-color: #e0e0e0c2;
  padding-top: 15rem;
  padding-bottom: 10rem;
}
.video_center {
  position: relative;
  width: 60%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
}

.video_center iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.submenu {
  display: none;
  margin-top: 10px;
  padding-left: 20px;
}

.submenu h3 {
  font-size: 16px;
  margin: 5px 0;
}