/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #2c3e50;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

header, footer {
  background-color: #f5f7fa;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

header h1 {
  font-size: 1.8rem;
  color: #007BFF;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

nav a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #007BFF;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #e8f0fe;
}

.hero h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  margin: 0.25rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: #e2e2e2;
}

.featured-hosts .host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.host-card {
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}

.host-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.categories .category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials {
  background-color: #f9fbfd;
  padding: 3rem 2rem;
  text-align: center;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  list-style: none;
  font-weight: bold;
}

blockquote {
  font-style: italic;
  margin-top: 1rem;
  color: #555;
}

.read-more {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #eef4fa;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

footer nav {
  margin-top: 0.5rem;
}

footer nav a {
  margin: 0 0.5rem;
  color: #666;
  text-decoration: none;
}

footer nav a:hover {
  color: #007BFF;
}

@media (max-width: 600px) {
  .hero h2 {
    font-size: 2rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Center Header Content */
header {
    display: flex;
    justify-content: space-between; /* space between logo and nav */
    align-items: center;
    padding: 15px 20px;
    background-color: #fff; /* adjust as needed */
}

header h1, header .logo {
    margin: 0;
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #0073e6; /* hover color */
}

/* Mobile Responsive Menu */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}







