/* Basic Styles for Hughes Dental Static Site */

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

/* Body */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #333;
}

/* Header Top Bar */
header {
  background: #2e86aa;
  color: white;
  font-size: 0.9rem;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

nav a {
  color: #333;
  text-decoration: none;
  margin: 0 1rem;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
section.hero {
  background: #2e86aa;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

/* General Sections */
section {
  padding: 4rem 1rem;
  text-align: center;
}

section:nth-of-type(even) {
  background: #f7f7f7;
}

/* Buttons */
a.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #2e86aa;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  margin: 0.5rem;
}

a.button:hover {
  background: #216d8d;
}

/* Footer */
footer {
  background: #2e86aa;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}
