/* Locations Page Styles
-------------------------------------------------- */

/* Text Gradient Style */
.text-gradient {
  background: linear-gradient(to right, var(--primary-color), #ff9a8b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

/* Hero Section */
.locations-hero {
  padding: 180px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/locations-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.locations-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 90, 95, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.locations-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.locations-hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.locations-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.locations-update-note {
  font-size: 16px;
  font-style: italic;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Map Section */
.locations-map {
  padding: 80px 0;
  background-color: #fff;
}

.map-container {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#turkey-map {
  width: 100%;
  height: 100%;
}

/* City Stats Section */
.city-stats {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Simple City Grid */
.simple-city-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.simple-city-card {
  background: var(--gradient-primary);
  border-radius: 10px;
  padding: 30px 40px;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.simple-city-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.city-name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Coming Soon Section */
.coming-soon {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/coming-soon-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.coming-soon-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.coming-soon-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.soon-city {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.soon-city:hover {
  transform: translateY(-5px);
}

.soon-city-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.soon-city:hover .soon-city-icon {
  background: var(--gradient-primary);
}

.soon-city span {
  font-size: 16px;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .locations-hero {
    padding: 150px 0 80px;
  }
  
  .locations-hero-title {
    font-size: 36px;
  }
  
  .map-container {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .locations-hero-title {
    font-size: 30px;
  }
  
  .locations-hero-subtitle {
    font-size: 18px;
  }
  
  .map-container {
    height: 350px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .coming-soon-content h2 {
    font-size: 28px;
  }
  
  .coming-soon-content p {
    font-size: 16px;
  }
  
  .simple-city-card {
    padding: 25px 30px;
    min-width: 150px;
  }
  
  .city-name {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .locations-hero-title {
    font-size: 26px;
  }
  
  .map-container {
    height: 300px;
  }
  
  .simple-city-card {
    padding: 20px 25px;
    min-width: 130px;
  }
  
  .city-name {
    font-size: 18px;
  }
  
  .coming-soon-cities {
    gap: 15px;
  }
  
  .soon-city-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
} 