/*
Theme Name: Astra Child Theme - KickOff Pulse
Template: astra
*/

/* Load Font Awesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

/* Base Styles */
body {
  font-family: 'Open Sans', 'Lato', sans-serif;
  font-size: 16px;
  color: #000000;
  background-color: #FFFFFF;
  line-height: 1.6;
}

a {
  color: #FFFFFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  color: #000000;
  font-weight: bold;
  margin-bottom: 0.5em;
}

/* Sticky Top Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.site-header .ast-site-identity {
  font-size: 1.8em;
  color: #FFFFFF;
  font-weight: bold;
}

.site-header .main-header-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-header .ast-header-custom-item button {
  background-color: #E30613;
  color: #FFFFFF;
  border: none;
  padding: 6px 14px;
  margin-left: 10px;
  border-radius: 3px;
  cursor: pointer;
}

/* Hero Banner */
.hero-banner {
  background-color: #F7F7F7;
  text-align: center;
  padding: 90px 30px;
  border-bottom: 4px solid #E30613;
}

.hero-banner h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero-banner .cta-button {
  background-color: #E30613;
  color: #FFFFFF;
  padding: 12px 24px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
}

/* News Feed */
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 20px;
}

.news-item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 15px;
}

.news-item img {
  width: 150px;
  height: auto;
  object-fit: cover;
}

.news-item .content {
  flex: 1;
}

.news-item .meta {
  font-size: 0.85em;
  color: #666666;
}

/* Category Headings */
.category-section h2 {
  margin-bottom: 15px;
  border-left: 4px solid #E30613;
  padding-left: 10px;
}

/* Article Page */
.article-title {
  font-size: 2.2em;
  margin: 20px 0;
}

.article-meta {
  font-size: 0.9em;
  color: #777;
  display: flex;
  gap: 10px;
  align-items: center;
}

.featured-image {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.article-content {
  padding: 20px;
  font-size: 1.05em;
}

.article-content blockquote {
  border-left: 4px solid #FFFFFF;
  padding-left: 15px;
  font-style: italic;
  color: #FFFFFF;
}

.action-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

/* Match Center */
.match-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #F7F7F7;
  padding: 15px 20px;
}

.match-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #FFFFFF;
  border: 1px solid #DDD;
  border-radius: 5px;
}

.match-item .teams {
  display: flex;
  align-items: center;
  gap: 10px;
}

.match-item .score {
  font-weight: bold;
}

/* Footer */
.site-footer {
  background-color: #2D2D2D;
  color: #FFFFFF;
  padding: 40px 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column h4 {
  color: #FFD700;
  margin-bottom: 10px;
}

.footer-column a {
  color: #FFFFFF;
  display: block;
  margin-bottom: 5px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social-icons i {
  color: #FFD700;
  font-size: 1.4em;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header .main-header-menu {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
    font-size: 24px;
  }

  .news-item {
    flex-direction: column;
  }
}

/* Utility Classes */
.black { color: #000000; }
.bg-gray { background-color: #F7F7F7; }
.cta-yellow { background-color: #FFD700; color: #000000; }
