/* Navigation Bar */
.navbar-style {
    backdrop-filter: blur(10px);
    width: 100%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.385);
    height: 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; 
    display: flex;
    align-items: center; 
}

.navbar-title {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    padding: 0 2rem; 
}

.nav-text {
    color: rgb(255, 201, 150);
    letter-spacing: 1px;
    text-decoration: none;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.385);
    font-size: 1.5vw;
    font-weight: bold;
}

.nav-name {
    color: rgb(255, 201, 150);
    letter-spacing: 1px;
    text-decoration: none;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.385);
    font-size: 25px;
    font-weight: bold;
}

.nav-text:hover {
    text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.6); 
    transform: scale(1.1); 
}

.nav-links {
    display: flex;
    gap: 2rem; 
}

/* Home Page */
.homepage {
    width: 100%;
    height: 100vh;
    background-image: url(assets/backgroundimg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.image-overlay {
    background-color: rgba(88, 61, 114, 0.85);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    padding: 0 50px;
    top: 0;
}

.text-content {
    max-width: 75%;
    color: #FFC996;
    font-family: Arial, sans-serif;
}

.text-content h1 {
    font-size: 10vw;
    font-weight: bolder;
    margin-bottom: 10px;
    margin-left: 3vw;
    text-align: left;
}

.text-content h2 {
    font-size: 3vw;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 3vw;
    text-align: left;
}

.text-content p {
    font-size: 1.8vw;
    text-align: justify;
    margin-bottom: 10px;
    margin-left: 3vw;
}

.circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 0.5vw;
    margin-right: 3vw; 
}

.circle-btn {
    width: 12vw;
    height: 12vw;
    background: rgba(159, 95, 128, 0.9);
    color: #FFC996;
    border-radius: 50%;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-left: 0.5vw;
    margin-right: 3vw; 
    margin-top: 50px;
}

.play-btn {
    font-size: 7vw;
    margin-left: 1.5vw;
    margin-bottom: 1vw;
    color: #FFC996;
}

.play-now {
    font-size: 2vw;
    color: #FFC996;
    font-weight: bold;
    margin-top: 20px;
    margin-left: 0.5vw;
    margin-right: 3vw; 
}

.circle-btn::after,
.circle-btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid rgba(159, 95, 128, 0.7);
    border-radius: 50%;
    animation: animate 1s infinite;
}

@keyframes animate {
    0% {
        width: 14vw;
        height: 14vw;
        opacity: 1;
    }
    100% {
        width: 20vw;
        height: 20vw;
        opacity: 0;
    }
}

/* About Page */
body {
    background: linear-gradient(180deg, #583D72 0%, #9F5F80 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    height: 100vh;
    margin-left: 65px; 
    font-family: Arial, sans-serif;
    transform: scale(1); 
    transform-origin: top left;
    width: 100%; 
    overflow-x: hidden; 
}


h1 {
    font-size: 2.5rem;
    color: #FFC996;
    margin-top: 20px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    
}

.about p {
    color: #FFDAB9;
    font-size: 1.2rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.about h1 {
    font-size: 3rem;
    color: #FFC996;
    font-weight: bold;
    margin: 20px 0 10px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


.members {
    margin-top: 30px;
    justify-content: space-between;
    padding-right: 0px;
    margin-left: -200px;
    display: flex;
    gap: 200px;
}

.member {
    width: 120px;
    text-align: center;
}

.photo {
    width: 270px;
    height: 270px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    transition: transform 0.3s ease, border 0.3s ease;
}

.photo:hover {
    transform: scale(1.1); 
}

/* images of members */
.member1 {
    background-image: url(assets/dom.JPG);
}

.member2 {
    background-image: url(assets/janine.jpg);
}

.member3 {
    background-image: url(assets/macki.JPG);
}

.member4 {
    background-image: url(assets/shin.jpg);
}

.member5 {
    background-image: url(assets/kat.jpg);
}

.name {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
    width: 240px;
    
}

.role {
    font-size: 0.9rem;
    font-style: italic;
    color: #FFDAB9;
    margin-top: 5px;
    width: 240px;
}

.description {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); 
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: #FFC996;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.description h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #FFDAB9;
    margin-bottom: 15px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.description p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;
}


.description:hover {
    transform: scale(1.05); 
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5); 
}


.forefront {
    font-family: Arial, sans-serif;
    background-color: #500000
    ;
    margin: 0;
    padding: 20px;
}
.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
    text-align: center;
    color: #333;
}
.question {
    color: blue;
    margin: 20px 0;
}
.options {
    list-style-type: none;
    padding: 0;
}
.options li {
    margin: 10px 0;
}
button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #218838;
}
.results {
    display: none;
    text-align: center;
}
