/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', sans-serif;
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  color: #333;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #131936;
  color: white;
  padding: 15px 10px;
  border-bottom: 4px solid #131936;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.logo {
  grid-column: 1 / 2;
  justify-self: start;
}

.logo-img {
  height: 75px;
  width: auto;
  margin-left: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.07);
  opacity: 0.67;
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar nav {
  grid-column: 2 / 3;
  justify-self: center;
}

.navbar a.logo {
  color: #f5f5f5;
  font-size: 24px;
  font-weight: bold;
}

.navbar nav ul {
  display: flex;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.navbar nav ul li {
  margin: 0 40px;
}

.navbar nav ul li a {
  color: #f5f5f5;
  font-size: 30px;
  transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
  color: #ffffffaf;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-55%);
  background-color: rgba(0, 0, 0, 0.5);
  list-style: none;
  padding: 10px 0;
  margin: 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}

.navbar li:hover .dropdown-menu {
  opacity: 1;
  transform: translateX(-55%) translateY(5px);
}

.dropdown-menu li {
  display: block;
  padding: 10px 20px;
}


.dropdown-menu li a {
  color: white;
  transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
  color: #131936; 
  background: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* Ana Sayfa */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
  opacity: 1;
}

.home {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f5f5f5;
  text-align: center;
  border-bottom: 4px solid #131936;
}

.home img {
  position: relative;
  animation: fadeIn 2s ease-in-out;
}

.home p {
  font-size: 50px;
  font-weight: 500;
  color: #131936;
  margin-top: 20px;
  animation: fadeIn 3s ease-in-out;
}

/* Slide */
.slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 700%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

.slider {
  display: flex;
  height: 100%;
  width: 300%;
  transition: transform 1s ease-in-out;
}

.slider img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  flex-shrink: 0;
}

.intro {
  z-index: 1;
  position: relative;
  animation: fadeIn 2s ease-in-out;
}

.intro img {
  height: 200px;
  margin-right: 35px;
  width: auto;
  animation: fadeIn 2s ease-in-out;
}

/* Buton */
.cta-btn {
  background-color: #131936;
  color: white;
  padding: 10px 20px;
  margin-top: 100px;
  border-radius: 5px;
  font-size: 25px;
  transition: background-color 0.3s ease;
  animation: fadeIn 2s ease-in-out;
}

.cta-btn:hover {
  background-color: #131936dc;
}

.cta-container {
  position: relative;
  margin-top: 40px;
  text-align: center;
  z-index: 1;
  animation: fadeIn 2s ease-in-out;
}

/* Tanıtım */
.promotion {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 70px 20px;
  background-color: #f5f5f5;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.promotion.show {
  opacity: 1;
  transform: translateY(0);
}

.promotion.animate {
  animation: slide-down 0.6s ease-out forwards;
}

.promotion-img img {
  max-width: 500px;
  height: auto;
  margin-bottom: 10px;
}

.promotion-img p:first-of-type {
  margin-top: 0;
  margin-bottom: 100px;
  font-size: 50px;
  color: #131936;
  font-weight: 500;
}

.promotion-img p:last-of-type {
  margin-top: 100px;
  font-size: 30px;
  color: #131936;
  font-weight: 400;
  line-height: 1.3;
  margin-left: 60px;
  margin-right: 60px;
  margin-bottom: 40px;
}

/* Hakkımda */
.about {
  padding: 100px 20px;
  background-color: #f5f5f5;
  color: #131936;
  text-align: center;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about.show {
  opacity: 1;
  transform: translateY(0);
}

.about h2 {
  font-size: 50px;
  margin-bottom: 50px;
  color: #131936;
  letter-spacing: 1px;
}

.about p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 25px;
  line-height: 1.3;
  text-align: justify;
}

.about .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 150px;
}

.about .gallery .photo {
  margin-top: 100px;
  margin-bottom: 100px;
  width: 300px;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .gallery .photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.photo.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Özellik */
.features {
  background-color: #f5f5f5;
  padding: 100px 30px;
  text-align: center;
  color: #131936;
  border-top: 4px solid #131936;
}

.features h2 {
  font-size: 40px;
  margin-bottom: 120px;
  color: #131936;
  font-weight: bold;
  text-transform: uppercase;
}

.feature-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.feature-item {
  position: relative;
  flex: 1 1 calc(25% - 20px);
  min-width: 400px;
  height: 550px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  cursor: pointer;
}

.feature-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.feature-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(19, 25, 54, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.caption-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(19, 25, 54, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.feature-item:hover .caption-top {
  height: 100%;
  padding: 20px;
}

.feature-item:hover img {
  transform: scale(1.03);
}

.feature-item:hover .feature-caption {
  height: 100%;
  padding: 20px;
}

/* İlkeler */
.principles {
  padding: 100px 20px;
  background-color: #f5f5f5;
  color: #131936;
  text-align: center;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.principles.show {
  opacity: 1;
  transform: translateY(0);
}

.principles h2 {
  font-size: 50px;
  margin-bottom: 70px;
}

.principles-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.principle-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.principle-card h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 25px;
  color: #131936;
}

.principle-card p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

.principle-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.principles .gallery {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
}

.principles .gallery .photo {
  margin-top: 100px;
  margin-bottom: 100px;
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principles .gallery .photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/*terahisar*/
.terahisar {
  background-color: #f5f5f5;
  padding: 60px 30px;
  text-align: center;
  color: #131936;
  border-top: 4px solid #131936;
}

.terahisar h2{
  font-size: 40px;
  margin-bottom: 120px;
  color: #131936;
  font-weight: bold;
  text-transform: uppercase;
}

.terahisar1 {
  background-color: #f5f5f5;
  padding: 60px 30px;
  text-align: center;
  color: #131936;
}

.terahisar1 h2 {
  font-size: 40px;
  margin-bottom: 120px;
  color: #131936;
  font-weight: bold;
  text-transform: uppercase;
}

.terahisar-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.terahisar-item {
  position: relative;
  flex: 1 1 calc(25% - 20px);
  min-width: 400px;
  height: 550px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  cursor: pointer;
}

.terahisar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.caption-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(19, 25, 54, 0.85);
  color: #fff;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  transition: height 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.caption-wrapper.caption-top {
  bottom: auto;
  top: 0;
  padding-top: 25px;
}

.caption-wrapper.caption-top .caption-description {
  font-weight: 400 !important;
}

.caption-title {
  font-size: 25px;
  font-weight: bold;
  transition: transform 0.4s ease;
}

.caption-description {
  font-size: 20px;
  margin-top: 15px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.terahisar-item:hover img {
  transform: scale(1.03);
}

.terahisar-item:hover .caption-wrapper {
  height: 100%;
  justify-content: center;
}

.terahisar-item:hover .caption-title {
  transform: translateY(-20px);
}

.terahisar-item:hover .caption-description {
  opacity: 1;
  max-height: 200px;
}

/* Footer */
footer {
  background-color: #131936;
  color: #131936;
  padding: 40px 60px 100px;
  border-top: 4px solid #131936;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-left,
.footer-right {
  min-width: 300px;
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  margin-right: 90px;
  margin-top: 50px;
}

.info-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
  text-align: center;
}

.info-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.08);
}

.info-box h2 {
  margin-bottom: 8px;
  color: #f5f5f5;
  font-size: 20px;
  font-weight: bold;
}

.info-box p {
  margin: 0;
  color: #f5f5f5;
  font-size: 18px;
}

.info-box a {
  color: #f5f5f5;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

.footer-logo {
  height: 230px;
  width: 215px;
  margin-left: 90px;
  margin-top: 50px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover {
  filter: opacity(0.6);
  transform: scale(1.04);
}


.footer-phone {
  display: inline-block;
  text-align: center;
  min-width: 160px;
}

.footer-bottom {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.footer-bottom .social-icons {
  margin-bottom: 10px;
  gap: 20px;
  display: inline-flex;
}

.footer-bottom .social-icons a {
  color: #ffffff;
  font-size: 22px;
  transition: color 0.3s ease;
}

.footer-bottom .social-icons a:hover {
  color: #f5f5f59a;
}

.footer-copy {
  font-size: 17px;
  color: #f5f5f5;
}

.wave-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.wave-bottom {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
}

/* İletişim */
.bas {
  text-align: center;
  padding-top: 50px;
  color: #131936;
  background-color: #f5f5f5;
  font-size: 35px;
}

.contact {
  padding: 50px 20px;
  background-color: #f5f5f5;
  text-align: center;
  margin: 100px;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact button {
  background-color: #131936;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #131936;
}

.contact-section {
  height: 80vh;
  padding-top: 100px;
  background-color: #f4f4f4;
  border-bottom: 4px solid #131936;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
  justify-content: center;
  max-width: 1700px;
  margin: 5px auto;
}

/* Form ve Map */
.map-box {
  flex: 1 1 500px;
  height: 500px;
  min-width: 500px;
  max-width: 500px;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.form-box {
  flex: 2 1 500px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-box h2 {
  margin-bottom: 7px;
  font-size: 30px;
  color: #333;
}

.form-box form {
  display: flex;
  flex-direction: column;
}

.form-box label {
  margin: 15px 0 5px;
  font-weight: bold;
}

.form-box input,
.form-box textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}

.form-box button {
  margin-top: 30px;
  padding: 12px;
  background-color: #131936;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-box button:hover {
  background-color: #131936dc;
}

.rumeli {
  padding: 70px;
  background-color: #f5f5f5;
}

.rumeli-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.rumeli-box {
  position: relative;
  flex: 1;
  width: 300px;
  margin: 50px 80px;
  height: 500px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rumeli-box h2,
.rumeli-box p,
.rumeli-box a {
  transition: color 0.3s ease;
  color: #131936;
  text-align: center;
}

.rumeli-box:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.rumeli-box:hover h2,
.rumeli-box:hover p,
.rumeli-box:hover a {
  color: #131936dc;
}

.rumeli-box h2 {
  margin-top: 150px;
  font-size: 30px;
  line-height: 2.5;
}

.rumeli-box p,
.rumeli-box a {
  font-size: 25px;
  text-decoration: none;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.with-wave .wave-top {
  position: absolute;
  transform: scaleY(-1); /* yukarı bakan dalga */
  top: -1px;
  left: 0;
  width: 115%;
  height: auto;
  z-index: 1;
  overflow: hidden;
}

.with-wave .wave-bottom {
  position: absolute;
  bottom: -1px;
  transform: scaleY(-1);
  left: 0;
  width: 115%;
  height: auto;
  z-index: 1;
  overflow: hidden;
}

.with-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.with-wave h2,
.with-wave p {
  position: relative;
  z-index: 2;
}

/* Mobil Hamburger Menü */
.side-menu {
  position: fixed;
  top: 0;
  right: -70%;
  width: 70%;
  height: 100vh;
  background-color: #131936e0;
  z-index: 1100;
  transition: right 0.3s ease;
  padding-top: 60px;
}

.side-menu ul {
  list-style: none;
  padding: 0 20px;
}

.side-menu ul li {
  margin-top: 55px;
}

.side-menu ul li a {
  color: white;
  opacity: 1;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.side-menu ul li a:hover {
  color: #ffffffa1;
}

.side-menu.open {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 15px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.side-menu-footer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f5f5f59a;
}

.restaurant-name {
  margin-top: 12px;
  font-size: 14px;
  color: #ffffff;
}


@media (min-width: 1367px) {
  .hamburger {
    display: none;
  }
}

@media (max-width: 1366px) {
  .hamburger {
    display: block;
  }
}

/* Animasyonlar */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}