/* Reset & Base */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Roboto', sans-serif;
  color: #e0e0e0;
  line-height: 1.6;
  background: #000000;
  text-align: center;
}

/* Typography */
h1, h2, h3 { font-family: 'Oswald', sans-serif; font-weight: 700; color: #ffffff; }
h1 { font-size: 4.2rem; }
h2 { font-size: 3rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.9rem; color: #ff0000; }

/* Header with centered logo + red glow hover */
header {
  background: #0a0a0a;
  padding: 1.5rem 2rem;
  text-align: center;
  border-bottom: 3px solid #ff0000;
  position: relative;
  z-index: 10;
}

header a {
  display: inline-block;
  transition: all 0.4s ease;
}

header img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 0 #ff0000);
}

header a:hover img {
  filter: drop-shadow(0 0 15px #ff0000) drop-shadow(0 0 30px #ff0000) drop-shadow(0 0 45px #ff0000);
  transform: scale(1.05);
}

/* Nav - centered */
nav {
  background: #111111;
  padding: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(255,0,0,0.2);
  text-align: center;
}

nav a {
  color: #ffffff;
  margin: 0 1.2rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  display: inline-block;
}
nav a:hover { color: #ff0000; }

/* Hero - centered content */
.hero {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://via.placeholder.com/1920x900/000000/FF0000?text=Hero+Background') center/cover;
  color: #ffffff;
  text-align: center;
  padding: 12rem 1rem 8rem;
}

.hero h1 { text-shadow: 4px 4px 15px rgba(255,0,0,0.6); margin-bottom: 1.2rem; }
.hero p { font-size: 1.5rem; max-width: 900px; margin: 0 auto 2.5rem; color: #dddddd; }

/* Search bar centered */
.search-bar {
  max-width: 750px;
  margin: 2.5rem auto;
  display: flex;
  justify-content: center;
}
.search-bar input {
  flex: 1;
  padding: 1.4rem;
  font-size: 1.3rem;
  border: 2px solid #333333;
  background: #1a1a1a;
  color: #fff;
  border-radius: 50px 0 0 50px;
}
.search-bar button {
  padding: 1.4rem 3rem;
  background: #ff0000;
  color: white;
  border: none;
  font-size: 1.3rem;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: all 0.3s;
}
.search-bar button:hover { background: #cc0000; transform: scale(1.05); }

/* CTA Buttons */
.cta-btn {
  display: inline-block;
  background: #ff0000;
  color: #ffffff;
  padding: 1.2rem 3rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.4s;
  box-shadow: 0 6px 20px rgba(255,0,0,0.4);
  margin: 0.5rem;
}
.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255,0,0,0.6);
  background: #cc0000;
}

/* Grids - centered */
.services, .gallery-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
}

/* Cards */
.service-card, .blog-card, .gallery-item {
  background: #111111;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #333333;
  transition: all 0.4s;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.service-card:hover, .blog-card:hover, .gallery-item:hover {
  transform: translateY(-12px);
  border-color: #ff0000;
  box-shadow: 0 15px 40px rgba(255,0,0,0.25);
}

/* Highlight / Contact / Footer - centered */
.highlight, #contact, footer {
  text-align: center;
}

.highlight div, footer p {
  max-width: 1000px;
  margin: 0 auto;
}

/* Responsive centering */
