/*
Theme Name: Hospital Management Clone
Theme URI: https://example.com
Author: Custom
Description: Theme WordPress mirip demo Hospital Management
Version: 1.0
*/

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.site-header ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.site-header li a {
  font-weight: 600;
  color: #222;
}

.site-header li a:hover {
  color: #0d6efd;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("https://images.unsplash.com/photo-1586773860418-d37222d8fce3")
      center / cover no-repeat;
  padding: 120px 0;
  color: #fff;
  text-align: left;
}

.hero h1 {
  font-size: 42px;
  max-width: 600px;
}

.hero p {
  margin: 20px 0;
  max-width: 500px;
}

.btn-cta {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-cta:hover {
  background: #084298;
}

/* ================= SERVICES ================= */
.services {
  padding: 70px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.service-box {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.service-box h3 {
  margin-top: 15px;
  font-size: 18px;
}

/* ================= DOCTORS ================= */
.doctors {
  padding: 70px 0;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.doctor-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.doctor-card img {
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.doctor-card h3 {
  margin-top: 15px;
}

.doctor-card p {
  color: #0d6efd;
  font-size: 14px;
  margin-bottom: 15px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #0d6efd;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  margin-top: 60px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
  }

  .site-header ul {
    gap: 15px;
  }
}
.site-logo img {
  max-height: 55px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.main-nav a {
  font-weight: 600;
  color: #222;
}

.main-nav a:hover {
  color: #0d6efd;
}
/* ================= ARCHIVE ================= */
.archive-header {
  background: #f8f9fa;
  padding: 60px 0;
  margin-bottom: 50px;
}

.archive-title {
  font-size: 32px;
  text-align: center;
}

.archive-description {
  text-align: center;
  max-width: 600px;
  margin: 15px auto 0;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.archive-item {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.archive-thumb img {
  border-radius: 4px;
  margin-bottom: 15px;
}

.archive-item-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.archive-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.pagination {
  margin-top: 50px;
  text-align: center;
}
/* ================= FOOTER ================= */
.site-footer {
  background: #0d6efd;
  color: #fff;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 60px 0;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #fff;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background: rgba(0,0,0,0.15);
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-grid {
    text-align: center;
  }
}
/* ================= ABOUT ================= */
.about {
  padding: 70px 0;
}
/* ================= PAGE ================= */
.page-header {
  background: #f8f9fa;
  padding: 60px 0;
  margin-bottom: 40px;
}

.page-title {
  text-align: center;
  font-size: 32px;
}

.page-content {
  padding-bottom: 60px;
}

/* ================= SINGLE POST ================= */
.single-header {
  background: #f8f9fa;
  padding: 70px 0;
  margin-bottom: 50px;
}

.single-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
}

.single-meta {
  text-align: center;
  font-size: 14px;
  color: #777;
}

.single-content .single-thumbnail {
  margin-bottom: 30px;
}

.single-content img {
  border-radius: 6px;
}

.single-content .content {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

.single-content h2,
.single-content h3 {
  margin-top: 30px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
}

.footer-col i {
  margin-right: 8px;
  color: #e1306c; /* warna instagram */
}

.footer-col a.social-link {
  text-decoration: none;
  color: inherit;
}

.footer-col a.social-link:hover {
  color: #e1306c;
}
