body {
    font-family: Arial, sans-serif;
}

/* navbar */
nav {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    transition: 0.2 all ease-in;
}

.logo img {
    height: 50px;
    width: 50px;
}

.logo a {
    color: #000000;
    text-decoration:none;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight:600;
    text-align: center;
    align-content: center;
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 19px;
}

nav .nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.7rem;
}

nav .nav-links li {
    padding: 7px;
}

nav .nav-links a {
    padding: 0.5rem 0.5rem;
    color: black;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: 0.1s all ease;
}

nav .nav-links a:hover{
    background: rgb(63, 201, 35);
    color: white;
    border-radius: 6px;
    padding: 0.3rem 0.5rem;
}

/* Hero Section */
.page-hero--logout {
    background-image: url('../image/background-index.jpg');
}

.login-overlay{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gambar Latar Belakang Besar (Hero) */
.page-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full-screen untuk semua halaman */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Styling teks di hero */
.page-hero h1 {
    font-size: 4rem; /* Ukuran lebih besar seperti di Home */
    margin-bottom: 1rem;
    line-height: 110%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    font-size: 1.5rem; /* Ukuran lebih besar seperti di Home */
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.logout-grid{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 82%;
    padding-top: 3rem;
}

.hero-overlay-login h1,
.hero-overlay-login p{
    color: white;
}

.logout-to-login{
    margin-top: 1rem;
}

.logout-to-login a{
    border: 2px white solid;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 5px;
    transition: 0.1s;
    text-decoration: none;
    color: white;
}

.logout-to-login a:hover{
    background-color: white;
    cursor: pointer;
    color: black;
}

/* profil main */
.main-content{
    margin-top: 70px;
    
}

.live-chat-container {
    z-index: 1000;
}

.live-chat-container .btn-success {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.live-chat-container .card {
    transition: all 0.3s;
    border-radius: 10px;
}

.galeri .card-img-top {
    height: 200px;
    object-fit: cover;
}

.kontak .card, .kegiatan .card {
    min-height: 200px;
}



#chatMessages p {
    margin-bottom: 0.5rem;
}