/*
 * Theme Name: About 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: #0ff;
}

/* 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;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
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;
}

.about-panel {
    
    text-align: center;
    width: 100%;
    height: 100%;
    max-height:100vh;
    position: relative;
}

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

.about-p {
    font-size: 1.5rem;
}



/* News box itself */
.about-box {
    background-color: rgba(10, 10, 20, 0.4);
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 15px #0ff;
    margin-top: 200px;
    color: #0ff;
}

/* Claw Button */
.claw-btna {
position: absolute;
bottom: 100px;
left: 0;
margin-bottom: 125px;
width: 125px;
height: 125px;
z-index: 1000;
cursor: pointer;
transition: transform 0.3s ease;

}

.claw-btna:hover {
box-shadow: 0 0 15px #d9b4f8;
}


.claw-brna img {
width: 100%;
height: 100%;
bottom: 350px;
object-fit: contain;
border-radius: 10px;
}

/* Popup */
.popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
z-index: 2000;
}

.popup-content {
padding: 2rem;
border-radius: 15px;
text-align: center;
color: #0ff;
box-shadow: 0 0 15px #0ff;
font-size: 2rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
background-color: #111;
animation: neon-flash 1s infinite alternate;
}

#close-popup {
font-size: 1.5rem;
border-radius: 15px;
width: 250px;
height: 75px;
background-color: rgba(214, 180, 252, 0.45);
color: #0ff;
cursor: pointer;
}

#close-popup:hover {
background-color: rgba(255, 90, 255, 0.84);
}

.button {
background-color: #d8b4f8;
color: #0ff;
padding: 1rem 2rem;
border-radius: 10px;
font-size: 1.5rem;
cursor: pointer;
transition: all 0.3s ease;
animation: neon-flash 0.9s infinite alternate;
}

.button:hover {
background-color: #0ff;
color: #d8b4f8;
box-shadow: 0 0 15px #d8b4f8;

}

#facebook, #instagram {
    color: #0ff;
}

/* Footer */
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%;
}

#external {
    display: none;
}

/* Neon Flash Animation */
@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;
}
}
@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;

  }

}