/* Palet Warna Soft & Elegan */
:root {
    --primary-soft: #B0C4DE; /* Light Steel Blue */
    --secondary-soft: #F0F8FF; /* Alice Blue */
    --background-color: #FAFAFA; 
    --text-color: #333333; 
    --accent-soft: #DDA0DD; 
}

/* Base & Typography */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Tahoma', serif; 
    margin: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 20px 0;
}

/* Header & Navigasi: Logo di Tengah */
.header {
    background-color: var(--secondary-soft); 
    border-bottom: 1px solid var(--primary-soft);
    padding: 10px 0;
}

.nav-content {
    display: flex;
    justify-content: center; /* Memastikan logo di tengah */
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
	width: 25%;
    height: 25%; 
    object-fit: cover;
}

/* Galeri Foto: 3 Sejajar Horizontal */
.main-content {
    padding-top: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 200; 
	font-size: 2.0rem;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center;
}

.gallery-item {
    flex: 1 1 300px; 
    max-width: 350px;
}

/* Card Style */
.card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    height: 100%; 
}

.card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
	transform: scale(1.2);
	transition: transform 1.0s ease;
}

.card-img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
}

.card-text {
    padding: 15px;
    color: #666;
    font-size: 0.9rem;
}

/* Footer Style: Konten di Tengah */
.footer {
    background-color: var(--secondary-soft);
    border-top: 1px solid var(--primary-soft);
    text-align: center; /* CENTER LINE */
    padding: 20px 0;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* Media Query */
@media (max-width: 600px) {
    .nav-content {
        flex-direction: column;
        text-align: center;
    }
}