/* Press Page Custom Styles */

/* New Header Design */
.press-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.press-header .logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  color: #122c39;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-list a:hover {
  color: #4c85ac;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4c85ac;
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #122c39;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 10000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
}

.mobile-logo img {
  height: 35px;
  width: auto;
}

.mobile-close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #122c39;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  padding: 20px 0;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 15px 20px;
  color: #122c39;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f8f9fa;
  transition: background 0.3s ease;
}

.mobile-nav a:hover {
  background: #f8f9fa;
  color: #4c85ac;
}

.mobile-contact {
  padding: 20px;
  border-top: 1px solid #e9ecef;
}

.contact-email {
  display: block;
  color: #122c39;
  text-decoration: none;
  margin-bottom: 15px;
  font-weight: 500;
}

.mobile-social {
  display: flex;
  gap: 15px;
}

.mobile-social a {
  color: #122c39;
  font-size: 20px;
  transition: color 0.3s ease;
}

.mobile-social a:hover {
  color: #4c85ac;
}

/* Banner Section Overrides */
.banner-style-five {
  background: #f8f9fa !important;
  padding: 120px 0 60px 0 !important;
  min-height: auto !important;
  margin-top: 70px;
}

.banner-style-five .content-box {
  padding: 0 !important;
  text-align: center;
}

.banner-style-five .content-box h1 {
  font-size: 48px !important;
  line-height: 1.2 !important;
  color: #333 !important;
  margin-bottom: 15px !important;
}

.banner-style-five .content-box .hero-subtitle {
  font-size: 24px !important;
  color: #666 !important;
  margin-bottom: 10px !important;
  font-weight: 500 !important;
}

.banner-style-five .content-box .hero-tagline {
  font-size: 18px !important;
  color: #888 !important;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
}

/* Remove pattern layer */
.banner-style-five .pattern-layer {
  display: none !important;
}

/* Footer size reduction */
.footer-style-four {
  padding: 40px 0 20px 0 !important;
}

.footer-style-four .footer-top {
  padding-bottom: 30px !important;
}

.footer-style-four .footer-bottom {
  padding-top: 20px !important;
  border-top: 1px solid #e9ecef;
}

.footer-style-four .widget-title h3 {
  font-size: 18px !important;
  margin-bottom: 20px !important;
}

.footer-style-four .footer-widget {
  margin-bottom: 30px !important;
}

.footer-style-four .info-list li {
  margin-bottom: 10px !important;
  font-size: 14px !important;
}

.footer-style-four .footer-widget ul li {
  margin-bottom: 8px !important;
}

.footer-style-four .footer-widget ul li a {
  font-size: 14px !important;
}

.press-content {
  max-width: 1200px;
  margin: 0 auto;
}

.announcements-section {
  margin-bottom: 60px;
}

.announcements-section h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.announcements-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.announcements-list li {
  padding: 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  line-height: 1.6;
}

.announcements-list li:last-child {
  border-bottom: none;
}

.announcement-item-link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.announcement-item-link:hover {
  color: #f4b942;
  text-decoration: none;
  background: #f8f9fa;
  padding-left: 10px;
  border-radius: 5px;
}

.announcement-item-link strong {
  color: #f4b942;
  font-weight: 600;
  transition: color 0.3s ease;
}

.announcement-item-link:hover strong {
  color: #e6a83a;
}

.download-section {
  text-align: center;
  margin-top: 30px;
}

.press-contact-section {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  margin-top: 40px;
}

.press-contact-section h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.contact-photo {
  flex-shrink: 0;
}

.contact-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f4b942;
}

.contact-text {
  flex: 1;
}

.contact-text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.contact-email {
  margin-top: 25px;
}

.media-downloads-content {
  max-width: 1200px;
  margin: 0 auto;
}

.photos-section,
.logo-section {
  margin-bottom: 60px;
}

.photos-section h3,
.logo-section h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.photos-section p,
.logo-section p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.photo-item {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.photo-item:hover {
  transform: translateY(-5px);
}

.photo-link {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.photo-link:hover {
  text-decoration: none;
}

.photo-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.logo-item {
  text-align: center;
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
}

.logo-item img {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
}

.logo-item h4 {
  color: #333;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.logo-downloads {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.logo-downloads .download-btn {
  padding: 8px 16px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-container {
    padding: 0 15px;
  }
  
  .banner-style-five {
    padding: 100px 0 40px 0 !important;
  }
  
  .banner-style-five .content-box h1 {
    font-size: 36px !important;
  }
  
  .banner-style-five .content-box .hero-subtitle {
    font-size: 20px !important;
  }
  
  .banner-style-five .content-box .hero-tagline {
    font-size: 16px !important;
  }
  
  .contact-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-photo {
    align-self: center;
  }
  
  .photos-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-grid {
    grid-template-columns: 1fr;
  }
  
  .press-contact-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .banner-style-five .content-box h1 {
    font-size: 28px !important;
  }
  
  .banner-style-five .content-box .hero-subtitle {
    font-size: 18px !important;
  }
  
  .banner-style-five .content-box .hero-tagline {
    font-size: 14px !important;
  }
}
