body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: whitesmoke;
    color: black;
    line-height: 1.6;
    padding-bottom: 100px;
}

.header {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 250%;
    color: white;
    padding: 20px 0;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    
    background-image: url('../image/china/stadionshenzen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(63, 61, 61, 0.5) !important; /* merah transparan biar jelas */
    z-index: 1;
}


.header-title p {
    text-align: center; 
    color: white;
    font-weight: bold;
    justify-content: center;
    font-size: 2em; 
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7); 
}

.menu {
    display: flex;
    justify-content: center;
    background-color: skyblue;
    border-radius: 10px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.menu ul li {
    color: white;
    float: left;
    padding: 10px;
    list-style: none;
    font-weight: bold;
    transition: 0.3s;
}

.menu ul li a {
    text-decoration: none;
}

.menu ul li:hover {
    background-color: whitesmoke;
    border-radius: 350px;
    font-weight: bold;
    text-shadow: 0px 0px 1px;
}

.bungkus {
    display: flex;
    gap: 20px;
}

/* sidebar */

.sidebar {
    flex: 1;
    background-color: skyblue;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}

.sidebar h2 {
    margin-bottom: 15px;
    border-bottom: 2px solid #0077b6;
    padding-bottom: 5px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li a {
    font-size: 1.5em;
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    padding-left: 5px;
}

/* Konten */

.content {
    flex: 4;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.judul h1 {
    text-align: center;
    font-size: 2.1em;
    font-weight: bold;
    color: #111;
}

.content button {
    background: #ff5722;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.content button:hover {
    background: #e64a19;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    max-width: 280px;
}

.gallery-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 180px; 
}

.caption {
    padding: 15px;
    text-align: left;
}

.caption h3 {
    margin-top: 5px;
    font-size: 1.1em;
    font-weight: bold;
    color: #111;
}

.caption p {
    font-size: 0.9em;
    color: #555;
}


/* Rightbar */

.rightbar {
    flex: 1;
    background-color: skyblue;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);;
}

.rightbar h2 {
    margin-bottom: 15px;
    border-bottom: 2px solid #0077b6;
    padding-bottom: 5px;
}

.rightbar ul {
    list-style: none;
}

.rightbar ul li a {
    font-size: 1.5em;
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.rightbar ul li a:hover {
    padding-left: 5px;
}

.footer {
    margin-top: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, #090307, #ff5722);
    color: white;
    text-align: center;
    padding: 15px;
}