/* Reset and base styles */
body {
  margin: 0;
  font-family: 'Cormorant', serif;
  background-image: url('/assets/images/bouquet_flowers_background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.35);
  /* Adjust opacity */
  z-index: -1;
}

.content-container {
  background-color: rgba(255, 255, 255, 0.85);
  /* semi-transparent white */
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

h1 {
  font-family: 'Charmonman', cursive, sans-serif;
  font-size: 36px;
  color: #40567d;
}

/* Optionally, you can add other elements like h2, h3, etc. */
h2,
h3 {
  font-family: 'Charmonman', cursive, sans-serif;
  font-size: 32px;
  color: #40567d;
}

/* Navbar styling */
.navbar {
  font-family: 'Charmonman', cursive, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 2rem;
  background: radial-gradient(circle, #aecfe4, #336582);
  border-bottom: 2px solid #c39456;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 1.5rem;
  color: #40567d;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #c39456;
  transition: width 0.3s;
  margin: 0 auto;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  font-weight: bold;
}

.nav-rsvp {
  display: flex;
  gap: 0.5rem;
  font-size: 1.5rem;
}

.nav-rsvp a {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  color: #aac6f8;
  position: relative;
  padding: 0.5rem 0.5;
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  font-size: 1.5rem;
}

.lang-switcher a {
  text-decoration: none;
  transition: transform 0.1s ease;
}

.lang-switcher a:hover {
  transform: scale(1.1);
}

.lang-switcher a.active {
  font-weight: bold;
}

.home-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.home-image-container img {
  width: 100%;
  height: auto;
  max-height: 600px;
  /* Restrict max height */
  object-fit: cover;
}

/* Style for the big image (first one) */
.home-image-container .big-image {
  max-width: 100%;
}

/* Style for the container holding the side-by-side images */
.side-by-side-images {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Style for each side-by-side image */
.side-by-side-images img {
  height: 300px;
  /* Fixed height for side-by-side images */
  width: auto;
  /* Width will scale based on aspect ratio */
  object-fit: cover;
  /* Ensures aspect ratio is maintained without distortion */
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

ul li {
  margin-top: 20px;
  font-family: 'Cormorant', serif;
  font-size: 20px;
}

/* Style the questions */
ul li strong {
  font-weight: bold;
  color: #40567d;
}

/* Venue Page Layout */
.venue-container {
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.map-container {
  text-align: center;
  /* or match content max-width */
  margin: 0 auto 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  /* for rounded corners to apply to iframe */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.travel-info {
  margin: 2rem auto;
  padding: 0 1rem;
}

.travel-info p {
  font-size: 1.3rem;
}

.travel-card {
  background-color: #fdfaf6;
  border-left: 4px solid #5699c3;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.travel-card h2 {
  font-family: 'Charmonman', cursive, sans-serif;
  font-size: 1.4rem;
  color: #40567d;
}

.travel-card h3 {
  font-family: 'Charmonman', cursive, sans-serif;
  font-size: 1.5rem;
  color: #40567d;
}

.travel-card p {
  font-size: 1.3rem;
}