/* RESET + BASE TYPOGRAPHY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'adobe-caslon-pro', serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* IMAGE SECTIONS */
.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.full-image, .split-image {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.overlay-text {
  position: absolute;
  top: 80%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 2.5em;
  font-weight: bold;
  color: rgb(0, 218, 207);
}

.text-cyan { color: rgb(0, 218, 207); }
.text-magenta { color: rgb(220, 105, 222); }
.text-blue { color: rgb(105, 154, 222); }

/* SECTION LAYOUTS */
.text-section, .highlight-section, .cta-section {
  width: 75%;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.text-section p,
.highlight-section p,
.split-section p,
.split-section.reverse p,
.cta-section p {
  color: rgb(129, 129, 129);
  font-size: 1.1rem;
  margin-bottom: 1em;
}

.intro-paragraph::first-letter {
  float: left;
  font-size: 4.5em;
  margin-right: 0.1em;
  line-height: 1;
}


.split-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 60px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.half-width {
  width: 100%;
  padding: 20px;
}

@media(min-width: 768px) {
  .half-width {
    width: 50%;
  }

  .overlay-text {
    font-size: 3em;
  }
}

/* BUTTON */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  font-size: calc(12px + 0.5vw);
  border: 2px solid rgb(139, 139, 139);
  color: black;
  background-color: rgba(231, 231, 231, 0.573);
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
}

/* FOOTER */
.footer {
  background-color: #f7f7f7;
  text-align: center;
  padding: 30px 10px;
  margin-top: 80px;
  border-top: 1px solid #ddd;
}

.footer p {
  color: #777;
  font-size: 0.9rem;
}

.social-media-icons {
  margin-bottom: 10px;
}

.social-media-icons a {
  color: #333;
  margin: 0 10px;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.social-media-icons a:hover {
  color: rgb(0, 218, 207);
}

