@import url('https://fonts.googleapis.com/css2?family=Rubik+Glitch&family=Special+Elite&family=Turret+Road:wght@400;700&display=swap');

/* Global Styles */
:root {
    --background-dark: black;
    --text-body: white;
    --text-header: white;
    --alert-red: #FF3F3F;
    --border-color: #1F2833;
}


.title-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, var(--background-dark)), 
                url('../img/ufoBackground.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: scroll; /* Allows scrolling */
    min-height: 100vh; /* Ensures full-screen section */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
    align-items: center; /* Centers horizontally */
    text-align: center;
    padding: 100px 10vw; /* Pushes content down */
}

.title-section h1 {
    font-size: 80px;
    font-weight: 100;
    color: black;
    margin-top: -60px;
    font-family: "Rubik Glitch";
}

.title-section p {
    font-size: 25px;
    color: black;
    font-weight: 500;
    font-family: "Special Elite";
    margin-top: 15px; /* Reduce spacing */
}

/* Closing Slide */
.closing-section {
    background: var(--background-dark);
    text-align: center;
    padding: 60px 10%;
}

.closing-section h2 {
    font-size: 2.8rem;
    font-family: 'Rubik Glitch', sans-serif;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 100;
}

.closing-section p {
    font-size: 1.4rem;
    color: #CCCCCC;
    margin-bottom: 30px;
}

/* Team Container */
.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

/* Team Member Profiles */
.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #CCCCCC;
}

.team-member p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: white;
}

.fullscreen {
    height: 100vh; /* Makes sure section takes full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 5%;
    color: white;
}

.intro-line {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-family: "Special Elite";
}

.highlight {
    color: #00FF41; /* Adjust to match your UI */
    cursor: pointer;
}

#intro {
    margin-top: 100px;
}
