/* ============================================
   PNHZ CLONE — Global Styles
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00609c;
  --primary-dark: #004470;
  --accent: #00a5e3;
  --dark: #1a1a2e;
  --body-bg: #f5f6f8;
  --white: #ffffff;
  --text: #333333;
  --text-light: #777777;
  --border: #e0e0e0;
  --footer-bg: #1b2838;
  --menu-bg: #00609c;
  --news-date: #00a5e3;
  --shadow: 0 2px 12px rgba(0, 0, 0, .08);
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============================================
   HEADER
   ============================================ */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.lang-selector ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

.lang-selector a {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  border-radius: 3px;
  transition: all var(--transition);
  letter-spacing: .5px;
}

.lang-selector a:hover,
.lang-selector a.active {
  color: var(--white);
  background: var(--primary);
}

.site-description span {
  font-size: 11px;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.header-center {
  flex: 0 0 auto;
  text-align: center;
}

.header-logo img {
  height: 70px;
  width: auto;
  margin: 0 auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}

.press-links ul {
  list-style: none;
  display: flex;
  gap: 18px;
}

.press-links a {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
  white-space: nowrap;
}

.press-links a:hover {
  color: var(--accent);
}

.top-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--body-bg);
  color: var(--text-light);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-size: 14px;
}

.icon-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  background: var(--menu-bg);
  position: relative;
  z-index: 90;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: stretch;
}

.nav-list>li {
  position: relative;
}

.nav-list>li:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .25);
}

.nav-list>li>a {
  display: block;
  padding: 14px 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  white-space: nowrap;
  transition: background var(--transition);
}

.nav-list>li>a:hover,
.nav-list>li:hover>a {
  background: var(--primary-dark);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
  border-radius: 0 0 4px 4px;
  z-index: 200;
  list-style: none;
  padding: 6px 0;
}

.nav-list>li:hover>.dropdown-menu {
  display: block;
  animation: fadeDown .25s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--text);
  transition: all var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--body-bg);
  color: var(--primary);
  padding-left: 24px;
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
  position: relative;
  overflow: hidden;
  max-height: 460px;
}

.carousel-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 40, 70, .85));
  padding: 60px 40px 30px;
}

.carousel-caption p {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  max-width: 600px;
  line-height: 1.5;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  list-style: none;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.carousel-indicators li.active {
  background: var(--white);
  border-color: var(--accent);
  transform: scale(1.15);
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(50%);
  z-index: 10;
  pointer-events: none;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: all var(--transition);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--primary);
}

/* ============================================
   PARTNER / DZO ICONS ROW
   ============================================ */
.dzo-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 25px 0;
}

.dzo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.dzo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 8px;
}

.dzo-item:hover {
  background: var(--body-bg);
  transform: translateY(-2px);
}

.dzo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.dzo-item:hover .dzo-icon {
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 165, 227, .3);
}

.dzo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.dzo-item p {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
  max-width: 140px;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  padding: 40px 0;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* News Preview (left large card) */
.news-preview {
  background: var(--white);
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.news-preview-photo {
  height: 240px;
  overflow: hidden;
}

.news-preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.news-preview:hover .news-preview-photo img {
  transform: scale(1.03);
}

.news-preview-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-preview-date {
  color: var(--news-date);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-preview-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-preview-title a {
  color: var(--text);
}

.news-preview-title a:hover {
  color: var(--primary);
}

.news-preview-content {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

/* News List (right column) */
.news-list {
  background: var(--white);
  border-radius: 0 6px 6px 0;
  box-shadow: var(--shadow);
  overflow-y: auto;
  max-height: 550px;
}

.news-list::-webkit-scrollbar {
  width: 4px;
}

.news-list::-webkit-scrollbar-track {
  background: var(--body-bg);
}

.news-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.news-item {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  cursor: pointer;
}

.news-item:hover {
  background: var(--body-bg);
}

.news-item:last-child {
  border-bottom: none;
}

.news-item-photo {
  width: 90px;
  height: 65px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-body {
  flex: 1;
  min-width: 0;
}

.news-item-date {
  font-size: 11px;
  color: var(--news-date);
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-item-date .cam-icon {
  font-size: 10px;
}

.news-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item-title a {
  color: var(--text);
}

.news-item-title a:hover {
  color: var(--primary);
}

.all-news-link {
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--body-bg);
  border-top: 1px solid var(--border);
  transition: all var(--transition);
}

.all-news-link:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   MEDIA COLUMNS (Photo / Video / Press)
   ============================================ */
.media-section {
  padding: 0 0 40px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.media-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.media-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.media-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.media-card:hover .media-card-header img {
  transform: scale(1.05);
}

.media-card-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  letter-spacing: .5px;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 96, 156, .85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.play-overlay::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 3px;
}

.media-card:hover .play-overlay {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.media-card-body {
  padding: 14px 16px;
}

.media-card-date {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.media-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-card-title a {
  color: var(--text);
}

.media-card-title a:hover {
  color: var(--primary);
}

/* ============================================
   HALL OF FAME + BANNER ROW
   ============================================ */
.extras-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  margin-top: 30px;
}

.hall-of-fame {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.hall-of-fame .section-title {
  font-size: 16px;
  margin-bottom: 16px;
}

.hall-person {
  display: flex;
  gap: 14px;
}

.hall-person img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.hall-person-info {
  flex: 1;
}

.hall-person-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.hall-person-date {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.hall-person-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.banner-area {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 200px;
}

/* External Links Banners */
.external-links {
  text-align: center;
  padding: 30px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ext-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.ext-link-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.ext-link-item img {
  height: 50px;
  width: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, .7);
  padding: 40px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  display: none;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 40, 70, .92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.search-overlay.active {
  display: flex;
}

.search-overlay-inner {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.search-overlay input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, .4);
  color: var(--white);
  font-size: 24px;
  padding: 16px 0;
  outline: none;
  font-family: inherit;
}

.search-overlay input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.search-close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  transition: opacity var(--transition);
}

.search-close-btn:hover {
  opacity: .7;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 500;
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 600;
  overflow-y: auto;
  transition: left .3s ease;
  box-shadow: 4px 0 24px rgba(0, 0, 0, .15);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  padding: 20px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  list-style: none;
  padding: 10px 0;
}

.mobile-nav li a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.mobile-nav li a:hover {
  background: var(--body-bg);
  color: var(--primary);
  padding-left: 30px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .extras-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .header-row {
    gap: 10px;
  }

  .site-description {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-left {
    gap: 10px;
  }

  .press-links {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .carousel-slide img {
    height: 260px;
  }

  .hero-carousel {
    max-height: 260px;
  }

  .carousel-caption p {
    font-size: 13px;
  }

  .carousel-caption {
    padding: 40px 20px 20px;
  }

  .external-links {
    gap: 15px;
  }

  .ext-link-item {
    height: 60px;
    padding: 8px 12px;
  }

  .ext-link-item img {
    height: 35px;
  }

  .dzo-row {
    gap: 20px;
  }
}