body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */
header {
  background-color: #222;
  padding: 25px 5%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-title {
  font-size: 1.8rem;
  margin: 0;
}

.site-title a {
  color: #ffcc70;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff4081;
}

/* FOOTER */
footer {
  background-color: #222;
  color: #fff;
  padding: 35px 5%;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
  margin-top: 60px;
  font-size: 1.1rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff4081;
}

/* Background */
.dark-gradient {
  background: linear-gradient(to bottom, #121212, #2a2a2a);
  color: white;
}

/* Homepage Alternating Layout */
.alternating-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 5%;
}

.city-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.city-block.reverse {
  flex-direction: row-reverse;
}

.image-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 300px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.city-text {
  flex: 1;
  color: white;
  padding: 20px;
}

.city-text h2 {
  font-size: 2rem;
  color: #ffcc70;
  margin-bottom: 10px;
}

.city-text p {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #ddd;
}

/* City Page */
.city-page {
  padding: 40px 5%;
}

.city-banner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  display: block;
}

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

.grid-card {
  background-color: #1f1f1f;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #ff4081;
}

.grid-card h2 {
  font-size: 1.5rem;
  color: #ffcc70;
  margin-bottom: 10px;
}

.grid-card p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Did You Know Box */
.city-fact {
  background-color: #1f1f1f;
  border-left: 5px solid #ff4081;
  padding: 20px;
  border-radius: 5px;
  margin-top: 50px;
}

.city-fact h3 {
  margin-top: 0;
  color: #ff4081;
}

.city-fact p {
  font-size: 1.1rem;
  color: #eee;
}

/* Fees Page */
.fees-page {
  padding: 40px 5%;
}

.fees-page h1 {
  text-align: center;
  color: #ffcc70;
  margin-bottom: 30px;
  font-size: 2rem;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  text-align: center;
}

.fees-header {
  font-weight: bold;
  background-color: #ff4081;
  color: white;
  padding: 15px;
  border-radius: 8px;
}

.fees-item {
  background-color: #1f1f1f;
  color: #ccc;
  padding: 15px;
  border-radius: 8px;
  font-size: 1rem;
}

/* Picture Page */
.picture-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 5%;
}

.picture-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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