@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;    
}

.title-header{
    background: url('../images/landing/header-bg.jpg') no-repeat;
    background-size: cover;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    padding: 80px;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
}

.title-header h1{
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
}


.aboutus-content{
    max-width: 100%;
    min-height: 100%;
    padding: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(135deg, #90a1eb 0%, #957dad 100%);
    box-sizing: border-box;
}

.aboutus-content .card{
    width: 100%;
    height: auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Fixed box-shadow */
    border-radius: 20px;
    text-align: center;
    box-sizing: border-box; /* Added box-sizing */
    overflow: hidden; /* Added overflow */
}

.content p{
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    text-align: justify;
}   

.video-container{
    background: url('../images/landing/header-bg.jpg') no-repeat;
    background-size: cover;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    padding: 80px;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
}

.video-container .title{
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
}

.video-desc {
    font-size: 30px;
    font-weight: bold;

}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgb(136, 136, 235);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.3s ease-in-out;
}

.play-button::after {
    color: white;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
}

.play-button:hover::before {
    opacity: 1;
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.6), 0 0 50px rgba(0, 123, 255, 0.6), 0 0 100px rgba(0, 123, 255, 0.6);
}

.play-button:hover {
    background-color: darkblue;
}

.modal button {
    position: absolute;
    top: 10px; /* Adjust as needed */
    right: 5px; /* Adjust as needed */
    margin-right: 10px;
    cursor: pointer;
    background-color: white;
}

.modal button:hover {
    color: white;
    background-color: gray;
}

.company-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3e413e;
    padding: 20px 0;
}

.logo-container {
    width: 60%;
    max-width: 800px;
    aspect-ratio: 16 / 9; /* Maintain video aspect ratio */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.logo-video {
   border-radius: 20px;
   width: 100%;
   height: 100%;
   object-fit: cover;
}   

/* For tablets (increase the width to 70%) */
@media (max-width: 992px) {
    .logo-container {
        width: 70%;
    }
}

/* For mobile screens (increase the width to 90%) */
@media (max-width: 768px) {
    .logo-container {
        width: 90%;
    }
}

/* For extra small screens (full width) */
@media (max-width: 576px) {
    .logo-container {
        width: 100%;
        padding: 10px 0; /* Reduce padding for better fit */
    }
}

.modal button {
    position: absolute;
    top: 10px; /* Adjust as needed */
    right: 5px; /* Adjust as needed */
    margin-right: 10px;
    cursor: pointer;
    background-color: white;
}

.modal button:hover {
    color: white;
    background-color: gray;
}

.carta-organisasi-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white; /* Light background */
    padding: 50px;
}

.carta-organisasi-content .card {
    width: 100%;
    max-width: 1200px;
    height: auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden; 
}

.carta-organisasi-content .img {
   object-fit: contain;
   aspect-ratio: 16 / 9; /* Maintain image aspect ratio */
}