body { font-family: 'Segoe UI', sans-serif; margin: 0; padding: 0; background-color: #f8f9fa; color: #333; }
a { text-decoration: none; color: inherit; }
.container { width: 85%; max-width: 1200px; margin: auto; overflow: hidden; }

/* Header */
header { background: #003366; color: #fff; padding: 15px 0; border-bottom: 4px solid #d9534f; }
header h1 { float: left; margin: 0; font-size: 24px; }
header nav { float: right; margin-top: 5px; }
header li { float: left; display: inline; margin-left: 20px; }
header a { color: #fff; font-weight: bold; font-size: 15px; }
header a:hover { color: #d9534f; }

/* Main Content */
.main-content { padding: 30px; background: #fff; margin-top: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); min-height: 500px; border-radius: 5px; }

/* Footer */
footer { background: #333; color: #ccc; text-align: center; padding: 20px; margin-top: 40px; }

/* Slider (Manşet) */
.slider-container { position: relative; width: 100%; height: 400px; overflow: hidden; margin-bottom: 30px; border-radius: 5px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.caption { position: absolute; bottom: 0; background: rgba(0,0,0,0.6); color: #fff; width: 100%; padding: 20px; box-sizing: border-box; }
.caption h2 { margin: 0; font-size: 24px; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.blog-card { border: 1px solid #eee; border-radius: 5px; overflow: hidden; transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-info { padding: 15px; }
.blog-info h3 { margin: 0 0 10px; font-size: 18px; color: #003366; }
.blog-date { font-size: 12px; color: #888; margin-bottom: 10px; display: block; }
.btn-read { display: inline-block; background: #d9534f; color: #fff; padding: 5px 10px; border-radius: 3px; font-size: 13px; margin-top: 10px; }

/* Galeri Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; transition: 0.3s; cursor: pointer; }
.gallery-item img:hover { transform: scale(1.05); }

/* Form & Admin */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
.btn { background: #003366; color: #fff; padding: 10px 20px; border: none; cursor: pointer; border-radius: 4px; }
.btn-danger { background: #d9534f; }
.admin-header { background: #2c3e50; border-bottom: none; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
table th, table td { border: 1px solid #ddd; padding: 12px; text-align: left; }
table th { background: #f1f1f1; }
.alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; }
.alert-success { background-color: #d4edda; color: #155724; border-color: #c3e6cb; }