/* Import premium typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
  --primary-color: #2C2A29;     /* Deep charcoal */
  --text-muted: #7A7571;        /* Muted earth gray */
  --bg-color: #FAF8F5;          /* Warm ivory / fine champagne */
  --accent-gold: #D4C9B9;       /* Soft brushed gold */
  --accent-bg: #F3EFEA;         /* Light tint for highlight boxes */
  --card-shadow: 0 10px 24px rgba(44, 42, 41, 0.03);
}

body {
  font-family: 'Cormorant Garamond', serif;
  /* Reduced base size to mimic the crisp 80% zoom effect */
  font-size: 1.05rem;
  max-width: 620px; /* Slimmer container width for tight, elegant layout */
  margin: 0 auto;
  padding: 40px 20px; /* Slightly tighter top/bottom padding */
  line-height: 1.7;
  color: var(--primary-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
}

/* Language Switcher */
.lang-switch {
  text-align: center;
  margin-bottom: 40px; /* Decreased spacing */
}

.lang-switch a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.75rem; /* Slightly smaller text */
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 14px;
  transition: color 0.3s ease;
}

.lang-switch a:hover {
  color: var(--primary-color);
}

.hero {
  text-align: center;
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}

/* The Monogram Background */
.hero::before {
  content: "M & A";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  color: rgba(212, 201, 185, 0.15); /* Super faint gold crest */
  letter-spacing: 10px;
  z-index: 0;
  pointer-events: none;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-subtitle {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-text {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  max-width: 420px;
  margin: 0 auto;
  color: #4A4643;
}

/* Section Headings */
h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; /* Scaled down from 1.3rem */
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-top: 55px; /* Tighter margins */
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Subheadings for maps/details */
h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; /* Scaled down */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

/* Paragraph spacing */
p {
  margin-bottom: 18px;
  text-align: center;
}

/* Fading Dividers */
.divider, hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  margin: 45px auto; /* Tighter vertical break gap */
  width: 50%;
}

/* Centered Lists */
ul {
  padding-left: 0;
  list-style: none;
  text-align: center;
  margin: 15px auto 30px;
}

li {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

/* Highlight Box */
.highlight-box {
  background-color: var(--accent-bg);
  padding: 18px; /* Slightly tighter interior padding */
  border-radius: 10px;
  text-align: center;
  margin: 24px 0;
  border: 1px solid rgba(212, 201, 185, 0.25);
}

/* Maps Cards - Slightly shallower to fit the compact look */
iframe {
  margin-top: 10px;
  height: 260px; /* Reduced map height to match the compact frame look */
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

iframe:hover {
  transform: translateY(-2px);
}



@media (max-width: 600px) {
  body {
    font-size: 1.15rem;    /* 🌟 Generous size on phones so no one has to zoom in manually */
    padding: 24px 16px;
  }

  .hero-title {
    font-size: 2.5rem;    /* 🌟 Adjusted for mobile screens */
  }

  .hero-text {
    font-size: 1.15rem;   /* 🌟 Balanced font size for mobile text blocks */
  }

  h2 {
    font-size: 1.1rem;    /* 🌟 Up from 1rem */
  }

  .attraction-card h3 {
    font-size: 1.1rem;    /* 🌟 Keeps the card headers clear and legible */
  }
}
