/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1a73e8;
    color: #fff;
  }
  
  .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 1.5rem;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .nav-links a.active,
  .nav-links a:hover {
    border-bottom: 2px solid #fff;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .hamburger {
    width: 24px;
    height: 3px;
    background: #fff;
    display: block;
    position: relative;
  }
  
  .hamburger::before,
  .hamburger::after {
    content: '';
    width: 24px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
  }
  
  .hamburger::before {
    top: -8px;
  }
  
  .hamburger::after {
    top: 8px;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  /* Hero */
  .hero {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    color: #1a73e8;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #666;
  }
  
  /* Disclaimer */
  .disclaimer {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .disclaimer h2 {
    font-size: 1.5rem;
    color: #1a73e8;
    margin-bottom: 0.5rem;
  }
  
  .disclaimer p {
    font-size: 0.9rem;
    color: #666;
  }
  
  /* ASP Card */
  .asp-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .asp-info p {
    margin: 0.5rem 0;
  }
  
 /* RSVP Card */
  .rsvp-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
  }


  /* Table */
  .asp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .asp-table th,
  .asp-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
  .asp-table th {
    background: #1a73e8;
    color: #fff;
  }
  
  .asp-table tr:hover {
    background: #f9f9f9;
  }
  
  /* Resource List */
  .resource-list {
    list-style: none;
    margin: 1rem 0;
  }
  
  .resource-list li {
    margin: 0.5rem 0;
  }
  
  .resource-list a {
    color: #1a73e8;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .resource-list a:hover {
    text-decoration: underline;
  }
  
  .resource-list svg {
    margin-left: 0.5rem;
  }
  
  /* Terms Section */
  .terms {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .terms h2 {
    font-size: 1.8rem;
    color: #1a73e8;
    margin-bottom: 1rem;
  }
  
  .terms h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem;
  }
  
  .terms p,
  .terms ul {
    margin-bottom: 1rem;
  }
  
  .terms ul {
    list-style: disc;
    margin-left: 2rem;
  }
  
  /* About Section */
  .about {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .about h2 {
    font-size: 1.5rem;
    color: #1a73e8;
    margin-bottom: 0.5rem;
  }
  
  .about p {
    margin-bottom: 1rem;
  }
  
  .support {
    text-align: center;
    margin-top: 1rem;
  }
  
  .btn-support {
    background: #f5a623;
    color: #fff;
    border: none;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    margin: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
  }
  
  .btn-primary {
    background: #1a73e8;
    color: #fff;
    border: 2px solid #1a73e8;
  }
  
  .btn-secondary {
    background: #fff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
  }
  
  .btn:hover {
    background: #1a73e8;
    color: #fff;
    border: 2px solid #1a73e8;
  }
  
  .share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .share-text {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .share-feedback {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a73e8;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  /* Ads Section */
  .ads-section {
    text-align: center;
    margin: 2rem 0;
  }
  
  .ads-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .ads-section small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
  }
  
  .adNotice {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.4;
  }
  
  .adNotice span {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .adNotice a {
    color: #1a73e8;
    text-decoration: none;
  }
  
  .adNotice a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 1rem;
    background: #eee;
    margin-top: 2rem;
  }
  
  .footer a {
    color: #1a73e8;
    text-decoration: none;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background: #1a73e8;
      padding: 1rem;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 0.5rem 0;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .asp-table {
      font-size: 0.9rem;
      display: block;
      overflow-x: auto;
    }
  
    .asp-table th,
    .asp-table td {
      padding: 0.75rem;
    }
  
    .adNotice {
      max-width: 100%;
      padding: 0.75rem;
    }
  
    .btn {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
  }
  
  /* Accessibility */
  :focus {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

/* --- Reservation Status Badges --- */
.res-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  color: white;
  margin-left: 6px;
}

.res-open {
  background-color: #28a745; /* green */
}

.res-upcoming {
  background-color: #f0ad4e; /* yellow/orange */
  color: #222;
}

.res-closed {
  background-color: #d9534f; /* red */
}

/* --- Progress Bar --- */
.progress-container {
  width: 100%;
  background: #e6e6e6;
  border-radius: 6px;
  height: 10px;
  margin-top: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #1a73e8;
  transition: width 0.5s ease;
}
