/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Body */
body {
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background: #222;
    color: #fff;
    padding: 15px 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffcc00;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a.active,
nav ul li a:hover {
    color: #ffcc00;
}

/* Hero Section */
.header-top {
    text-align: center;
    padding: 50px 20px;
    background: #ffcc00;
    color: #222;
}

.site-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
}

/* Iklan Container */
.iklan-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.iklan-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding: 15px;
}

/* Membatasi ukuran gambar agar tidak besar */
.iklan-card img {
    width: 100%;
    max-height: 180px; /* Batas tinggi maksimal */
    object-fit: cover; /* Crop agar proporsional */
    border-radius: 10px 10px 0 0;
}

.iklan-card h2 {
    margin: 15px 0 10px;
    color: #222;
}

.iklan-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #222;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e6b800;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: #fff;
    font-size: 0.9rem;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsif untuk layar kecil */
@media (max-width: 500px) {
    .site-title {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .iklan-card img {
        max-height: 150px;
    }
}
