/*
 * Theme Name: Social Page
 * @package VibeQuest
 * /


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

html,
body {
margin: 0;
padding: 0;
height: 100%;
overflow-x: hidden;
overflow-y: hidden;
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: 120px;
}

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

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

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

/* Social Section */
.social-title {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding-top: 200px;
margin: 0;
font-size: 2.5rem;
color: #0ff;
flex-wrap: wrap;
}

.social-link {
display: inline-block;
margin: 0 auto 50px;
}

.social-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
   
    max-width: 100%;
}

.social-icons img {
width: 250px;
height: 250px;
object-fit: contain;
display: flex;


}

.social-icons p {
    text-align: center;
    font-size: 2rem;
}

.social-icon:hover {
transform: scale(1.1);
filter: drop-shadow(0 0 8px #d6b4f8);
}

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

}

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

.claw-btn img {
width: 100%;
height: 100%;
bottom: 350px;
object-fit: contain;
filter: drop-shadow(0 0 10px #0ff);
animation: neon-flash 0.9s infinite alternate;
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);
}

.clawbutton {
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%;
}

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

/* Responsive */
@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;

  }

}