/* 
Theme Name: VibeQuest
Theme URI: https://vibequest.com
Author: Slothifer
Description: Custom Theme for VibeQuest LLC
License: GNU General Public License v2 or Later
Version: 1.0
*/

* {
    box-sizing : border-box;
}

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

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

}

/* Background */
.background {
    background: url('https://vibequest.art/wp-content/uploads/2025/06/VibeQuest-Logo-2.png');
 position: fixed;
	top: 0;
	left; 0;
	width: 100vw;
	height: 100vh;
	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;
}

/* nav */
.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;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar-list li { 
    color: #0ff;
    
}

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

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

/* Main section  (Below Navbar) */
.main {
    padding-top: 50px; /* creates pace under navbar */
    padding-bottom: 10px;
    flex-grow: 1;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
} 



/* Panel behind the content */
.news-panel {
    
    text-align: center;
    width: 100%;
    height: 100%;
    max-height:100vh;
    position: relative;
}

/* News box itself */
.news-box {
    padding: 0 auto;
    margin: auto 0;
    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;
}

.claw-button {
    width: 125px;
    height: 125px;
    margin-top: 375px;
    bottom: 125px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;   
}

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

.claw-button img {
    width: 125px;
    height: 125px;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px #0ff);
    animation: neon-flash 0.9s infinite alternate;
    
}

.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;
    
}

.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;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;

}

.popup-box {
    
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: #0ff;
    border: 2px solid #d8b4f8;
    box-shadow: 0 0 15px #0ff;
    
    
    
}



.popup-content p {
    
    padding: 2rem;
    text-align: center;
    color: #0ff;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    animation: neon-flash 2s infinite alternate;
}

#close-popup {
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    display: inline;
    border-radius: 15px;
    padding-left: -15px;
    width: 250px;
    height: 75px;
    background-color: rgba(214, 180, 252, 0.45);
}

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

.button {
    background-color: #d8b4f8;
    color: #0ff;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-family: 'Pixelify Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

#external {
    display: none;
}

.footer {
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
    background-color: rgba(214, 180, 252, 0.4);
    border-top: 1px solid #d6b4fc;
    box-shadow: 0 0 10px #0ff;
    color: #0ff;
    z-index: 3;
}

@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;

  }
}
}