/* ===== ADDITIONAL STYLES FOR SPECIFIC PAGES ===== */

/* Hero alanı */
.hero {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(16, 135, 95, 0.09);
  text-align: center;
}

/* Başlık ve paragraflar */
h1, h2, h3 {
  text-align: center;
}

/* Galeri ve Kartlar */
.viyana-foto-galeri,
.viyana-foto-galeri2,
.viyana-foto-galeri3,
.viyana-butun-foto-galeri {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 10px;
  margin-top: 10px;
}

.viyana-foto-galeri a img,
.viyana-foto-galeri2 a img,
.viyana-foto-galeri3 a img,
.viyana-butun-foto-galeri a img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.viyana-foto-galeri a img:hover,
.viyana-foto-galeri2 a img:hover,
.viyana-foto-galeri3 a img:hover,
.viyana-butun-foto-galeri a img:hover {
  transform: scale(2.5);
}

h3 i {
  color: #6a1b9a;
  margin-right: 8px;
  font-size: 20px;
  vertical-align: middle;
}

.card-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.card-link {
  text-decoration: none;
}

.card {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card:hover {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(224, 43, 140, 0.8);
  color: white;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .overlay {
  opacity: 1;
}

/* Showcase ve arkaplan */
#showcase, #anasayfa-arkaplan {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  padding: 5px;
  display: flex;
  justify-content: center;
  color: black;
}

#showcase {
  background-image: url('https://res.cloudinary.com/dllpts1ha/image/upload/v1770235183/Sch%C3%B6nnbrunn_Saray%C4%B1-5_odzzl4.jpg');
  background-attachment: fixed;
}

#anasayfa-arkaplan {
  background-image: url('/images/anasayfa/portofino.jpg');
}

/* Responsive Menü */
@media (max-width: 900px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu > li {
    width: 100%;
  }
  .hero {
    padding: 22px;
    margin: 22px auto 0 auto;
  }
}

/* Footer */
footer {
  background: #10875f;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  border-radius: 0 0 12px 12px;
  margin-top: 30px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #1e90ff;
}

.hero-logo {
  text-align: center;
  padding: 20px;
  background: #e6f0ff;
}

.content {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.left {
  flex: 3;
  background: #f9f9f9;
  padding: 15px;
}

.right {
  flex: 1;
  background: #f1f1f1;
  padding: 15px;
}

.social a {
  margin-right: 10px;
  color: #333;
  text-decoration: none;
}

/* ===== PAGE SPECIFIC STYLES ===== */

/* Viyana Page Specific */
.ulke_baslik {
  font-size: 50px;
  color: black;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 30px 0;
}

.kalma_list {
  list-style-type: none;
  padding: 0;
}

.kalma_list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.kalma_list li:last-child {
  border-bottom: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .viyana-foto-galeri,
  .viyana-foto-galeri2,
  .viyana-foto-galeri3,
  .viyana-butun-foto-galeri {
    justify-content: center;
  }
  
  .viyana-foto-galeri a img,
  .viyana-foto-galeri2 a img,
  .viyana-foto-galeri3 a img,
  .viyana-butun-foto-galeri a img {
    width: 150px;
    height: 100px;
  }
  
  .ulke_baslik {
    font-size: 35px;
  }
  
  .content {
    flex-direction: column;
  }
  
  .left, .right {
    flex: none;
  }
}

@media (max-width: 480px) {
  .viyana-foto-galeri a img,
  .viyana-foto-galeri2 a img,
  .viyana-foto-galeri3 a img,
  .viyana-butun-foto-galeri a img {
    width: 120px;
    height: 80px;
  }
  
  .ulke_baslik {
    font-size: 28px;
  }
}

.page-content {
  padding: 60px 0;
}

.content-section {
  margin-bottom: 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #95d5db;
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-caption {
  padding: 20px;
  text-align: center;
}

.gallery-caption h3 {
  margin-bottom: 10px;
  color: #333;
}

.gallery-caption p {
  color: #666;
  line-height: 1.6;
}

.info-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.info-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.info-card-link:hover {
  opacity: 0.95;
}

.info-card h3 {
  color: #95d5db;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h3 i {
  font-size: 1.2em;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li i {
  color: #95d5db;
  width: 20px;
}

.highlight-box {
  background: linear-gradient(135deg, #95d5db, #7bc3c9);
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 40px 0;
}

.highlight-box h3 {
  color: #fff;
  margin-bottom: 15px;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .gallery-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .info-card {
      padding: 20px;
  }
  
  .highlight-box {
      padding: 20px;
  }
}