* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Merriweather', serif;
  color: #4a4a4a;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

#map {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: brightness(0.8) contrast(1.05) saturate(0.9) hue-rotate(5deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #a855f7;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a855f7;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-book-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(168, 85, 247, 0.25);
  margin-left: 1rem;
}

.nav-book-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35);
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: #ffffff !important;
}

.nav-book-button::after {
  display: none;
}

.content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 6rem 1rem 2rem 1rem;
}

.content-wrapper.scrollable {
  display: block;
  padding: 6rem 1rem 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 700px;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  animation: fadeIn 1.2s ease-out;
  position: relative;
}

.content-wrapper.scrollable .container {
  text-align: left;
  width: 100%;
  max-width: none;
  margin-bottom: 2rem;
}

.container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(14, 116, 144, 0.15));
  border-radius: 22px;
  z-index: -1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section {
  text-align: center;
  padding: 0 0 2rem 0;
  margin-bottom: 2rem;
}

.hero-image {
  margin-bottom: 2rem;
}

.emily-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(168, 85, 247, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.emily-photo:hover {
  transform: scale(1.02);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #334155;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2rem;
  font-weight: 300;
  font-style: italic;
}

.content-section {
  margin-bottom: 2rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #334155;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  color: #475569;
  font-weight: 300;
}

.highlight {
  background: linear-gradient(120deg, rgba(168, 85, 247, 0.15) 0%, transparent 100%);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-weight: 400;
  color: #9333ea;
}

.services {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 16px;
  border-left: 4px solid #a855f7;
  backdrop-filter: blur(10px);
}

.services h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #334155;
  margin-bottom: 1rem;
  font-weight: 500;
}

.services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #475569;
  position: relative;
  padding-left: 1.5rem;
}

.services li:before {
  content: "•";
  color: #a855f7;
  font-weight: bold;
  position: absolute;
  left: 0;
}

a.button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
  position: relative;
  overflow: hidden;
}

a.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 85, 247, 0.35);
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

a.button:active {
  transform: translateY(0);
}

.back-button {
  display: inline-block;
  margin: 2rem 0;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(14, 116, 144, 0.25);
}

.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(14, 116, 144, 0.35);
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.contact-info {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(10px);
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #64748b;
}

.location-highlight {
  background: linear-gradient(120deg, rgba(14, 116, 144, 0.15) 0%, transparent 100%);
  padding: 0.3em 0.6em;
  border-radius: 6px;
  font-weight: 500;
  color: #0e7490;
}

.timeline-item {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(248, 250, 252, 0.6);
  border-radius: 16px;
  border-left: 4px solid #a855f7;
  backdrop-filter: blur(10px);
}

.timeline-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #334155;
  margin-bottom: 1rem;
  font-weight: 500;
}

footer {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding-top: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 8rem 0.5rem 1rem 0.5rem;
  }
  
  .content-wrapper.scrollable {
    padding: 8rem 0.5rem 1rem 0.5rem;
  }
  
  .container {
    padding: 2rem 1.5rem;
    margin: 0;
  }
  
  .hero-section,
  .content-section {
    padding: 1rem 0;
  }
  
  .emily-photo {
    width: 150px;
    height: 150px;
  }
  
  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-image {
    height: 180px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .nav-links {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-book-button {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.gallery-section {
  margin: 3rem 0;
  text-align: center;
}

.gallery-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #334155;
  margin-bottom: 2rem;
  font-weight: 500;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.2);
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
} 