* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  color: #333;
  background-color: #fff7e6 !important;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif !important;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #D9CAAD;
  color: white;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  max-height: 86px;
  height: auto;
  width: auto;
}

.desktop-nav {
  display: flex;
  gap: 20px;
}

.desktop-nav a {
  color: #595347;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: #f1c40f;
}

.hamburger {
  font-size: 1.8em;
  cursor: pointer;
  display: none;
}

/* Mobile Side Menu */
#sideMenu {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: #D9CAAD;
  color: #595347;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1100;
}

#sideMenu a {
  margin-top: 8px;
  padding: 12px 20px;
  display: block;
  color: #595347;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
}

#sideMenu a:hover {
  background: #DFBA70;
  color: #595347;
}

.closeBtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
}

.hero {
  background: url('assets/carousel/10.JPG') no-repeat center/cover;
  height: 90vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 100px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

.cta {
  background: #f1c40f;
  color: black;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta:hover {
  background: #ffdd59;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section:nth-child(even) {
  background: #f9f9f9;
}

.section h2 {
  color: #595347;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Gallery */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.image-gallery img {
  width: calc(50% - 15px);
  max-width: 300px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

/* Contact Section */
#contact p {
  margin: 10px 0;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #D9CAAD;
  color: #595347;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .image-gallery img {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

.custom-select {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  user-select: none;
}

.select-selected {
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.select-selected:hover {
  box-shadow: 0 3px 8px rgba(0,0,0,0.30);
}

.select-items {
  position: absolute;
  top: 60px;
  color: #333;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ccc;
  z-index: 99;
  display: none;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.select-items div {
  padding: 8px 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.select-items div:hover {
  background-color: #f1f1f1;
}

.select-items.show {
  display: block;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #8E7C5B;      /* arrow color */
  border-radius: 50%;           /* circular shape */
  width: 50px;                  /* arrow size */
  height: 50px;
  opacity: 0.8;                 /* slightly transparent */
  transition: all 0.3s ease;    /* smooth hover transition */
  box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* subtle shadow */

}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  opacity: 1;              /* full opacity on hover */
}


#gallery {
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  margin: 30px;
  background-color: #fff7e6;
  padding: 40px 20px;
}

#gallery .carousel-inner img {
  max-height: 500px;
  object-fit: contain;
}

.carousel-wrapper {
  width: 95%;
  min-height: 500px;
  max-height: 500px;
  max-width: 1000px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .carousel-wrapper {
    width: 100%;
  }
}

/* Promo Cards Styles */
.promo-section {
  padding: 60px 20px;
  background-color: #fff7e6;
}

.promo-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #595347;
  font-size: 2.2rem;
}

.promo-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.promo-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  width: 350px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.promo-card-header {
  background: linear-gradient(135deg, #D9CAAD, #8E7C5B);
  color: white;
  padding: 25px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

.promo-card-content {
  padding: 25px;
}

.promo-card-content p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.promo-read-more-btn {
  display: inline-block;
  background: #D9CAAD;
  color: #595347;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.promo-read-more-btn:hover {
  background: #c5b595;
}

/* Expanded State */
.promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 40px;
}

.promo-expanded-content {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.promo-expanded-content h2 {
  color: #595347;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.promo-expanded-content p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

.promo-close-btn {
  position: absolute;
  top: 3px;
  right: 3px;
  background: #8E7C5B;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.promo-close-btn:hover {
  background: #726449;
}

/* Video stilleri */
/* Video konteyneri - Tüm videoyu gösterecek şekilde güncellendi */
.video-container {
  position: relative;
  margin: 25px 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  max-height: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Video elementinin kendisi için - Tüm video görünsün */
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain !important; /* Tüm videoyu göster, kenarlarda boşluk bırakabilir */
}


.video-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: #f0f0f0;
  border-radius: 8px;
  flex-direction: column;
}

.video-loading i {
  font-size: 48px;
  color: #8E7C5B;
  margin-bottom: 15px;
}

video {
  border-radius: 8px;
}

/* Video yer tutucusu - GÜNCELLENMİŞ */
.video-placeholder {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin: 20px 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-image: url('assets/carousel/17.jpg');
  background-size: cover;
  background-position: center;
}

.video-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-placeholder:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 0;
}

.video-placeholder i {
  font-size: 60px;
  color: #fff;
  z-index: 1;
  transition: transform 0.3s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-placeholder:hover i {
  transform: scale(1.1);
}

.video-play-text {
  margin-top: 15px;
  font-weight: bold;
  color: #fff;
  z-index: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* Responsive ayarlar */
/* @media (max-width: 900px) {
  .video-container {
    height: 450px;
    max-height: 450px;
  }
  
  .promo-expanded-content {
    padding: 35px;
    max-height: 88vh;
  }
  
  .video-placeholder {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .promo-cards-container {
    flex-direction: column;
    align-items: center;
  }
  
  .promo-card {
    width: 90%;
    max-width: 350px;
  }
  
  .promo-expanded-content {
    padding: 30px;
    max-height: 85vh;
  }
  
  .video-container {
    height: 400px;
    max-height: 400px;
  }
  
  .video-placeholder {
    height: 200px;
  }
  
  .video-placeholder i {
    font-size: 50px;
  }
  
  .video-play-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .video-container {
    height: 350px;
    max-height: 350px;
  }
  
  .promo-expanded-content {
    padding: 25px;
    max-width: 95%;
  }
  
  .video-placeholder {
    height: 180px;
  }
  
  .video-placeholder i {
    font-size: 45px;
  }
  
  .video-play-text {
    font-size: 1rem;
  }
} */

/* Mobile-specific popup and video adjustments */
@media (max-width: 768px) {

  /* Popup overlay adjustments */
  .promo-overlay {
    padding: 15px;
  }

  /* Expanded popup content */
  .promo-expanded-content {
    max-width: 95%;
    max-height: 90vh;
    padding: 15px;
    overflow-y: auto;
  }

  /* Popup headers and text */
  .promo-expanded-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .promo-expanded-content p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Buttons smaller */
  .promo-read-more-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  /* Video container and placeholder */
  .video-container {
    max-height: 600px;
    height: 100%;
  }

  .video-placeholder {
    height: 150px;
  }

  .video-placeholder i {
    font-size: 35px;
  }

  .video-play-text {
    font-size: 0.95rem;
  }
}


/* Mobile-specific carousel height */
@media (max-width: 768px) {
  .carousel-wrapper {
    max-height: 300px; /* fixed max height for mobile */
    overflow: hidden;  /* hide overflow if images are taller */
    display: flex;
  }

  .carousel-inner,
  .carousel-item {
    height: 100%; /* ensure items take full wrapper height */
  }

  .carousel-img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* fits entire image inside area */
    background-color: #000; /* optional, fills gaps if image doesn't match aspect ratio */
  }
  
  

  /* Optional: smaller carousel controls */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 25px;
    height: 25px;
  }
}