body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #000000;
}
header {
  background: linear-gradient(135deg, #800000, #000000);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
nav h1 { color: #C0C0C0; font-size: 1.8rem; }
nav ul { list-style: none; display: flex; gap: 1.5rem; }
nav a { color: white; text-decoration: none; font-weight: bold; }
.hero { margin-top: 2rem; }
.hero h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.hero .cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background: #C0C0C0;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
}
section { padding: 3rem 2rem; }
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  border: 1px solid #C0C0C0;
  border-radius: 10px;
  padding: 1rem;
  background-color: #f8f8f8;
  text-align: center;
  cursor: pointer;
}
.card img, .card video {
  width: 100%;
  border-radius: 10px;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.about-content img {
  width: 180px;
  border-radius: 100px;
}
.btn {
  padding: 0.6rem 1.4rem;
  background: #800000;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}
footer {
  background: #000000;
  color: #C0C0C0;
  text-align: center;
  padding: 1rem;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid #800000;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
}
.modal-content h3 {
  margin-top: 0;
  color: #800000;
}
.close {
  color: #000;
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}


.hero {
  position: relative;
  background: linear-gradient(135deg, #800000, #000000);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-headshot {
  width: 150px;
  border-radius: 20%;
  border: 5px solid #C0C0C0;
  margin-bottom: 1rem;
}

/* Dynamic background animation */
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(192,192,192,0.15) 0%, transparent 70%);
  animation: rotateBackground 10s linear infinite;
  z-index: 0;
}

@keyframes rotateBackground {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero * {
  position: relative;
  z-index: 1;
}


/* Smooth transition for links, buttons, and cards */
a, .btn, .card {
  transition: all 0.3s ease-in-out;
}

a:hover, .btn:hover {
  background-color: #000000;
  color: #C0C0C0;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}


.learn-more-banner {
  background-color: #800000;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.learn-more-banner h3 {
  margin-top: 0;
  font-size: 2.2rem;
  font-weight: bold;
}

.learn-more-banner p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 1rem auto;
}

.learn-more-banner a {
  color: #C0C0C0;
  text-decoration: underline;
}

.learn-more-banner .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: #C0C0C0;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.learn-more-banner .btn:hover {
  background: #000;
  color: #C0C0C0;
}

