/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.4s ease, color 0.4s ease;
}

:root {
  --black: #111111;
  --white: #ffffff;
  --gold: #d4af37;
  --yellow: #ffeb3b;
  --charcoal: #1a1a1a;
  --gray: #e0e0e0;
  --light-bg: #f5f5f5;
  --light-text: #333333;
  --nav-bg: var(--black);
  --nav-text: var(--white);
  --nav-border: transparent;
  --hero-text: var(--white);
}

body {
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.light-mode {
  --nav-bg: var(--white);
  --nav-text: var(--light-text);
  --nav-border: rgba(0, 0, 0, 0.1);
  --hero-text: var(--light-text);
  background-color: var(--light-bg);
  color: var(--light-text);
}

/* ===== NAVIGATION ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: var(--nav-bg);
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.logo img {
  height: 40px;
  transition: filter 0.4s ease;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: none;
  color: var(--nav-text);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.theme-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.theme-toggle .icon {
  font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: var(--nav-text);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.contact-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("pics/generate-an-image-of-a-group-of-darkside_K2Q6CGk1RxWbVeOb7mh7Ng_cfuXb4snS16J3Evev9djqw.jpeg")
      center/cover no-repeat;
}

body.light-mode .contact-hero {
  background: linear-gradient(
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.7)
    ),
    url("pics/generate-an-image-of-a-group-of-darkside_K2Q6CGk1RxWbVeOb7mh7Ng_cfuXb4snS16J3Evev9djqw.jpeg")
      center/cover no-repeat;
}

.contact-hero .hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.section-title h2 span {
  color: var(--gold);
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

body.light-mode .contact-hero h1 {
  color: var(--black);
}

.contact-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--white);
}

body.light-mode .contact-hero p {
  color: var(--black);
}

.highlight {
  color: var(--gold);
  font-weight: bold;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 5rem 10%;
  background-color: var(--charcoal);
}

body.light-mode .contact-section {
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--yellow));
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.map-container {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form {
  background: var(--black);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.light-mode .contact-form {
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem;
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: var(--white);
  transition: all 0.3s ease;
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea,
body.light-mode .contact-form select {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* File Upload */
input[type="file"] {
  width: 100%;
  padding: 0.8rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  margin-top: 0.5rem;
}

/* Buttons */
.cta-button,
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(to right, var(--gold), var(--yellow));
  color: var(--black);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Booking Widget */
.booking-widget {
  background: rgba(212, 175, 55, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.booking-widget h3 {
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.booking-widget p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 5rem auto 0;
  padding: 0 2rem;
}

.faq-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: var(--gold);
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

details {
  background: var(--black);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

body.light-mode details {
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

details[open] {
  border-color: var(--gold);
}

details summary {
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "+";
  float: right;
  transition: transform 0.3s;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 1rem 0.5rem;
  line-height: 1.6;
}

/* Success Message */
.success-message {
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 3rem 5%;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

body.light-mode .footer {
  background-color: var(--gray);
  color: var(--charcoal);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .logo img {
  height: 13vh;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

body.light-mode .footer-links a {
  color: var(--black);
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  background-color: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

body.light-mode .social-links a {
  background-color: var(--white);
  color: var(--black);
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== FILE INPUT STYLING ===== */
.file-input-container {
  position: relative;
  margin-top: 0.5rem;
}

.file-input-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

body.light-mode .file-input-label {
  background: rgba(212, 175, 55, 0.05);
  color: var(--black);
}

.file-input-label:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--yellow);
}

.file-input-label i {
  font-size: 1.1rem;
}

/* Hide the default file input */
.file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

/* File name display */
.file-name {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.light-mode .file-name {
  color: var(--charcoal);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .logo img {
    margin-top: 6px;
    height: 28px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }
  .map-container {
    height: 270px;
    width: 30rem;
  }

  .booking-widget {
    background: none;
    border: none;
    text-align: left;
    margin-left: -25px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }

  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: var(--charcoal);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: top 0.5s ease;
    z-index: 999;
  }

  body.light-mode .nav-links {
    background-color: var(--white);
  }

  .nav-links.active {
    top: 80px;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .map-container {
    height: 250px;
    width: 20rem;
    transform: translateX(-10px);
  }

  .booking-widget {
    background: none;
    border: none;
    text-align: left;
    margin-left: -25px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 26.5px;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .contact-section {
    padding: 3rem 5%;
  }

  .map-container {
    height: 200px;
    width: 18rem;
    transform: translateX(-30px);
  }

  .booking-widget {
    background: none;
    border: none;
    text-align: left;
    margin-left: -25px;
  }
}

@media (max-width: 390px) {
  .map-container {
    height: 250px;
    width: 14.5rem;
    transform: translateX(-30px);
  }

  .booking-widget {
    background: none;
    border: none;
    text-align: left;
    margin-left: -25px;
  }
}
