@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Button styles */
.btn-danger {
    background-color: darkblue;
    border-radius: 10px;
    border-color: darkblue;
    padding: 10px 55px;
    color: white;
    transition: 0.3s;
}

.btn-danger:hover {
    background-color: navy;
    border-color: navy;
    opacity: 0.8;
}

.btn-outline-danger,
.btn-outline-white {
    background-color: transparent;
    border-radius: 10px;
    padding: 10px 45px;
    transition: 0.3s;
}

.btn-outline-danger {
    border-color: darkblue;
    color: darkblue;
}

.btn-outline-danger:hover {
    background-color: darkblue;
    color: white;
}

.btn-outline-white {
    border-color: white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: black;
}

/* Navbar styles */
.navbar-scroll .nav-link,
.navbar-scroll .navbar-toggler-icon,
.navbar-scroll .navbar-brand {
    color: #fff;
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-toggler-icon,
.navbar-scrolled .navbar-brand {
    color: #333; /* Warna lebih gelap agar lebih kontras */
}

/* Color of the navbar AFTER scroll */
.navbar-scroll,
.navbar-scrolled {
    background-color: #cbbcb1;
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.75rem;
    letter-spacing: 3px;
}

.nav-item .nav-link {
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
    transition: 0.3s;
}

.nav-item .nav-link:hover {
    color: darkblue;
}

.scroll-nav-active {
    background-color: white;
    box-shadow: 1px 1px 11px -1px rgba(1, 1, 1, 0.08);
}

.text-nav-active {
    color: black;
}

#hero {
    background-image: url("../../assets/images/foto_bersama.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    height: 800px; /* Sesuaikan dengan kebutuhan */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}




.hero-title {
    text-align: center;
}

.hero-text{
    font-size: 80px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    color: whitesmoke;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-text {
        font-size: 40px;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .maskot {
    animation: bounce 1s infinite;
  }

  
/* Join styles */
.strip {
    height: 5px;
    width: 40px;
    background-color: darkblue;
}
#info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.content {
    width: 45%;
}

.media-container {
    width: 50%;
    display: flex;
    gap: 20px;
}

.media-container video {
    width: 48%;
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Video section */
#video {
    background-image: url("../../assets/images/DSCF0087-scaled.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 700px;
}

/* Section Foto */
.section-foto {
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
    height: 750px;
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section-foto img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: auto;
}

@media (max-width: 500px) {
    .section-foto {
        height: auto;
    }

    .section-foto img {
        height: auto;
    }
}

/* Parallax effect */
.parallax {
    background-image: url("../../assets/images/IMG_1486.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.strip-putih {
    height: 5px;
    width: 40px;
    background-color: white;
}
