body {
  font-family: "Cormorant Garamond", Arial, sans-serif;
  background-color: #f5f1eb; /* Sandstone Beige */
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #2c3e50; /* Deep Ocean Blue for base text */
}
/* centers my logo */
#logo {
  display: block;
  margin: 40px auto 10px auto; /* 40px top, 10px bottom, centered horizontally */
  /* Ensure the image is visible and not altered by filters */
  filter: none !important;
  -webkit-filter: none !important;
  background: transparent !important;
  max-width: 250px;
  height: auto;
}
/* banner styles */
#banner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
  padding: 2em 1em;
}
#banner h1 {
  font-family: "Satisfy", "Pacifico", "Cormorant Garamond", "Playfair Display",
    "Brush Script MT", cursive, serif;
  font-size: 2.5em;
  color: #2c3e50; /* Deep Ocean Blue */
  margin: 0;
}
#banner p {
  font-size: 1.2em;
  color: #2c3e50; /* Deep Ocean Blue */
}
#banner figure {
  flex: 1;
  min-width: 250px;
  margin: 0;
}
#bnr_img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* navigation styles */
nav {
  background-color: #c4a77d; /* Golden Shell */
  padding: 1em 0;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

nav ul li {
  display: inline;
}

nav ul li a {
  font-size: 1.3em;
  font-weight: 500;
  padding: 0.5em 0.75em;
  border-radius: 4px;
  color: #2c3e50; /* Deep Ocean Blue text on golden background */
}

nav ul li a:hover {
  background-color: #2c3e50; /* Deep Ocean Blue background on hover */
  color: #fff; /* White text on hover */
}

nav ul li a.active {
  background-color: #2c3e50; /* Deep Ocean Blue — marks current page */
  color: #fff;
  font-weight: 700;
}
/* header styles */
.header {
  font-family: "Satisfy", "Pacifico", "Cormorant Garamond", "Playfair Display",
    "Brush Script MT", cursive, serif;
  font-size: 3em;
  text-align: center;
}
header p {
  font-size: 1.2em;
  color: #2c3e50; /* Deep Ocean Blue */
  text-align: center;
  margin-top: 0.5em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: #2c3e50; /* Deep Ocean Blue */
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  text-align: center;
}

p {
  font-size: 1.3em; /* Increased from default */
  line-height: 1.6;
}
/* -----------ABOUT STYLES */
.about {
  display: flex;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
}

.aboutImg {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
}
.about div:first-child {
  flex: 1;
  min-width: 250px;
}

.about div:last-child {
  flex: 2;
  min-width: 250px;
}

.about video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
}
.about p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #2c3e50; /* Deep Ocean Blue */
  margin: 0 auto;
  max-width: 800px;
}

/* ABOUT PAGE Specific styles */
.tagline {
  font-family: "Satisfy", "Pacifico", "Cormorant Garamond", "Playfair Display",
    "Brush Script MT", cursive, serif;
  font-size: 1.5em;
  font-weight: bold;
  color: #2c3e50;
  text-align: center;
}

/* About page specific styles */
.about-page {
  margin-bottom: 3em;
  font-size: 1em;
}

.about-page p:last-child {
  margin-bottom: 2em;
}

/* article styles */

article h1 {
  font-size: 2.5em;
  font-weight: 700;
}

strong,
b {
  color: #2c3e50; /* Deep Ocean Blue for emphasis */
  font-weight: bold;
}
/* styles my a: links */
a {
  color: #c4a77d; /* Golden Shell */
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #f28c8c; /* Coral Blush */
}

/* background stylings for header and nav */
header,
nav {
  background-color: #dde7e4; /* Sea Mist */
  padding: 1em 0;
}

main {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2em 1em;
}
/* button stylings */
button,
.btn {
  background-color: #f28c8c; /* Coral Blush */
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.75em 2em;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  font-weight: 600;
}
button:hover,
.btn:hover {
  background-color: #c4a77d; /* Golden Shell */
  color: #2c3e50;
}

section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
  margin-bottom: 2em;
  padding: 2em;
}

.card {
  background-color: #dde7e4; /* Sea Mist */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  padding: 1.5em;
  margin-bottom: 1.5em;
}
/* ===== GALLERY SECTION STYLES ======= */
.gallery > div {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery .card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
}

.gallery .card img {
  width: 100%;
  border-radius: 8px;
}

.gallery .card p:first-of-type {
  color: #c4a77d;
}

.gallery .card:nth-child(2) p:first-of-type {
  color: #f28c8c;
}

.gallery .card:nth-child(3) p:first-of-type {
  color: #a69f94;
}

/* form styles */
form {
  font-size: 1em;
  text-align: center;
}
form h1 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #2c3e50; /* Deep Ocean Blue */
}
.form-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.form-center label,
.form-center input,
.form-center select,
.form-center button {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0.5em 0;
  text-align: center;
}
.show-participants {
  font-size: 1.5em;
  color: #2c3e50; /* Deep Ocean Blue to match your site */
  font-weight: bold;
  text-decoration: none;
}

.show-participants:hover {
  text-decoration: underline;
  color: #f28c8c; /* brighter shade on hover */
}

/* Participants table — replaces inline border/style attributes */
.participants-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
  margin-top: 1.5em;
}

.participants-table th {
  background-color: #c4a77d; /* Golden Shell */
  color: #2c3e50;
  padding: 0.75em 1em;
  text-align: left;
  font-family: 'Playfair Display', serif;
}

.participants-table td {
  padding: 0.65em 1em;
  border-bottom: 1px solid #dde7e4; /* Sea Mist line */
  color: #2c3e50;
}

.participants-table tr:nth-child(even) td {
  background-color: #f5f1eb; /* Sandstone Beige for zebra striping */
}

.participants-table tr:hover td {
  background-color: #dde7e4; /* Sea Mist on hover */
}

/* ===== MODERN FOOTER ===== */
footer {
  background-color: #2c3e50; /* Deep Ocean Blue */
  color: #dde7e4; /* Sea Mist text */
  padding: 0;
  margin-top: 3em;
  font-size: 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3em 2em;
  justify-content: space-between;
}

/* Brand column */
.footer-brand {
  flex: 1.2;
  min-width: 200px;
}

.footer-logo {
  display: block;
  margin: 0 0 1em 0;
  filter: brightness(0) invert(1);  /* makes logo white on dark bg */
  opacity: 0.9;
  width: 90px;
}

.footer-tagline {
  font-family: "Satisfy", cursive;
  font-size: 1.15em;
  color: #c4a77d; /* Golden Shell */
  line-height: 1.5;
  margin: 0 0 1.2em 0;
}

.footer-social {
  display: flex;
  gap: 0.75em;
  font-size: 1.4em;
}

.footer-social a {
  color: #dde7e4;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-social a:hover {
  color: #c4a77d; /* Golden Shell */
  transform: translateY(-2px);
}

/* Nav / Info columns */
.footer-col {
  flex: 1;
  min-width: 160px;
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c4a77d; /* Golden Shell */
  margin: 0 0 1em 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid rgba(196, 167, 125, 0.35);
  text-align: left;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.footer-col ul li {
  font-size: 0.95em;
  color: #b0bec5;
  line-height: 1.4;
}

.footer-col ul li a {
  color: #b0bec5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #c4a77d; /* Golden Shell */
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25em 2em;
  font-size: 0.85em;
  color: #78909c;
}

.footer-bottom p {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
  color: #78909c;
}

.footer-bottom a {
  color: #c4a77d;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #f28c8c; /* Coral Blush */
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 2em;
    padding: 2em 1.5em;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1em 1.5em;
  }
}

/* ===== MEDIA QUERIES FOR RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  main,
  section {
    padding: 1em;
  }
  h1 {
    font-size: 2rem;
  }
  button,
  .btn {
    width: 100%;
    padding: 1em;
  }
}

/* Tablet styles (768px and below) */
@media (max-width: 768px) {
  /* Banner adjustments for tablets */
  #banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5em 1em;
  }

  #banner h1 {
    font-size: 2rem;
    margin-bottom: 1em;
  }

  /* About section stacking */
  .about {
    flex-direction: column;
    gap: 1.5em;
  }

  .about div:first-child,
  .about div:last-child {
    flex: none;
    min-width: 100%;
  }

  /* Gallery adjustments */
  .gallery > div {
    gap: 1.5em;
  }

  .gallery .card {
    min-width: 280px;
    max-width: 100%;
  }

  /* Main content padding */
  main {
    padding: 1.5em 1em;
  }

  /* Section adjustments */
  section {
    padding: 1.5em;
    margin-bottom: 1.5em;
  }

  /* Navigation adjustments (if needed) */
  nav {
    flex-direction: column;
    gap: 1em;
  }
}

/* Mobile styles (480px and below) */
@media (max-width: 480px) {
  /* Banner mobile optimizations */
  #banner {
    padding: 1em 0.5em;
  }

  #banner h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  /* About section mobile */
  .about {
    gap: 1em;
  }

  /* Gallery mobile - single column */
  .gallery > div {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }

  .gallery .card {
    min-width: 100%;
    max-width: 320px;
  }

  /* Main content mobile */
  main {
    padding: 1em 0.5em;
  }

  /* Section mobile */
  section {
    padding: 1em;
    margin-bottom: 1em;
  }

  /* Typography adjustments */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  /* Button adjustments */
  button,
  .btn {
    width: 100%;
    padding: 1em;
    font-size: 1rem;
  }

  /* Video responsive */
  video {
    width: 100%;
    height: auto;
  }

  /* Image responsive */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Large mobile/small tablet (between 481px and 600px) */
@media (min-width: 481px) and (max-width: 600px) {
  .gallery > div {
    justify-content: space-around;
  }

  .gallery .card {
    flex: 0 1 45%;
    min-width: 200px;
  }
}

/* Extra small screens (320px and below) */
@media (max-width: 320px) {
  #banner h1 {
    font-size: 1.3rem;
  }

  .gallery .card {
    max-width: 280px;
  }

  main {
    padding: 0.5em 0.25em;
  }

  section {
    padding: 0.75em;
  }
}

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
  main {
    max-width: 1200px;
    margin: 0 auto;
  }

  #banner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .gallery > div {
    max-width: 1000px;
    margin: 0 auto;
  }
}
/* For video responsiveness */
@media (max-width: 768px) {
  .about video {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .about video {
    max-width: 300px;
  }
}

/* ===== SWEEPSTAKES CTA SECTION ===== */
.sweepstakes-cta {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #dde7e4;
  border-radius: 12px;
  overflow: hidden;
  border-left: 5px solid #c4a77d;
}

.sweepstakes-cta-content {
  padding: 3em 2em;
  text-align: center;
}

.sweepstakes-cta h2 {
  margin-top: 0;
  color: #c4a77d;
  font-size: 2em;
}

.sweepstakes-cta-subtitle {
  font-size: 1.2em;
  color: #b0bec5;
  margin-bottom: 2em;
}

.sweepstakes-highlights {
  display: flex;
  justify-content: space-around;
  gap: 1.5em;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.highlight-item {
  flex: 1;
  min-width: 120px;
  background-color: rgba(196, 167, 125, 0.1);
  padding: 1.2em;
  border-radius: 8px;
  border: 1px solid rgba(196, 167, 125, 0.3);
}

.highlight-item strong {
  display: block;
  color: #c4a77d;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

.highlight-item span {
  display: block;
  color: #dde7e4;
  font-size: 1.1em;
  font-weight: 600;
}

.sweepstakes-description {
  color: #b0bec5;
  font-size: 0.95em;
  margin: 1em 0;
}

.btn-cta {
  display: inline-block;
  background-color: #f28c8c;
  color: #fff;
  padding: 0.85em 2.5em;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.05em;
  margin-top: 1em;
}

.btn-cta:hover {
  background-color: #c4a77d;
  color: #2c3e50;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Sweepstakes CTA Responsive */
@media (max-width: 768px) {
  .sweepstakes-cta-content {
    padding: 2em 1.5em;
  }

  .sweepstakes-cta h2 {
    font-size: 1.5em;
  }

  .sweepstakes-highlights {
    gap: 1em;
  }

  .highlight-item {
    min-width: 100px;
    padding: 0.9em;
  }
}

@media (max-width: 480px) {
  .sweepstakes-cta-content {
    padding: 1.5em 1em;
  }

  .sweepstakes-cta h2 {
    font-size: 1.3em;
  }

  .sweepstakes-highlights {
    flex-direction: column;
    gap: 0.75em;
  }

  .btn-cta {
    width: 100%;
    padding: 0.75em 1.5em;
  }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
  text-align: center;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(196, 167, 125, 0.05));
  padding: 3em 2em;
  border-radius: 8px;
  margin-bottom: 2em;
}

.contact-hero h1 {
  margin-top: 0;
  font-size: 2.5em;
}

.contact-hero p {
  font-size: 1.1em;
  color: #666;
  max-width: 600px;
  margin: 0.5em auto 0;
}

/* Demo notice */
.demo-notice {
  max-width: 1200px;
  margin: 1em auto;
  padding: 0.75em 1em;
  border-left: 4px solid #c4a77d;
  background-color: #fff8f4;
  color: #2c3e50;
  border-radius: 6px;
  font-weight: 600;
}

/* Honeypot field: visually hidden but present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form Column */
.contact-form-col {
  display: flex;
  flex-direction: column;
}

.contact-form-col h2 {
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 1.5em;
  color: #2c3e50;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.4em;
  color: #2c3e50;
  font-size: 0.95em;
}

.form-group input,
.form-group textarea {
  padding: 0.75em;
  border: 1px solid #dde7e4;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1em;
  transition: border-color 0.2s;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c4a77d;
  background-color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}

.form-group.checkbox input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.checkbox-label {
  margin: 0;
  font-weight: 400;
  font-size: 1em;
}

.btn-submit {
  background-color: #f28c8c;
  color: #fff;
  border: none;
  padding: 1em 2em;
  border-radius: 4px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start;
  margin-top: 0.5em;
}

.btn-submit:hover {
  background-color: #c4a77d;
  color: #2c3e50;
}

/* Sweepstakes Column */
.sweepstakes-col {
  display: flex;
  align-items: flex-start;
}

.sweepstakes-card {
  background: linear-gradient(135deg, #dde7e4 0%, #f5f1eb 100%);
  border-left: 4px solid #c4a77d;
  border-radius: 8px;
  padding: 2em;
  width: 100%;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
}

.sweepstakes-card h2 {
  margin-top: 0;
  font-size: 1.8em;
  text-align: center;
  color: #c4a77d;
}

.sweepstakes-title {
  font-size: 1.6em;
  text-align: center;
  margin-top: 0;
  color: #2c3e50;
}

.sweepstakes-badge {
  display: inline-block;
  background-color: #f28c8c;
  color: #fff;
  padding: 0.5em 1.2em;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin: 0 auto 1em;
  text-align: center;
  width: fit-content;
  display: block;
}

.sweepstakes-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.05em;
  margin-bottom: 1.5em;
}

.sweepstakes-prizes {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1.2em;
  border-radius: 4px;
  margin-bottom: 1.5em;
}

.sweepstakes-prizes p {
  margin: 0.5em 0;
  font-size: 0.95em;
  color: #2c3e50;
}

.sweepstakes-prizes strong {
  color: #c4a77d;
}

.sweepstakes-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1.5em;
}

.sweepstakes-form .form-group label {
  color: #2c3e50;
}

.sweepstakes-form input {
  font-size: 0.95em;
}

.btn-sweepstakes {
  background-color: #2c3e50;
  color: #fff;
  border: none;
  padding: 0.9em 2em;
  border-radius: 4px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.btn-sweepstakes:hover {
  background-color: #c4a77d;
  color: #2c3e50;
}

.sweepstakes-rules {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1.2em;
  border-radius: 4px;
  border-top: 2px solid #c4a77d;
}

.sweepstakes-rules h4 {
  margin-top: 0;
  font-size: 1em;
  color: #2c3e50;
}

.sweepstakes-rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sweepstakes-rules li {
  font-size: 0.9em;
  color: #2c3e50;
  margin: 0.5em 0;
  padding-left: 1.5em;
  position: relative;
}

.sweepstakes-rules li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c4a77d;
  font-weight: bold;
}

.sweepstakes-rules a {
  color: #c4a77d;
  font-weight: 600;
}

.sweepstakes-rules a:hover {
  color: #f28c8c;
}

/* Form Response Messages */
.form-response {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 3em 2em;
  max-width: 600px;
  margin: 2em auto;
  text-align: center;
}

.success-message {
  border-left: 4px solid #8ac0b0;
}

.success-message h2 {
  color: #8ac0b0;
  margin-top: 0;
}

.success-message p {
  color: #2c3e50;
  font-size: 1em;
  margin: 0.5em 0;
}

.error-message {
  border-left: 4px solid #f28c8c;
}

.error-message h2 {
  color: #f28c8c;
  margin-top: 0;
}

.error-message ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  text-align: left;
  display: inline-block;
}

.error-message li {
  color: #2c3e50;
  padding: 0.35em 0;
  margin-left: 1.5em;
  position: relative;
}

.error-message li:before {
  content: "✕";
  position: absolute;
  left: -1.2em;
  color: #f28c8c;
  font-weight: bold;
}

.form-response a {
  color: #c4a77d;
  font-weight: 600;
  text-decoration: none;
}

.form-response a:hover {
  color: #f28c8c;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .sweepstakes-col {
    align-items: center;
  }

  .sweepstakes-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 2em 1.5em;
    margin-bottom: 1.5em;
  }

  .contact-hero h1 {
    font-size: 2em;
  }

  .contact-container {
    gap: 1.5em;
  }

  .sweepstakes-card {
    padding: 1.5em;
  }

  .contact-form-col h2,
  .sweepstakes-title {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 1.5em 1em;
  }

  .contact-hero h1 {
    font-size: 1.6em;
  }

  .contact-container {
    gap: 1em;
  }

  .sweepstakes-card {
    padding: 1em;
  }

  .contact-form-col h2,
  .sweepstakes-title {
    font-size: 1.2em;
  }

  .btn-submit,
  .btn-sweepstakes {
    width: 100%;
    padding: 0.75em 1em;
  }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
  /* Base colors */
  body {
    background-color: #1a1a1a;
    color: #dde7e4;
  }

  /* Sections and cards */
  section {
    background-color: #2c3e50;
    color: #dde7e4;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(196, 167, 125, 0.1);
  }

  .card {
    background-color: #34495e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

  /* Text elements */
  h1, h2, h3, h4, h5, h6 {
    color: #c4a77d;
  }

  p {
    color: #dde7e4;
  }

  /* Links */
  a {
    color: #c4a77d;
  }

  a:hover {
    color: #f28c8c;
  }

  /* Header, nav, footer */
  header, nav {
    background-color: #34495e;
    border-bottom: 1px solid rgba(196, 167, 125, 0.15);
  }

  nav ul li a {
    color: #dde7e4;
  }

  nav ul li a:hover {
    background-color: #c4a77d;
    color: #1a1a1a;
  }

  nav ul li a.active {
    background-color: #c4a77d;
    color: #1a1a1a;
  }

  footer {
    background-color: #1a1a1a;
    color: #dde7e4;
    border-top: 1px solid rgba(196, 167, 125, 0.15);
  }

  .footer-col h4 {
    color: #c4a77d;
    border-bottom-color: rgba(196, 167, 125, 0.4);
  }

  .footer-col ul li {
    color: #b0bec5;
  }

  .footer-col ul li a {
    color: #b0bec5;
  }

  .footer-col ul li a:hover {
    color: #c4a77d;
  }

  .footer-bottom {
    border-top-color: rgba(196, 167, 125, 0.15);
  }

  .footer-bottom p {
    color: #78909c;
  }

  /* Forms */
  .form-group label {
    color: #c4a77d;
  }

  input,
  textarea {
    background-color: #34495e;
    color: #dde7e4;
    border-color: rgba(196, 167, 125, 0.2);
  }

  input:focus,
  textarea:focus {
    border-color: #c4a77d;
    background-color: #2c3e50;
  }

  .btn-submit {
    background-color: #f28c8c;
    color: #1a1a1a;
  }

  .btn-submit:hover {
    background-color: #c4a77d;
  }

  .btn-sweepstakes {
    background-color: #c4a77d;
    color: #1a1a1a;
  }

  .btn-sweepstakes:hover {
    background-color: #f28c8c;
    color: #1a1a1a;
  }

  button, .btn {
    background-color: #f28c8c;
    color: #1a1a1a;
  }

  button:hover, .btn:hover {
    background-color: #c4a77d;
  }

  /* Gallery */
  .gallery .card {
    background-color: #34495e;
  }

  /* Banner */
  #banner {
    background-color: transparent;
  }

  #banner h1 {
    color: #c4a77d;
  }

  /* About section */
  .about {
    color: #dde7e4;
  }

  .aboutImg {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  }

  .about video {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  }

  .about p {
    color: #dde7e4;
  }

  .tagline {
    color: #c4a77d;
  }

  /* Contact page */
  .contact-hero {
    background: linear-gradient(135deg, rgba(196, 167, 125, 0.1), rgba(196, 167, 125, 0.05));
    color: #dde7e4;
  }

  .contact-hero p {
    color: #b0bec5;
  }

  .contact-form-col h2 {
    color: #c4a77d;
  }

  .sweepstakes-card {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-left-color: #c4a77d;
  }

  .sweepstakes-card h2 {
    color: #c4a77d;
  }

  .sweepstakes-title {
    color: #dde7e4;
  }

  .sweepstakes-subtitle {
    color: #b0bec5;
  }

  .highlight-item {
    background-color: rgba(196, 167, 125, 0.15);
    border-color: rgba(196, 167, 125, 0.3);
  }

  .highlight-item strong {
    color: #c4a77d;
  }

  .highlight-item span {
    color: #dde7e4;
  }

  .sweepstakes-description {
    color: #b0bec5;
  }

  .sweepstakes-prizes {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .sweepstakes-prizes strong {
    color: #c4a77d;
  }

  .sweepstakes-prizes p {
    color: #dde7e4;
  }

  .sweepstakes-rules {
    background-color: rgba(0, 0, 0, 0.3);
    border-top-color: #c4a77d;
  }

  .sweepstakes-rules h4 {
    color: #dde7e4;
  }

  .sweepstakes-rules li {
    color: #dde7e4;
  }

  .sweepstakes-rules a {
    color: #c4a77d;
  }

  .sweepstakes-rules a:hover {
    color: #f28c8c;
  }

  /* CTA Button */
  .btn-cta {
    background-color: #f28c8c;
    color: #1a1a1a;
  }

  .btn-cta:hover {
    background-color: #c4a77d;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  }

  /* Form responses */
  .form-response {
    background-color: #2c3e50;
    border: 1px solid rgba(196, 167, 125, 0.1);
  }

  .success-message {
    border-left-color: #8ac0b0;
  }

  .success-message h2 {
    color: #8ac0b0;
  }

  .success-message p {
    color: #dde7e4;
  }

  .error-message {
    border-left-color: #f28c8c;
  }

  .error-message h2 {
    color: #f28c8c;
  }

  .error-message li {
    color: #dde7e4;
  }

  /* Tables */
  .participants-table {
    background-color: #2c3e50;
  }

  .participants-table th {
    background-color: #34495e;
    color: #c4a77d;
  }

  .participants-table td {
    border-bottom-color: rgba(196, 167, 125, 0.1);
    color: #dde7e4;
  }

  .participants-table tr:nth-child(even) td {
    background-color: #34495e;
  }

  .participants-table tr:hover td {
    background-color: rgba(196, 167, 125, 0.1);
  }

  /* Logo dark mode invert */
  #logo {
    filter: brightness(0.95);
  }

  .footer-logo {
    filter: brightness(1);
  }
}

/* ===== STICKY NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.12);
}

/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em;
  box-shadow: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 1em;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2c3e50;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px) {
  nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.5em 0;
  }

  .nav-hamburger {
    display: flex;
  }

  #navMenu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0.5em 0 1em;
  }

  #navMenu.nav-open {
    display: flex;
  }

  nav ul li {
    display: block;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 0.75em 1em;
    font-size: 1.1em;
    border-radius: 0;
  }
}

/* ===== CARD HOVER ANIMATIONS ===== */
.gallery .card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.gallery .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(44, 62, 80, 0.15);
}

.gallery .card img {
  transition: transform 0.3s ease;
}

.gallery .card:hover img {
  transform: scale(1.03);
  overflow: hidden;
}

/* ===== TECH STACK BADGES ===== */
.tech-stack-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.04), rgba(196, 167, 125, 0.04));
}

.tech-stack-section h2 {
  font-size: 1.4em;
  color: #2c3e50;
  margin-bottom: 1.25em;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75em;
}

.tech-badge {
  background-color: #2c3e50;
  color: #c4a77d;
  padding: 0.45em 1.1em;
  border-radius: 20px;
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(196, 167, 125, 0.3);
  font-family: 'Playfair Display', serif;
}

@media (prefers-color-scheme: dark) {
  .tech-stack-section {
    background: linear-gradient(135deg, rgba(196, 167, 125, 0.06), rgba(44, 62, 80, 0.06));
  }
  .tech-stack-section h2 {
    color: #c4a77d;
  }
  .tech-badge {
    background-color: #34495e;
    color: #c4a77d;
    border-color: rgba(196, 167, 125, 0.4);
  }
  .nav-hamburger span {
    background-color: #c4a77d;
  }
}
