@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&family=Great+Vibes&display=swap");

/* Color Palette:
- Off-white background: #FDFDF8
- Dark olive/charcoal text: #3d423a
*/

body {
  font-family: "Lora", serif;
  margin: 0;
  background-color: #fdfdf8;
  color: #3d423a;
  line-height: 1.8;
}

h1,
h2,
h3 {
  font-weight: 700;
}

.script-font {
  font-family: "Great Vibes", cursive;
  font-weight: normal;
}

/* Hero Section */
.hero-section {
  background-image:
    linear-gradient(rgba(253, 253, 248, 0.7), rgba(253, 253, 248, 0.9)),
    /* url("https://images.unsplash.com/photo-1518621736915-f3b1c41bfd00?q=80&w=2560&auto=format&fit=crop"); */
      url("./images/_OLA7578.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #3d423a;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero-content .script-font {
  font-size: 3rem;
  margin: 0 10px;
}

.hero-content p {
  font-size: 1rem;
  margin: 0px 0;
}

.hero-content .villages {
  font-size: 0.8rem;
  margin: 0px 0;
}

.hero-content .date {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.hero-content .hashtag {
  font-family: monospace;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* General Section Styling */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: "Great Vibes", cursive;
}

/* Story Section */
.story-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}
.story-text {
  flex: 2;
  min-width: 300px;
}
.story-bios {
  flex: 1;
  min-width: 250px;
  background-color: rgba(61, 66, 58, 0.05);
  padding: 20px;
  border-left: 3px solid #3d423a;
}

/* Details Section */
.details-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.detail-box {
  padding: 20px 40px;
  border: 1px solid rgba(61, 66, 58, 0.2);
  border-radius: 8px;
}
.detail-box h3 {
  margin-top: 0;
}

.virtual-invite {
  margin-top: 15px;
  font-size: 0.85em;
  color: #666;
  line-height: 1.5;
}

.zoom-link {
  display: inline-block;
  margin-top: 10px;
}

.zoom-icon {
  width: 40px;
  height: auto;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out;
}

.zoom-icon:hover {
  transform: scale(1.1);
}

.add-to-calendar-button {
  display: inline-block;
  background-color: #4285f4; /* Google blue */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 20px; /* Space above the button */
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.add-to-calendar-button:hover {
  background-color: #357ae8; /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.map-container .note {
  font-size: 0.8rem;
  margin-top: 10px;
  color: #777;
}

.button-link {
  display: inline-block;
  /* background-color: #007bff; */
  background-color: #3d423a;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.button-link:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

/* Menu Section */
.menu-section {
  background-color: rgba(61, 66, 58, 0.03);
}
.menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
}

.menu-items span {
  font-family: "Great Vibes", cursive;
  font-weight: normal;
  color: #3d423a; /* Accent color */
}

/* Gallery Section */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.photo-gallery img:hover {
  transform: scale(1.05);
}

/* Travel section */

.travel-section {
  padding: 60px 20px;
  background-color: #fdfdf8;
  text-align: center;
}

.travel-options-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

.travel-category {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 40px;
  text-align: left;
  border: 1px solid #d0e9ff;
}

.travel-category h3 {
  color: #3d423a;
  font-size: 1.5em;
  margin-bottom: 30px;
  border-bottom: 3px solid #007bff;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.travel-mode {
  margin-bottom: 40px;
}

.travel-mode h4 {
  font-size: 1.6em;
  color: #333;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}

.travel-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.travel-card {
  background-color: #f0f8ff;
  border: 1px solid #cce0ff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.travel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}

.travel-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #aaddff;
}

.travel-icon {
  font-size: 2.2em;
  line-height: 1;
}

.travel-route {
  font-weight: bold;
  color: #1a1a1a;
  font-size: 1.25em;
  margin: 0;
  text-decoration: none;
}

.travel-company {
  font-style: normal;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
  text-decoration: none;
}

.travel-price {
  font-weight: bold;
  color: #e63946;
  font-size: 1.4em;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed #aaddff;
  text-decoration: none;
}

.travel-note {
  font-size: 0.95em;
  color: #777;
  margin-top: 8px;
  text-decoration: none;
}

.hotel-options {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 40px;
  text-align: left;
  border: 1px solid #d0e9ff;
}

.hotel-options h3 {
  color: #0056b3;
  font-size: 1.5em;
  margin-bottom: 20px;
  border-bottom: 3px solid #007bff;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hotel-options p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.hotel-options a {
  color: #3d423a;
  text-decoration: none;
  font-weight: bold;
}

.hotel-options a:hover {
  text-decoration: underline;
}

.back-to-home {
  text-align: left;
  padding: 20px;
  background-color: #f0f8ff; /* Light background matching travel section */
  border-bottom: 1px solid #cce0ff;
}

.back-to-home a {
  display: inline-flex; /* Allows icon and text to align */
  align-items: center;
  gap: 8px; /* Space between arrow and text */
  text-decoration: none;
  color: #007bff; /* Blue color for the link */
  font-weight: bold;
  font-size: 1.1em;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.back-to-home a:hover {
  color: #0056b3; /* Darker blue on hover */
  transform: translateX(-5px); /* Slight slide effect to the left */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .travel-category {
    padding: 30px;
  }
  .travel-category h3 {
    font-size: 1.8em;
  }
  .travel-mode h4 {
    font-size: 1.4em;
  }
  .travel-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #3d423a;
  color: #fdfdf8;
  font-family: monospace;
}
