:root {
  --red: #cc0000;      /* NC State–style red */
  --black: #111111;
  --white: #ffffff;
  --gray: #f2f2f2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.header {
  background: var(--black);
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

nav a {
  color: var(--white);
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: var(--red);
}

/* Hero */
.hero {
  background: var(--red);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: var(--black);
  color: var(--white);
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.btn:hover {
  background: #000;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section.light {
  background: var(--gray);
}

.section.dark {
  background: var(--black);
  color: var(--white);
}

.section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

/* Services */
.services-list {
  list-style: none;
}

.services-list li {
  padding: 10px 0;
  border-bottom: 1px solid #444;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
