@charset "utf-8";
    body {
      margin: 0;
      background-color: #DFE1DC;
    }

    /* Navigation */
    nav {
      background-color: #1a1a1a;
      border-bottom: 1px solid #0B7C61;
      text-align: center;
      padding: 6px 0;
      font-family: "Urbanist", sans-serif;
    }

    nav a {
      color: #DFE1DC;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1px;
      font-weight: 600;
      display: inline-block;
      padding: 10px 20px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    nav a:hover {
      background-color: #EAAF0F;
      color: #000000;
    }

    /* Container */
    .topcontent {
      background-color: #0B7C61;
      padding: 0px 20px;
      text-align: center;
    }

    .content-inner {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 0px;
      background: linear-gradient(to bottom, #DFE1DC 0%, #E5E5E0 100%);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      background-color: #DFE1DC;
    }

.logo {
  margin: 20px auto;
  text-align: center;
  max-width: 120px; /* ← this is the hero */
  width: 100%;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

img[src*="NSU-logo"] {
  max-width: 120px !important;
  width: 100% !important;
  height: auto !important;
}


    /* Event Title */
    .event-title-inline {
      font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
      font-size: 1.7rem;
      color: #0B7C61;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      text-align: center;
    }

    .event-subtext {
      font-size: 0.9em;
      font-weight: 400;
      font-style: italic;
      text-transform: none;
      letter-spacing: 0;
    }

    .hr {
      width: 60px;
      height: 2px;
      background-color: #0B7C61;
      margin: 50px auto 40px auto;
      border: none;
    }

    /* Accommodations Label */
    .page-label {
      font-family: "Andada Pro", serif;
      font-size: 1.9rem;
      font-weight: 600;
      color: #0B7C61;
      text-align: center;
      margin-top: 25px;
      margin-bottom: 25px;
      letter-spacing: 1px;
    }

    /* Section Subheadings */
    .section-subheading {
      font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #000;
      text-align: center;
      margin: 30px 0 10px;
    }

    /* Listing Info */
    .listing-info {
      font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
      font-size: 1.1rem;
      color: #000;
      text-align: center;
      margin-bottom: 25px;
    }

    /* Note below hotel link */
.hotel-note {
  font-size: 1.1rem;
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
  line-height: 20px;
}

    /* Links */
    a {
      font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
      font-size: 1.1rem;
      color: #0B7C61;
      text-align: center;
      display: block;
      margin: 8px auto;
  text-decoration: underline;
  transition: color 0.3s ease;
    }

    a:hover {
      color: #EAAF0F;
      text-decoration: underline;
    }

    /* Hero */
    .hero {
      background-color: #0B7C61;
      text-align: center;
      margin: 0;
      line-height: 0;
    }

    .hero img {
      width: 90%;
      max-width: 800px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    /* Footer */
    .site-footer {
      background-color: #1a1a1a;
      color: #DFE1DC;
      padding: 20px 10px;
      text-align: center;
      font-family: "Urbanist", sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      border-top: 1px solid #0B7C61;
    }

    .footer-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .topcontent {
        padding: 30px 16px;
      }

      nav a {
        display: block;
        margin: 5px 0;
        padding: 10px 0;
      }

      .hero img {
        width: 99%;
      }
    }

