      /* Reset and base styles */
      * { box-sizing: border-box; margin: 0; padding: 0; }

      body {
		  font-family: "Inter", sans-serif;
		  font-optical-sizing: auto;
		  font-weight: 400;
		  font-style: normal;
          color: #14213d;
       	  background: #f8f9fa;
      }

      .inter-900 {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-style: normal;
        font-stretch: 100%;
        letter-spacing: -0.018000000000000002em;
      }
      .inter-900-italic {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-style: italic;
        font-stretch: 100%;
        letter-spacing: -0.018000000000000002em;
      }

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

      /* Header */
      header {
        width: 100%;
        background: #14213d;
		color: #fff;
        text-align: center;
        background-size: cover;
        background-position: center;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
      }

      .nav-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding:.375rem 0;
      }

      .nav-bar img.logo {
        height: 75px;
        padding:.025rem 0.375rem;
      }

      .nav-links {
        display: flex;
        gap: 1.5rem;
        font-weight: 600;
		margin-right: 1rem  
      }

      .nav-links a {
        padding: 0.5rem;
        border-radius: 4px;
        transition: background 0.2s;
      }

      .nav-links a:hover { background: rgba(20, 33, 61, 0.05); }

      /* Hero section */
      .hero {
        position: relative;
        width: 100%;
        height: 60vh;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        background: linear-gradient(
            rgba(20, 33, 61, 0.6),
            rgba(20, 33, 61, 0.8)
          ),
          url("https://cometchamber.com/assets/images/gl-air.webp");
        background-size: cover;
        background-position: center;
      }

      .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero .btn-group {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }

     /*  .btn {
        cursor: pointer;
        border: none;
        border-radius: 25px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        transition: all 0.2s;
      }

      .btn-primary { background: #fca311; color: #14213d; }
      .btn-primary:hover { background: #f9a000; }

      .btn-secondary {
        background: transparent;
        color: #fca311;
        border: 2px solid #fca311;
      }
      .btn-secondary:hover { background: #fca311; color: #14213d; }

      Award descriptions */
      .awards-section { padding: 4rem 1rem; background: #fff; }

      .awards-section h2 {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-style: normal;
        font-stretch: 100%;
        letter-spacing: -0.018000000000000002em;
        text-align: center;
        font-size: clamp(2.2rem,5.75vw, 4.5rem);
        margin-bottom: 3rem;
        color: #14213d;
      }

      .award-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (max-width: 600px) {
  .awards-section {
    padding: 2.5rem 1rem;
  }
}

      .award-card {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 1.5rem;
        border: 1px solid #e9ecef;
        position: relative;
        transition: transform 0.2s, box-shadow 0.2s;
      }

      .award-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      }

      .award-card h3 {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-style: normal;
        font-stretch: 100%;
        letter-spacing: -0.018000000000000002em;
        line-height: 1.6;
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        color: #14213d;
      }

      .award-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #4e5d6c;
		  margin:.5rem 0;
      }

      /* Nominate call-to-action */
      .cta-section {
        background: #14213d;
        color: #fff;
        text-align: center;
        padding: 3rem 1rem;
      }

      .cta-section h2 {
        font-family: "Inter", sans-serif;
        font-optical-sizing: auto;
        font-weight: 900;
        line-height: 1.6;
        font-size: 2rem;
        margin-bottom: 1rem;
      }

      .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      /* Off-canvas form panel */
      .custom-offcanvas {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
        padding: .85rem 2rem 2rem 2rem;
        overflow-y: auto;
        transition: right 0.4s ease;
        z-index: 2000;
      }

      .custom-offcanvas.open { right: 0; }

      .custom-offcanvas h2 {
        font-family: "Montserrat", Arial, sans-serif;
        line-height: 1.6;
        margin-bottom: 1rem;
        font-size: 1.5rem;
      }

      .custom-offcanvas form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .custom-offcanvas label { font-weight: 600; font-size: 0.9rem; }

      .custom-offcanvas input,
      .custom-offcanvas textarea,
      .custom-offcanvas select {
        padding: 0.5rem;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 0.95rem;
        width: 100%;
      }

      .custom-offcanvas textarea { resize: vertical; min-height: 100px; }

      .custom-offcanvas .form-actions {
        display: flex;
        justify-content: space-between;
        margin-top: 1rem;
        gap: .5rem;
      }

      .custom-offcanvas .form-actions .btn {
        flex: 1;
        margin-right: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .6rem;
      }

      .close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #6c757d;
      }

      /* Footer */
      footer {
        background: #343a40;
        color: #fff;
        padding: 2rem 1rem;
        text-align: center;
      }

      footer p { margin-bottom: 0.5rem; }
      footer small { color: #adb5bd; }

      .caption {
        color: #E4E4E4;
        font-size:11px;
        z-index: 999;
        margin-top: -30px;
        position: relative;
        text-align: right;
      }

      /* --- Submission UX (spinner + messages) --- */
      .submit-status {
        display: none;
        border: 1px solid rgba(20,33,61,.15);
        background: rgba(20,33,61,.04);
        border-radius: 8px;
        padding: .75rem .85rem;
        margin-top: .25rem;
      }
      .submit-status.show { display: block; }

      .submit-status.success {
        border-color: rgba(8,123,88,.35);
        background: rgba(8,123,88,.08);
      }

      .submit-status.success .success-text {
        color: #087B58;
        font-weight: 900;
        letter-spacing: -0.01em;
        font-size: 1.02rem;
      }

      .submit-status.error {
        border-color: rgba(220,53,69,.35);
        background: rgba(220,53,69,.06);
        color: #8a1f2c;
        font-weight: 700;
      }

      .spinner {
        width: 16px;
        height: 16px;
        border: 2px solid rgba(20,33,61,.25);
        border-top-color: rgba(20,33,61,1);
        border-radius: 50%;
        display: inline-block;
        animation: spin .7s linear infinite;
      }
      @keyframes spin { to { transform: rotate(360deg); } }

      .btn[disabled] { opacity: .75; cursor: not-allowed; }
		
		input, textarea, select {margin-bottom: 1.05em;}
		 label {display: block; 
			 font-family: "Inter", sans-serif;
		  font-optical-sizing: auto;
		  font-weight: 600;
		  font-style: normal;  
			 margin: 0 0 .375rem 0;}
		
		.nominator_details h4 {
			font-family: "Inter", sans-serif;
        font-weight: 900;
        font-style: normal;
        font-stretch: 100%;
        letter-spacing: -0.018000000000000002em;
        font-size: 1.3rem;
		}
		.nominator_details {
			background-color:#efefef; 
			border:1px solid #D8D8D8; 
			padding:.75rem;			
		}
		.nominator_details label {
			font-weight: 400!important;
		}
@media (max-width: 900px) {
  .nav-bar {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    margin: .5rem 0 0 0;
    gap: .75rem;
    font-size: .95rem;
  }

  .nav-bar img.logo {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: 4rem 1rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 6vw, 2.4rem);
  }

  .hero p {
    font-size: 1.05rem;
  }
}
@media (max-width: 525px) {
  .custom-offcanvas {
    max-width: 90%;
    padding: .75rem 1rem 1.25rem 1rem;
  }
}
@media (max-width: 768px) {
  .custom-offcanvas {
    max-width: 90%;
    padding: .75rem 1rem 1.25rem 1rem;
  }

  .custom-offcanvas h2 {
    font-size: 1.35rem;
  }

  .custom-offcanvas .form-actions {
    flex-direction: column;
  }

  .custom-offcanvas .form-actions .btn {
    width: 100%;
  }
}
p, label, textarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
.calendar-day {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    min-height: 140px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.calendar-day h4 {
    margin: 0 0 .35rem;
    font-weight: 700;
    color: #14213d;
}

.calendar-event {
    display: block;
    margin-top: .4rem;
    font-size: .95rem;
    font-weight: 600;
    color: #14213d;
    cursor: pointer;
}

.calendar-event:hover {
    text-decoration: underline;
}
