/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevent scrolling if needed */
    background-color: #0a0a0a;
}

/* Full-screen background */
.splash-container {
    width: 100vw;
    height: 100vh;
    background: url('../images/splash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Locks background in place */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placement-control {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns content to the top */
    align-items: center;
}

.top-block {
    width: 100vw;
    height: 23.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-block {
    width: 100vw;
    height: 15vh;
    justify-content: center;
}

.header-bg {
    width: 100vw;
    height: 15vh;
    background: url('../images/ce.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mid-block {
    width: 100vw;
    height: 21vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-block {
    display: flex;
    justify-content: center;
    gap: 5vw; /* Space between links */
    padding: 15px;
    margin-bottom: 20px; /* Space before profiles */
    width: 600px;
    height: 8vh;
    text-align: left;
}
.core-block {
    display: flex;
    flex-direction: column;
    margin-top: -2vh;

    width: 600px;
    height: 44vh;
    
    justify-content: flex-start; /* Aligns content to the top */

    /*text-align: left; */
}

.team-container {
    display: flex; /* Creates two columns */
    justify-content: center; /* Centers content */
    gap: 2vw; /* Space between profiles */
}

.team-profile {
    width: 250px;
    text-align: center;
    padding: 5px;
}

.team-profile img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.team-profile h3 {
    margin-top: 10px;
    font-size: 1.2em;
    color: rgba(223, 223, 223, 200);
}

.team-profile p {
    font-size: 0.9em;
    color: rgba(223, 223, 223, 200);
}

.team-link {
    display: flex; /* Align images side by side */
    gap: 2px; /* Creates a 2px space between them */
    justify-content: center; /* Centers content */
}
.team-link a img {
    /*width: 70px; /* Set a custom width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Removes extra spacing under images */
}


.img-linkedin {
    width: 30px !important;
    height: auto !important;
}

.img-imdb {
    width: 50px !important;
    height: auto !important;
}

h1 {
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  color: #cccccc;
}

p {
    font-size: 1.0rem;
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;

    opacity: 100%;
    color: rgb(223, 223, 223);
    max-width: 600px; /* Prevents it from being too wide on large screens */
    font-size: clamp(1rem, 1vw, 1.0rem); /* Responsive font size */
}
/* Links */
a:link {
  color: rgba(255, 255, 255);
  text-decoration: none;
}
a:visited {
  color: rgba(255, 255, 255);
  text-decoration: none;
}
a:hover {
  color: white;
  opacity: 100%;
  text-decoration: none;
}
a:active {
  color: rgba(255, 255, 255);
  text-decoration: none;
}

h1 a:link {
  color: #cfcfce;
  text-decoration: none;
}
h1 a:visited {
  color: #cfcfce;
  text-decoration: none;
}
h1 a:hover {
  color: #cfcfce;
  opacity: 100%;
  text-decoration: none;
}
h1 a:active {
  color: #cfcfce;
  text-decoration: none;
}

h1 a.selected {
    color: #ffffff; /* Custom color for selected link */
}

/* Phones (up to 480px) */
@media (max-width: 480px) {

    .top-block {
        height: 21vh;
    }

    .header-block {
        width: 100vw;
        height: 9vh;
        justify-content: center;
    }

    .header-bg {
        height: 9vh;
        background-size: 250px;
    }

    .link-block {
        padding: 10px;
        margin-bottom: 10px; /* Space before profiles */
        height: 6vh;
    }

    .core-block {
        width: 350px;
    }

    h1 {
    font-size: 1.3rem;
    }

    p {
        font-size: 0.7rem;
    }

    .team-container {
        display: flex; /* Creates two columns */
        justify-content: center; /* Centers content */
        gap: 2vw; /* Space between profiles */
    }

    .team-profile {
        width: 220px;
        text-align: center;
        padding: 1px;
    }

    .team-profile img {
        width: 70%;
        height: auto;
        border-radius: 5px;
    }

    .team-profile p {
        font-size: 0.6rem;
    }

    .team-profile h3 {
        margin-top: 5px;
        font-size: 1.0em;
    }

    .img-linkedin {
        width: 20px !important;
        height: auto !important;
    }

    .img-imdb {
        width: 34px !important;
        height: auto !important;
    }

}

