/* Genel */
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: #000;
  background: #fff8cf;
}

h1, h2 {
  font-family: 'Georgia', serif;
  margin-bottom: 10px;
}

.container {
  color: #36191b;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: #36191b !important;
  z-index: 9998;
  padding: 15px 0;
  position: relative;
}

/* Desktop'ta hamburger tamamen gizle ve normal menüyü göster */
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .nav-left, .nav-right {
    display: flex !important;
  }

  .navbar-container {
    flex-direction: row !important;
    justify-content: space-between !important;
  }
}

.navbar-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-left, .nav-right {
  flex: 1;
}

.nav-left {
  display: flex;
  justify-content: flex-start;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
}

.logo-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #dbaf52;
  transition: color 0.3s, transform 0.3s;
  font-family: 'Poppins', sans-serif;
}

.nav-links li a:hover {
  color: #f4c967;
  transform: scale(1.05);
}

/* Hamburger Menu - Desktop Hidden */
.hamburger {
  display: none !important;
}

/* ABOUT */
.about {
  padding: 80px 20px;
  background: #fff7c9;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-family: 'Georgia', serif;
  font-size: 42px;
  color: #36191b;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.about-image img {
  width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s;
  margin: 0 auto;
  display: block;
}

.about-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 968px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* SECRET ROOM */
.secret-room {
  padding: 80px 20px;
  background: #fff7c9;
}

.secret-room-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.secret-room-images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image img {
  width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s;
  cursor: pointer;
}

.main-image img:hover {
  transform: scale(1.02);
}

.small-images {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.small-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #dbaf52;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.small-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.secret-room-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #36191b;
  margin-bottom: 25px;
  font-weight: bold;
}

.secret-room-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  font-style: italic;
}

@media (max-width: 968px) {
  .secret-room-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .small-images {
    justify-content: center;
  }
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Üstten karartma */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #f7d851;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-title {
  font-size: 64px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease;
}

.hero-btn {
  text-decoration: none;
  padding: 12px 30px;
  background: #8b4513;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

.hero-btn:hover {
  background: #a0522d;
  transform: scale(1.05);
}
/* KÜÇÜK FOTOĞRAFLAR */
.photos {
  padding: 60px 20px;
  background: #fff7c9;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 6px solid #dbaf52;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.photo-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* GALERİ GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #dbaf52;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.social-icons {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1100; /* navbar üstünde */
}

.social-icons .icon {
  width: 50px;
  height: 50px;
  background-color: #d4af37; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s, background-color 0.3s;
  color: white; 
  font-size: 24px; 
}

.social-icons .icon:hover {
  transform: scale(1.1);
  background-color: #b38b2e; 
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MENU IMAGES */
.menu-images-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.menu-image {
  flex: 1;
  max-width: 500px;
  min-width: 400px;
}

.menu-image img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #dbaf52;
  box-shadow: 8px 15px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}

.menu-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  border-color: #f4c967;
}
/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }

  /* Navigation Mobile */
  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav-left, .nav-right {
    display: none;
  }

  /* Show hamburger only on mobile */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 10000;
    position: relative;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #36191b;
    flex-direction: column;
    padding: 80px 20px 20px;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  }

  .mobile-menu.active {
    display: flex;
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
    text-align: center;
  }

  .logo-img {
    height: 50px;
  }


  .hamburger span {
    width: 25px;
    height: 3px;
    background: #dbaf52;
    transition: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Menu Overlay */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
  }

  .menu-overlay.active {
    display: block;
  }

  /* Menu Images Mobile */
  .menu-images-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
    overflow: hidden;
  }

  .menu-image {
    min-width: 100%;
    max-width: 100%;
  }

  .menu-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    max-width: 100%;
    
  }

  /* About Section Mobile */
  .about-content h2 {
    font-size: 32px;
    text-align: center;
  }

  .about-content p {
    font-size: 16px;
  }

  /* Secret Room Mobile */
  .secret-room-content h3 {
    font-size: 28px;
    text-align: center;
  }

  .secret-room-content p {
    font-size: 16px;
  }

  .small-img {
    width: 100px;
    height: 100px;
  }

  .main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .main-image img {
    width: 90%;
    display: block;
    margin: 0 auto;
  }

  /* Photos Grid Mobile */
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Gallery Grid Mobile */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .gallery-grid img {
    height: 250px;
  }

  /* Social Icons Mobile */
  .social-icons {
    left: 10px;
    gap: 10px;
  }

  .social-icons .icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  /* Container Mobile */
  .container {
    padding: 15px;
  }

  /* Section Padding Mobile */
  .about, .secret-room, .photos {
    padding: 40px 10px;
  }
}

/* FOOTER */
.footer {
  background: #36191b;
  color: #dbaf52;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-left h3 {
  color: #dbaf52;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(219, 175, 82, 0.3);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

.footer-maps {
  width: 100%;
}

.footer-maps iframe {
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Popup genel */
.popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Popup içi */
.popup-content {
  background: #fff7c9;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 350px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  animation: popupAnim 0.4s ease;
}

@keyframes popupAnim {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
