/* ============================================
   Mars Hill Country Club - Main Stylesheet
   ============================================ */

:root {
  --green-dark: #1a3c1a;
  --green-mid: #2d5a2d;
  --green-light: #4a8c4a;
  --green-pale: #e8f5e8;
  --gold: #c8a94e;
  --gold-light: #f0e6c0;
  --cream: #faf9f6;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #6a6a6a;
  --border: #ddd;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--cream);
}

a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  padding: 7px 0;
  letter-spacing: 0.3px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ---- Header ---- */
header {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
  gap: 30px;
}

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

a.logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 6px 0;
  flex-shrink: 0;
  flex-grow: 0;
  width: auto !important;
  max-width: fit-content;
  text-decoration: none;
}

a.logo img {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

a.logo .logo-name {
  font-family: 'Georgia', serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  display: inline;
}

/* ---- Navigation ---- */

nav ul {
  list-style: none;
  display: flex;
  align-items: stretch;
}

nav > ul > li {
  position: relative;
}

nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 18px 12px;
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

nav > ul > li > a:hover {
  color: var(--green-dark);
  border-bottom-color: var(--gold);
}

nav > ul > li.active > a {
  color: var(--green-dark);
  border-bottom-color: var(--green-mid);
}

/* Dropdown */
nav .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  padding: 6px 0;
  border: 1px solid rgba(0,0,0,0.06);
  flex-direction: column;
}

nav > ul > li:hover .dropdown {
  display: flex;
}

nav > ul > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

nav .dropdown a {
  display: block;
  padding: 9px 18px;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.15s ease;
}

nav .dropdown a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  padding-left: 22px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--green-pale);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 40px 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}

.hero-overlay h2 {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-cta {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-gold:hover {
  background: #b89a3e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ---- Announcements Section ---- */
.announcements {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: 30px 40px;
  margin: 30px 0;
  border-radius: 12px;
}

.announcements h3 {
  font-family: 'Georgia', serif;
  color: var(--green-dark);
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement-item {
  background: var(--white);
  padding: 20px 24px;
  margin-bottom: 15px;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-left: 3px solid var(--green-light);
}

.announcement-item:last-child {
  margin-bottom: 0;
}

.announcement-item .date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.announcement-item h4 {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.announcement-item p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.announcement-item.pinned {
  border-left-color: var(--gold);
}

.announcement-item.pinned .date::after {
  content: " \2022  Pinned";
  color: var(--gold);
  font-weight: 600;
}

/* ---- Section Styles ---- */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--green-dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.section-dark .section-header h2 {
  color: var(--gold);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ---- Page Header / Banner ---- */
.page-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-banner h2 {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ---- Info Cards / Grid ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-family: 'Georgia', serif;
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ---- Amenities Grid ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.amenity-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.amenity-item span {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding-top: 8px;
}

/* ---- Rates Table ---- */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rates-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rates-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table tr:hover td {
  background: var(--green-pale);
}

.rates-table .price {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.1rem;
}

/* ---- Scorecard Table ---- */
.scorecard-wrapper {
  overflow-x: auto;
  margin: 20px 0;
}

.scorecard {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.85rem;
  min-width: 700px;
}

.scorecard th, .scorecard td {
  padding: 10px 8px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.scorecard th {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 600;
}

.scorecard .hole-label {
  text-align: left;
  font-weight: 600;
  min-width: 100px;
}

.scorecard .par-row {
  background: var(--green-pale);
  font-weight: 700;
}

.scorecard .blue-row { background: #e8f0fe; }
.scorecard .white-row { background: #f8f8f8; }
.scorecard .red-row { background: #fde8e8; }
.scorecard .hdcp-row { background: #f5f5f5; font-style: italic; }
.scorecard .total-col { font-weight: 700; background: rgba(0,0,0,0.03); }

/* ---- Course Tour ---- */
.hole-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hole-card:nth-child(even) {
  direction: rtl;
}

.hole-card:nth-child(even) > * {
  direction: ltr;
}

.hole-card.text-only {
  grid-template-columns: 1fr;
}

.hole-info h3 {
  font-family: 'Georgia', serif;
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.hole-info .hole-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.hole-info .hole-stats span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 20px;
}

.hole-info p {
  color: var(--text-mid);
  line-height: 1.7;
}

.hole-card img {
  border-radius: var(--radius);
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Nine heading */
.nine-heading {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin: 50px 0 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--gold);
}

/* ---- Facilities Gallery ---- */
.facility-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #eee;
}

.facility-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.facility-section:nth-child(even) {
  direction: rtl;
}

.facility-section:nth-child(even) > * {
  direction: ltr;
}

.facility-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.facility-images.single {
  grid-template-columns: 1fr;
}

.facility-images img {
  border-radius: var(--radius);
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.facility-text h3 {
  font-family: 'Georgia', serif;
  color: var(--green-dark);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.facility-text p {
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* ---- PayPal Section ---- */
.paypal-section {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.paypal-section h3 {
  font-family: 'Georgia', serif;
  color: var(--green-dark);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.paypal-section label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 5px;
  margin-top: 12px;
}

.paypal-section select,
.paypal-section input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.paypal-section select:focus,
.paypal-section input[type="text"]:focus {
  outline: none;
  border-color: var(--green-mid);
}

.paypal-section .paypal-btn {
  margin-top: 15px;
}

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

/* ---- Download Buttons ---- */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-dark);
  color: var(--white);
  padding: 18px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  min-width: 280px;
}

.download-btn:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.download-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.download-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.download-text strong {
  font-size: 0.95rem;
  line-height: 1.3;
}

.download-text small {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-item h4 {
  color: var(--green-dark);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-item p, .contact-info-item a {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ---- News / Events ---- */
.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  background: var(--white);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-light);
}

.news-item .date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.news-item h3 {
  font-family: 'Georgia', serif;
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.news-item p {
  color: var(--text-mid);
  margin-bottom: 8px;
}

.news-item ul {
  margin: 8px 0 8px 24px;
  color: var(--text-mid);
}

.news-item strong {
  color: var(--green-dark);
}

/* ---- Footer ---- */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---- Admin Styles ---- */
.admin-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.admin-form {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.admin-form h3 {
  margin-bottom: 20px;
  color: var(--green-dark);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: var(--text-mid);
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="password"],
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.admin-announcement {
  background: var(--white);
  padding: 20px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.admin-announcement .content {
  flex: 1;
}

.admin-announcement .actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.admin-announcement .actions form {
  display: inline;
}

.btn-danger, .btn-edit {
  display: inline-block;
  box-sizing: border-box;
  border: none;
  padding: 7px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  font-family: inherit;
}

.btn-danger {
  background: #a32114;
  color: white;
}

.btn-danger:hover {
  background: #7d180d;
}

.btn-edit {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-edit:hover {
  background: #b89a3e;
}

.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.login-box {
  max-width: 400px;
  margin: 100px auto;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.login-box h2 {
  font-family: 'Georgia', serif;
  color: var(--green-dark);
  margin-bottom: 20px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero { height: 350px; }
  .hero-overlay h2 { font-size: 1.8rem; }

  .hole-card,
  .facility-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hole-card:nth-child(even),
  .facility-section:nth-child(even) {
    direction: ltr;
  }

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

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .top-bar-right { display: none; }

  .menu-toggle { display: block; }

  nav > ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 99;
    border-top: 1px solid #eee;
  }

  nav > ul.show { display: flex; }

  nav > ul > li > a {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    border-left: 3px solid transparent;
    border-bottom-width: 0;
  }

  nav > ul > li > a:hover,
  nav > ul > li.active > a {
    border-left-color: var(--gold);
    border-bottom-color: transparent;
    background: var(--green-pale);
  }

  nav .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column;
    box-shadow: none;
    background: #f7f9f7;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
  }

  nav .dropdown a {
    padding-left: 36px;
    font-size: 0.8rem;
    border-bottom: 1px solid #eee;
  }

  nav > ul > li > a {
    pointer-events: auto;
  }

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

  .hero { height: 280px; }
  .hero-overlay h2 { font-size: 1.4rem; }
  .hero-overlay p { font-size: 0.9rem; }
}

/* Calendar Embed */
.calendar-embed {
  max-width: 100%;
  overflow: hidden;
}

.calendar-embed iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: var(--radius);
}
