/* Style definitions for Jordan McGee personal site */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #4b2e83;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

header .tagline {
  margin: 5px 0 0;
  font-size: 1rem;
  font-weight: normal;
  color: #f7c5d0;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #ffd8e1;
  margin-right: 15px;
  text-decoration: none;
  font-weight: bold;
}

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

#hero {
  background: #f7f0f5;
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1;
  min-width: 250px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4b2e83;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background: #4b2e83;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 10px;
}

.button.secondary {
  background: #e9a8c1;
  color: #fff;
}

.button:hover {
  opacity: 0.9;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 50%;
  border: 4px solid #e9a8c1;
}

section {
  padding: 60px 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4b2e83;
}

.service {
  margin-bottom: 20px;
}

.service h3 {
  font-size: 1.4rem;
  color: #e9a8c1;
  margin-bottom: 10px;
}

#gallery .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#gallery img {
  width: calc(33.333% - 20px);
  border-radius: 10px;
  border: 2px solid #e9a8c1;
}

#contact .button.secondary {
  margin-left: 10px;
}

footer {
  background: #4b2e83;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Contact form styles */
form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 4px;
  font-family: inherit;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
  #gallery img {
    width: 100%;
  }
}