body {
    font-family: Calibri;
    font-family: 'Roboto', sans-serif;
    background-color: #203766;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #E30016;
}

header .logo-header img {
    width: 80px;
}

nav {
    display: flex;
    align-items: center;
    position: static;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 14px;
}

nav ul li {
    margin-right: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}


nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav ul li:hover {
    opacity: 1;
}

nav ul li.active {
    opacity: 1;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
}

/* Banner */
.banner {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), #13264d),url("asset/banner-ayam.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    align-items:center;
    padding: 150px 20px;
}
@font-face {
    font-family: Ravie;
    src: url(asset/Ravie.ttf);
} 
.banner h1 {
    font-size: 5vw;
    font-weight: bold;
    font-family: Ravie;
    color: #F9CB19;
    -webkit-text-stroke: 10px black;
    paint-order: stroke fill;
}
.banner-menu {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), #13264d), url("asset/banner-menu.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    text-align: center;
    align-items:center;
    padding: 150px 20px;
}
.banner-menu h1 {
    font-size: 5vw;
    font-weight: bold;
    font-family: Ravie;
    color: #F9CB19;
    -webkit-text-stroke: 10px black;
    paint-order: stroke fill;
    position: center;
}
/* Content */
.content {
    display: flex;
    align-items:center;
    padding: 60px;
    background-color: #203766;
}

/*for mobile view (body)*/
@media (max-width: 700px) {
    .content {
        flex-direction: column;   /* logo di atas, teks di bawah */
        align-items: center;
        padding: 24px;
        text-align: center;
    }

    .btn-section {
    display: flex;
    justify-content: center;
}
}

.logo-section {
    text-align: center;
    margin-right: 20px;
    order: -1;
    margin-bottom: 16px;
}

.logo-section img {
    width: 100px;
    border-radius: 50%;
    border: 2px solid white;
}

.text-section {
    width: 100%;
    max-width: 6000px;
    text-align: justify;
    padding: 0 8px;
}

.text-section2 {
    max-width: 6000px;
    text-align: center;

}

p {
    font-size:large ;
}

h1{
    font-size: x-large;
    margin-bottom: 10px;
    color: yellow;  
    
}

/* Keunggulan */
.keunggulan {
    background-color: #0c1d3b;
    padding: 30px;
}

.keunggulan h2 {
    font-size: 3vw;
    margin-bottom: 10px;
    color: yellow;
    
}

footer .map {
    justify-content: left;
    margin-top: 20px;
}

footer {
    background-color: #E30016;
    color: white;
    text-align: center;
    padding: 5px 0;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    font-weight: 700;
    margin-right: 30px;
}

.header-right {
    display: flex;
    align-items: center;
}

.language {
    margin-right: 20px;
    opacity: 0.7;
}

.user-icons span {
    margin-left: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
}
.container {
    padding: 30px 50px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    margin-bottom: 30px;
    background-color: #203766;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
}

.navbar a.active {
    opacity: 1;
    border-bottom: 2px solid #007bff;
    width: auto;
}

.page {
    display: none;
}

.page.active-page {
    display: block;
}


button.btn-menu {
    background-color:#cf0404;
    color: rgb(255, 255, 255);
    border: solid 1px #9c0000;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 20px;
}



.filter {
    margin-left: auto;
    opacity: 0.7;
    cursor: pointer;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}



.card {
    background-color: #0c1d3b;
    border-radius: 10px;
    overflow: hidden;
    padding: 1.5em;
    width: 85%;
    display: flex;
    flex-direction: column;
    height: fit-content;
    cursor: pointer;
}

.card-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 15px;
}

.card-image {
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    display:flex;
}

.card-image img {
    width: 100%;
    height: auto;
}

.card-footer p {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* column card left right + navbar column on mobile */
@media (max-width: 768px) {
    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        width: auto;
        max-width: none;
    }

    .navbar {
        display: grid;
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
}




