/* Grayscale Theme */
:root {
  --dark-gray: #424242;
  --light-gray: #FAFAFA;
  --medium-gray: #686868;
  --deep-gray: #292929;
  --almost-black: #131313;
}

/* Intro Section */
.intro {
  text-align: center;
  background-color: var(--deep-gray);
  padding: 5px;
  font-size: 18px;
}

.intro-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2rem;
  font-style: bold;
  text-align: center;
  color: var(--light-gray);
  line-height: 1.4;
  margin: 20px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  border-left: 4px solid var(--deep-gray);
}

/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: var(--almost-black);
  color: var(--light-gray);
}

h1, h2 {
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--light-gray);
}

a:hover {
  color: var(--medium-gray);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-gray);
  padding: 10px 5%;
}

.title h1 {
  font-size: 24px;
}

.title p {
  font-size: 12px;
  color: var(--medium-gray);
}

.social-icons img {
  width: 30px;
  margin-left: 10px;
  transition: transform 0.2s ease-in-out;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Content Section */
.content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 5%;
  gap: 20px;
}

.content-section img {
  width: 45%;
  height: auto;
  border-radius: 8px;
}

.text-content {
  width: 50%;
}

.text-content h2 {
  font-size: 28px;
  color: var(--light-gray);
}

.text-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--medium-gray);
}

/* Reverse layout: text left, image right */
.content-section.reverse {
  flex-direction: row-reverse;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.btn {
  background-color: var(--dark-gray);
  color: var(--light-gray);
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--medium-gray);
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: var(--dark-gray);
  font-size: 14px;
}
