/*
 * Theme Name: Contact Page
 * /


/* Reset and Base Styles */
* {
box-sizing: border-box;
}

html,
body {
margin: 0;
padding: 0;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
font-family: 'Pixelify Sans', sans-serif;
color: #fff;
}

/* Wrapper */
.wrapper {
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
position: relative;
z-index: 3;
}

/* Backgrounds */
.background {
background: url('https://vibequest.art/wp-content/uploads/2025/06/VibeQuest-Logo-2.png') center/cover no-repeat;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
opacity: 0.6;
z-index: 1;
}

.tint-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(10, 10, 20, 0.3);
z-index: 2;
}

/* Navigation */
.nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 5;
background-color: rgba(214, 180, 252, 0.45);
padding: 1rem 0;
text-align: center;
box-shadow: 0 0 20px #0ff;
}

.navbar-list {
list-style: none;
margin: 0;
padding: 30px;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 90px;
}

.navbar-list li a {
color: #0ff;
text-decoration: none;
font-size: 2rem;
}

.navbar-list li a:hover {
color: #d8b4f8;
}

/* Main */
.main {
padding-top: 100px;
flex-grow: 1;
z-index: 3;
display: flex;
align-items: center;
justify-content: center;
}


@keyframes neon-flash {
  0%, 100% {
    color: #0ff;
    text-shadow:
      0 0 8px #0ff,
      0 0 16px #0ff,
      0 0 32px #0ff,
      0 0 48px #0ff;
  }

  50% {
    color: #d8b4f8;
    text-shadow:
      0 0 2px #d8b4f8,
      0 0 4px #d8b4f8,
      0 0 8px #d8b4f8,
      0 0 16px #d8b4f8;
  }
}

#external {
    display: none;

}

.popup-title {
  animation: neon-flash 0.9s infinite alternate;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #0ff; /* fallback */
}



/* Contact section layout */
#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  min-height: 100vh;
  
}

/* Opaque panel container */
.contact-panel {
  background-color: rgba(10, 10, 20, 0.65);
  padding: 2rem 5rem;
  border-radius: 20px;
  box-shadow: 0 0 20px #0ff;
  width: 750px;
  height: 750px;
  text-align: center;
}

/* Form Title */
.form-title {
  font-size: 3rem;
  color: #0ff;
  margin-bottom: 1rem;
  font-family: 'Pixelify Sans', sans-serif;
  display: flex;
  position: relative;
  justify-content: center;

}

/* Form Fields */
.contact-form label {
  display: flex;
  text-align: center;
  margin-top: 1rem;
  font-weight: bold;
  color: #d8b4f8;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 8px;
  border: 1px solid #d8b4f8;
  background-color: #111;
  color: #0ff;
  font-family: 'Pixelify Sans', sans-serif;
  text-align: center;
  display: flex;
}

input, option, select {
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.message {
    height: 150px;
    width: 400px;
    font-size: 2rem;
}

.contact-form {
  display: flex;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background-color: #0ff;
  color: #0ff;
  border: none;
  border-radius: 10px;
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btnc { 
    display: block;
    margin: 1rem auto;
    border-radius: 5px;
    font-size: 2rem;
    color: #111;
    background-color: #0ff;
    box-shadow: 0 0 15px #0ff;
    font-family: 'Pixelify Sans', sans-serif;
}

.btnc:hover {
  transform: scale(1.05);
  background-color: #0ff;
  color: #d8b4f8;
  
  box-shadow: 0 0 15px #d8b4f8;
}

label {
    justify-content: center;
    display: flex;
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #0ff;
}

footer {
font-size: 1.5rem;
padding: 1rem;
text-align: center;
background-color: rgba(214, 180, 252, 0.45);
color: #0ff;
box-shadow: 0 0 10px #0ff;
z-index: 3;
position: fixed;
bottom: 0;
width: 100%;
}

@keyframes neon-flash {
0%,
100% {
color: #0ff;
text-shadow: 0 0 8px #0ff, 0 0 16px #0ff, 0 0 32px #0ff, 0 0 48px #0ff;
}
50% {
color: #d8b4f8;
text-shadow: 0 0 2px #d8b4f8, 0 0 4px #d8b4f8, 0 0 8px #d8b4f8, 0 0 16px #d8b4f8;
}
}

/* Responsive */
@media screen and (max-width: 768px) {
.social-icon {
width: 100px;
height: 100px;
}

.social-title {
font-size: 2rem;
}

.navbar-list {
gap: 40px;
flex-wrap: wrap;
}
}

/* Desktop and large screens */
@media (min-width: 1025px) {
  .background {
    background-size: cover;
    background-position: center center;
  }
}

/* Tablets and small laptops */
@media (min-width: 768px) and (max-width: 1024px) {
  .background {
    background-size: cover;
    background-position: center center;
  }
}

/* Phones: portrait & landscape */
@media (max-width: 767px) {
  .background {
    background-size: cover;
    background-position: center top;

  }
}