@import url('https://fonts.googleapis.com/css2?family=Anton&family=Chelsea+Market&family=Inter:wght@400;500;600&display=swap');

:root {
  --blue: #6dc7ee;
  --off-white: #fafafa;
  --pale-grey: #eaeaee;
  --black: #000000;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--pale-grey);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav {
  display: flex;
  gap: 24px;
  flex: 1;
}

.header-nav a {
  font-family: 'Chelsea Market', cursive;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--white);
  padding-bottom: 3px;
}

.header-nav a.active {
  border-bottom: 1px solid var(--white);
}

.header-logo {
  flex: 1;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
}

.header-social {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.header-social a {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.header-social svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chelsea Market', cursive;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--black);
  background: var(--off-white);
  border-radius: 300px;
  padding: 16px 34px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
}

/* Hero */

.hero {
  background: var(--blue);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-cover img {
  max-width: 560px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.25));
}

.hero-text {
  text-align: right;
}

.hero-text h1 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 28px;
}

.hero-text h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -0.3px;
  margin: 0 0 36px;
}

.hero-text .btn {
  padding: 18px 40px;
  font-size: 14px;
}

/* Description section */

.description {
  background: var(--off-white);
  padding: 110px 0;
  text-align: center;
}

.description .container {
  max-width: 820px;
}

.description p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: #1a1a1a;
}

.description .emphasis {
  font-weight: 600;
  font-size: 19px;
  margin: 40px 0;
}

.description .btn {
  margin-top: 10px;
}

/* About section */

.about {
  background: var(--blue);
  padding: 120px 0;
}

.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-photo img {
  border-radius: 50%;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto;
}

.about-content h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.5px;
  margin: 0 0 26px;
}

.about-content p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.about-content .title-repeat {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(22px, 3vw, 30px);
  margin: 34px 0 24px;
}

/* Call to action */

.cta {
  background: var(--off-white);
  padding: 100px 0;
  text-align: center;
}

.cta .container {
  max-width: 640px;
}

.cta h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--black);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}

.cta p {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 32px;
}

/* Footer */

footer {
  background: var(--blue);
  padding: 50px 0 60px;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-social a {
  width: 22px;
  height: 22px;
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

/* Mobile */

@media (max-width: 900px) {
  header {
    padding: 20px;
    flex-wrap: wrap;
  }

  .header-nav {
    order: 3;
    flex: 0 0 100%;
    justify-content: center;
    margin-top: 14px;
  }

  .hero {
    padding-top: 160px;
  }

  .hero .container,
  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .about-content {
    text-align: center;
  }
}
