/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #3d6b4f;
  --green-dark: #2c5039;
  --green-light: #4a7d5e;
  --text: #333;
  --text-light: #666;
  --bg: #ffffff;
  --bg-warm: #f5f0eb;
  --bg-beige: #e8e0d6;
  --white: #ffffff;
  --red: #c0392b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}

.btn-green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
}

/* Announcement Banner */
.announcement-bar {
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  padding: 10px 0;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.announcement-bar p {
  margin: 0;
  text-align: center;
}

.announcement-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.announcement-close:hover {
  opacity: 1;
}

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-buttons {
  display: flex;
  gap: 8px;
}

.main-nav {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px 12px;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.main-nav a:hover {
  border-bottom-color: var(--green);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 99;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-card {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 32px 48px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 10;
}

.hero-card h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.hero-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Quick Actions */
.quick-actions {
  padding: 80px 0 50px;
  background: var(--white);
}

.actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  color: var(--green);
  transition: all 0.2s;
}

.action-item:hover {
  transform: translateY(-2px);
}

.action-item:hover .action-icon {
  color: var(--green-light);
}

.action-icon {
  color: var(--green);
}

.action-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.action-divider {
  width: 1px;
  height: 60px;
  background: #ddd;
}

/* About */
.about {
  padding: 60px 0 80px;
  background: var(--bg-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Amenities */
.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.amenity svg {
  color: var(--green);
  flex-shrink: 0;
}

/* Emergency Banner */
.emergency {
  padding: 20px 0;
  background: #fdf2f0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.emergency-icon {
  color: var(--red);
  flex-shrink: 0;
}

.emergency-text {
  font-size: 0.9rem;
}

.emergency-text strong {
  color: var(--red);
  margin-right: 8px;
}

.emergency-text a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}

/* Documents */
.documents {
  padding: 60px 0;
  background: var(--white);
}

.documents h2,
.faq h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 6px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.doc-card {
  background: var(--bg-warm);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}

.doc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.doc-icon {
  color: var(--green);
  margin-bottom: 12px;
}

.doc-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.doc-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* FAQ */
.faq {
  padding: 60px 0;
  background: var(--bg-warm);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-item summary {
  padding: 18px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item a {
  color: var(--green);
  text-decoration: underline;
}

/* Contact */
.contact {
  padding: 60px 0;
  background: var(--bg-beige);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-address,
.contact-phone,
.contact-email {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-phone a,
.contact-email a {
  color: var(--green);
  transition: color 0.2s;
}

.contact-phone a:hover,
.contact-email a:hover {
  color: var(--green-light);
}

.office-hours {
  margin-top: 20px;
}

.office-hours p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.office-hours strong {
  color: var(--text);
}

.contact-map iframe {
  width: 100%;
  border-radius: 8px;
}

/* Footer */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.6);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-buttons, .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-img {
    height: 300px;
  }

  .hero-card {
    bottom: -30px;
    padding: 24px 20px;
  }

  .hero-card h1 {
    font-size: 1.6rem;
  }

  .quick-actions {
    padding: 60px 0 40px;
  }

  .actions-row {
    flex-direction: column;
    gap: 8px;
  }

  .action-item {
    padding: 16px 24px;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    justify-content: center;
  }

  .action-divider {
    width: 60px;
    height: 1px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .amenities {
    grid-template-columns: 1fr;
  }

  .emergency-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .docs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
}
