/*
Theme Name: SEO Bunker
Theme URI: https://seobunker.com
Author: Your Name or Agency
Description: Custom WordPress theme for SEO Bunker based on a dark bunker-inspired design with modern layout and SEO service focus.
Version: 1.0
*/

/* Basic Reset and Fonts */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0e1a26;
  color: #ffffff;
}

a {
  color: #ff6a00;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Navigation Bar */
nav {
  background-color: #0a141e;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  color: #ffffff;
  margin-left: 1rem;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: #12202f;
  text-align: center;
  padding: 6rem 2rem;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero .cta-button {
  background-color: #ff6a00;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
}

/* Services Section */
.services {
  padding: 4rem 2rem;
  background-color: #12202f;
}
.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-box {
  background-color: #1c2b3a;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

/* Testimonials */
.testimonials {
  background-color: #0e1a26;
  padding: 4rem 2rem;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonial {
  background-color: #1c2b3a;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #0a141e;
  color: #aaa;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
