
/* === BASE: match site styles === */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;700&family=Space+Grotesk:wght@400;600&display=swap');

:root {
  --bg-dark: #0c0c0c;
  --bg-card: #1a1a1a;
  --border-color: #2a2a2a;
  --text-white: #ffffff;
  --accent-yellow: #ffc400;
  --shadow-color: rgba(0, 0, 0, 0.5);
}

/* === KEYFRAME ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background-color: #000;
  color: #000;
  line-height: 1.8;
  font-size: 16px;
  padding-bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === LOGO HEADER === */
.logo-header { position: static; text-align: right; margin: 1rem 1rem 1rem 0; padding: 0.5rem; overflow: visible; }
.site-logo { height: 60px; width: auto; cursor: pointer; transition: transform .3s ease, opacity .3s ease; border: 3px solid var(--accent-yellow); border-radius: 50%; display: inline-block; }
.site-logo:hover { transform: scale(1.1); opacity: .8; }

@media (max-width: 768px) {
  .logo-header { position: sticky; top: 0; right: 0; z-index: 999; margin: 0; padding: 0.5rem 1rem; text-align: right; background: transparent; }
  .site-logo { height: 50px; }
}

/* === HEADER === */
.header {
  background-color: #000;
  padding: 2rem 1rem 1rem;
  text-align: center;
  border-bottom: 3px solid var(--accent-yellow);
  box-shadow: 0 4px 20px var(--shadow-color);
  position: relative;
  width: 100%;
  margin: -2rem 0 0 0;
}
.header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--text-white);
  letter-spacing: 2px;
  margin-bottom: .5rem;
  padding: 0 1rem;
}
.header p {
  font-size: 1.3rem;
  opacity: .9;
  color: var(--text-white);
  border-top: 3px solid var(--accent-yellow);
  padding: 1.5rem 0;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header-nav { position: absolute; top: 1.5rem; left: 1.5rem; }
.nav-btn {
  background-color: var(--bg-card);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 600;
  padding: .6rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color .3s ease, transform .2s ease;
}
.nav-btn:hover { background-color: var(--border-color); transform: translateY(-1px); }

@media (max-width: 768px) {
  .header { padding: 3.5rem 1rem 1.5rem; }
  .header-nav { top: .5rem; left: .5rem; }
  .nav-btn { font-size: .75rem; padding: .4rem .7rem; }
  .header h1 { font-size: 2.5rem; margin-bottom: .3rem; margin-top: .5rem; }
  .header p { font-size: 1.1rem; }
}

/* === NAV BANNER (kept for visual parity) === */
.nav-banner {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-yellow), #ffb000);
  padding: 1rem 0; text-align: center; position: relative; overflow: hidden;
  margin-bottom: 2rem; min-height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.nav-banner::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer { 0% { left: -100%; } 100% { left: 100%; } }

.nav-banner-buttons {
  display: flex; gap: 1.5rem; align-items: center; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.nav-banner-btn {
  background: rgba(0,0,0,.8);
  color: var(--accent-yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; font-weight: bold;
  padding: .7rem 1.5rem;
  border: 2px solid rgba(0,0,0,.8);
  border-radius: 8px;
  cursor: pointer; letter-spacing: 1px; transition: all .3s ease;
  text-decoration: none; display: inline-block;
}
.nav-banner-btn:hover {
  background: var(--accent-yellow); color: #000; border-color: var(--accent-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,.3);
}
.nav-banner-btn.active { background: #000; color: var(--accent-yellow); border-color: #000; }

@media (max-width: 768px) {
  .nav-banner-buttons { gap: 1rem; }
  .nav-banner-btn { font-size: 1rem; padding: .6rem 1.2rem; }
}

/* === CONTACT FORM (new) === */
.contact-form {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: left;
  background: white;
  border: 3px solid var(--accent-yellow);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0.1, 0.3);
  animation: scaleIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }

label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .2px;
  color: #000;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background: white;
  color: #000;
  border: 1px solid #e0e6ed;
  border-radius: 8px;
  padding: .9rem 1rem;
  font-size: 1rem;
  line-height: 1.3;
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder { color: rgba(0,0,0,.55); }

/* Hover -> enhanced effects */
input[type="text"]:hover,
input[type="email"]:hover,
textarea:hover {
  background: #f8f9fa;
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 196, 0, 0.2);
}

/* Focus -> accent ring */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.15);
  background: white;
}

/* Larger textarea */
textarea { min-height: 160px; resize: vertical; }

/* Submit button — matches .nav-banner-btn */
.submit-btn {
  display: inline-block;
  background: black;
  color: var(--accent-yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; font-weight: bold;
  padding: .7rem 1.5rem;
  border: 2px solid rgba(0,0,0,.8);
  border-radius: 8px;
  cursor: pointer; letter-spacing: 1px;
  transition: all .3s ease;
  margin-top: .25rem;
}

.submit-btn:hover {
  background: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,.3);
}

/* Optional: full-width on small screens */
@media (max-width: 520px) {
  .submit-btn { width: 100%; text-align: center; }
}

/* === MAIN CONTENT WRAPPER === */
.main-content {
  background-color: white;
  flex: 1;
  padding: 2rem 0;
  margin: 0;
  color: #000;
}

/* === FOOTER === */
footer {
  background: #000;
  text-align: center;
  padding: 1.5rem 0;
  color: white;
  border-top: 3px solid var(--accent-yellow);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
  margin: 0;
  margin-top: auto;
}

footer p {
  color: white;
  margin: 0.25rem 0;
}

footer p.footer-credit {
  font-size: 11px;
  opacity: 0.4;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* === THANK YOU MESSAGE === */
#thankYouMessage {
  max-width: 720px;
  margin: 2rem auto 0;
  background: white;
  border: 3px solid var(--accent-yellow);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #000;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

#thankYouMessage h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
}

#thankYouMessage p {
  font-size: 1.2rem;
  color: #000;
  opacity: 0.9;
}

/* === FOOTER MOBILE === */
@media (max-width: 768px) {
  footer {
    padding: 1rem 0.75rem;
    font-size: 0.8rem;
  }
  footer p {
    margin: 0.15rem 0;
    line-height: 1.4;
  }
  footer p.footer-credit {
    font-size: 10px;
  }
}
