/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafb;
  color: #222;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #1e40af; /* deep blue */
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav {
  margin-top: 10px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

/* Header Centering */
.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.header-center .logo {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: #2563eb; /* Blue background for better contrast */
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.3s;
}

.nav a:hover,
.nav a.active {
  background: #1e40af; /* Darker blue on hover/active */
}


.nav a:hover,
.nav a.active {
  background: #1d4ed8;
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6); /* Dark overlay for contrast */
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

/* Sections */
.section {
  padding: 50px 0;
}

.alt-bg {
  background: #eef2ff; /* very light blue for contrast */
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 30px;
  text-align: center;
  color: #1e40af;
}

/* Raid Grid + Cards */
.raid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  gap: 20px;
padding-left: 20px;
}

.raid-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.raid-card:hover {
  transform: translateY(-5px);
}

.raid-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  text-align: center;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1e3a8a;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1e40af;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #1d4ed8;
}

.btn.large {
  padding: 14px 28px;
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background: #1e40af;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.site-footer a {
  color: #fff; /* white links */
  text-decoration: none;
  margin: 0 5px;
}

.site-footer a:hover {
  color: #dbeafe; /* light blue on hover */
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
