/*
 Theme Name:   Astra Child
 Theme URI:    https://wisatahalaltravel.my.id/
 Description:  Astra child theme for Wisata Halal Travel
 Author:       WisataHalalTravel
 Author URI:   https://wisatahalaltravel.my.id/
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  astra-child
*/

/* ============================================
   GALLERY SECTION
   ============================================ */
.wh-gallery-section {
  background: #f0f7ff;
  padding: 80px 0;
}
.wh-gallery-section .wh-section-head {
  text-align: center;
  margin-bottom: 50px;
}
.wh-gallery-section .wh-eyebrow {
  display: inline-block;
  background: #1a56db;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.wh-gallery-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}
.wh-gallery-section .wh-section-desc {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}
.wh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.wh-gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.wh-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.wh-gallery-card .wh-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.wh-gallery-card .wh-card-body {
  padding: 18px 20px;
}
.wh-gallery-card .wh-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 6px;
}
.wh-gallery-card .wh-card-meta {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 12px;
}
.wh-gallery-card .wh-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #1a56db;
  text-decoration: none;
}
.wh-gallery-card .wh-card-link:hover {
  text-decoration: underline;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.wh-video-section {
  background: #fff;
  padding: 80px 0;
}
.wh-video-section .wh-section-head {
  text-align: center;
  margin-bottom: 50px;
}
.wh-video-section .wh-eyebrow {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.wh-video-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}
.wh-video-section .wh-section-desc {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}
.wh-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.wh-video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.wh-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.wh-video-card .wh-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.wh-video-card .wh-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wh-video-card .wh-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.wh-video-card:hover .wh-play-btn {
  background: #dc2626;
  transform: translate(-50%, -50%) scale(1.1);
}
.wh-video-card .wh-play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 4px;
}
.wh-video-card .wh-yt-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.wh-video-card .wh-card-body {
  padding: 16px 20px;
}
.wh-video-card .wh-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 6px;
}
.wh-video-card .wh-card-meta {
  font-size: 13px;
  color: #94a3b8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .wh-gallery-grid,
  .wh-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .wh-gallery-grid,
  .wh-video-grid {
    grid-template-columns: 1fr;
  }
  .wh-gallery-section,
  .wh-video-section {
    padding: 50px 0;
  }
  .wh-gallery-section h2,
  .wh-video-section h2 {
    font-size: 24px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.wh-hero {
  background: linear-gradient(135deg, #1a56db 0%, #0f3d91 100%);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}
.wh-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.wh-hero-tagline {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.wh-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 18px;
  line-height: 1.2;
}
.wh-hero p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0 0 30px;
}
.wh-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.wh-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.wh-btn-primary {
  background: #1a56db;
  color: #fff;
}
.wh-btn-primary:hover {
  background: #1648b8;
}
.wh-btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.wh-btn-whatsapp:hover {
  background: #1ebe5d;
}
.wh-btn-outline {
  background: transparent;
  color: #1a56db;
  border: 2px solid #1a56db;
}
.wh-btn-outline:hover {
  background: #1a56db;
  color: #fff;
}
.wh-btn-outline-sm {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #1a56db;
  border: 1.5px solid #1a56db;
  transition: all 0.3s ease;
}
.wh-btn-outline-sm:hover {
  background: #1a56db;
  color: #fff;
}
.wh-eyebrow {
  display: inline-block;
  background: #1a56db;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* ============================================
   STATS SECTION
   ============================================ */
.wh-stats {
  background: #fff;
  padding: 80px 20px;
}
.wh-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wh-stats .wh-section-head {
  text-align: center;
  margin-bottom: 50px;
}
.wh-stats h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px;
}
.wh-stats p {
  color: #64748b;
  font-size: 16px;
  margin: 0 0 20px;
}
.wh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.wh-stat-item h3 {
  font-size: 40px;
  font-weight: 700;
  color: #1a56db;
  margin: 0 0 6px;
}
.wh-stat-item p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.wh-destinations {
  background: #f8fafc;
  padding: 80px 20px;
}
.wh-dest-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wh-destinations .wh-section-head {
  text-align: center;
  margin-bottom: 50px;
}
.wh-destinations h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px;
}
.wh-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wh-dest-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.wh-dest-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.wh-dest-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin: 16px 18px 6px;
}
.wh-dest-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0 18px 18px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.wh-about {
  background: #fff;
  padding: 80px 20px;
}
.wh-about-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.wh-about .wh-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.wh-about h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}
.wh-about-content {
  text-align: center;
}
.wh-about-content > p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 24px;
}
.wh-about-features {
  margin-top: 40px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.wh-about-features h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
}
.wh-about-features > p {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 16px;
}
.wh-about-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wh-about-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: #334155;
}
.wh-about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.wh-news {
  background: #f0f7ff;
  padding: 80px 20px;
}
.wh-news-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wh-news .wh-section-head {
  text-align: center;
  margin-bottom: 50px;
}
.wh-news h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}
.wh-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wh-news-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.wh-news-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
}
.wh-news-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 18px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.wh-team {
  background: #fff;
  padding: 80px 20px;
}
.wh-team-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.wh-team .wh-section-head {
  text-align: center;
  margin-bottom: 50px;
}
.wh-team h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}
.wh-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.wh-team-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 30px 20px;
}
.wh-team-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 6px;
}
.wh-team-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ============================================
   TESTIMONI SECTION
   ============================================ */
.wh-testimoni {
  background: #f8fafc;
  padding: 80px 20px;
}
.wh-testi-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wh-testimoni .wh-section-head {
  text-align: center;
  margin-bottom: 50px;
}
.wh-testimoni h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}
.wh-testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wh-testi-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  text-align: center;
}
.wh-testi-card img {
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.wh-testi-card h4 {
  font-size: 12px;
  color: #1a56db;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px;
}
.wh-testi-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 10px;
}
.wh-testi-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.wh-cta {
  background: linear-gradient(135deg, #1a56db 0%, #0f3d91 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}
.wh-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.wh-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 14px;
}
.wh-cta p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 30px;
  line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.wh-faq {
  background: #fff;
  padding: 80px 20px;
}
.wh-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.wh-faq .wh-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.wh-faq h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}
.wh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wh-faq-item {
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.wh-faq-item summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
}
.wh-faq-item summary::before {
  content: "+ ";
  color: #1a56db;
  font-weight: 700;
}
.wh-faq-item[open] summary::before {
  content: "− ";
}
.wh-faq-item p {
  padding: 0 24px 18px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   ARTICLES SECTION
   ============================================ */
.wh-articles {
  background: #f8fafc;
  padding: 80px 20px;
}
.wh-articles-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wh-articles .wh-section-head {
  text-align: center;
  margin-bottom: 50px;
}
.wh-articles h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.wh-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wh-article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.wh-article-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.wh-article-card .wh-card-body {
  padding: 18px 20px;
}
.wh-article-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 6px;
}
.wh-article-card h3 a {
  color: inherit;
  text-decoration: none;
}
.wh-article-card h3 a:hover {
  color: #1a56db;
}
.wh-article-card .wh-card-meta {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 10px;
}
.wh-article-card .wh-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #1a56db;
  text-decoration: none;
}
.wh-article-card .wh-card-link:hover {
  text-decoration: underline;
}
