@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul, ol {
  list-style: none;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a {
  text-decoration-skip-ink: auto;
  text-decoration: none;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

section:nth-child(1) {
  --accent: hsl(180, 80%, 40%);
  background-color: hsl(180, 80%, 70%);
}
section:nth-child(1) h2 {
  background-color: hsl(180, 80%, 40%);
  color: hsl(180, 80%, 90%);
  text-shadow: hsla(180, 80%, 15%, 0.6) 2px 2px 2px;
}
section:nth-child(1) .image {
  background: hsl(180, 80%, 70%);
  background: linear-gradient(0deg, hsl(180, 80%, 70%) 49%, hsl(180, 80%, 40%) 51%);
}
section:nth-child(1) .button {
  background: hsl(180, 55%, 40%);
}
section:nth-child(1) a:not(.button) {
  color: hsl(180, 55%, 40%);
}

section:nth-child(2) {
  --accent: hsl(190, 60%, 61%);
  background-color: hsl(190, 60%, 70%);
}
section:nth-child(2) h2 {
  background-color: hsl(190, 60%, 61%);
  color: hsl(190, 60%, 90%);
  text-shadow: hsla(190, 60%, 15%, 0.6) 2px 2px 2px;
}
section:nth-child(2) .image {
  background: hsl(190, 60%, 70%);
  background: linear-gradient(0deg, hsl(190, 60%, 70%) 49%, hsl(190, 60%, 61%) 51%);
}
section:nth-child(2) .button {
  background: hsl(190, 55%, 40%);
}
section:nth-child(2) a:not(.button) {
  color: hsl(190, 55%, 40%);
}

section:nth-child(3) {
  --accent: hsl(180, 80%, 31%);
  background-color: hsl(180, 80%, 70%);
}
section:nth-child(3) h2 {
  background-color: hsl(180, 80%, 31%);
  color: hsl(180, 80%, 90%);
  text-shadow: hsla(180, 80%, 15%, 0.6) 2px 2px 2px;
}
section:nth-child(3) .image {
  background: hsl(180, 80%, 70%);
  background: linear-gradient(0deg, hsl(180, 80%, 70%) 49%, hsl(180, 80%, 31%) 51%);
}
section:nth-child(3) .button {
  background: hsl(180, 55%, 40%);
}
section:nth-child(3) a:not(.button) {
  color: hsl(180, 55%, 40%);
}

section:nth-child(4) {
  --accent: rgb(20, 126, 184);
  background-color: rgb(117, 196.5, 240);
}
section:nth-child(4) h2 {
  background-color: rgb(20, 126, 184);
  color: rgb(209, 235.5, 250);
  text-shadow: rgba(7.5, 47.25, 69, 0.6) 2px 2px 2px;
}
section:nth-child(4) .image {
  background: rgb(117, 196.5, 240);
  background: linear-gradient(0deg, rgb(117, 196.5, 240) 49%, rgb(20, 126, 184) 51%);
}
section:nth-child(4) .button {
  background: rgb(45.9, 118.4195121951, 158.1);
}
section:nth-child(4) a:not(.button) {
  color: rgb(45.9, 118.4195121951, 158.1);
}

body {
  background: rgb(227.4, 243.3, 252);
  color: hsl(180, 80%, 5%);
  font-family: "Nunito", sans-serif;
  display: flex;
  flex-direction: column;
  padding-inline: clamp(0.5rem, 3vw, 2rem);
}
body h1, body h2, body h3, body h4 {
  font-family: "Nunito", sans-serif;
}
body h1 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 400;
  color: rgb(20, 126, 184);
}
body h2 {
  font-size: clamp(1.5rem, 6vw, 3.5rem);
  font-weight: 700;
}
body p, body ul, body ol, body form {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-weight: 300;
}
body .button {
  cursor: pointer;
  display: block;
  width: fit-content;
  font-size: clamp(1rem, 3vw, 1.5rem);
  text-wrap: nowrap;
  border: none;
  text-transform: uppercase;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 1rem 2rem;
  color: rgb(227.4, 243.3, 252);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-block-start: 2rem;
}
header .button {
  background-color: rgb(20, 126, 184);
}
header .brand {
  text-wrap: balance;
}

main {
  display: grid;
  gap: 2rem;
  margin-block: 2rem;
}
main h2, main .content {
  padding: 1rem clamp(1rem, 3vw, 2rem);
}
main a {
  font-weight: 600;
}
main p {
  margin-block-end: 1rem;
}
main .image {
  border-top-left-radius: 1rem;
  border-top-right-radius: 2rem;
}
main .image img {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 2rem;
}
main section {
  display: grid;
  border-radius: 1rem 2rem;
}
main section p:last-child {
  margin-block-end: 0;
}
main section:not(:has(.image)) h2 {
  border-top-left-radius: 1rem;
  border-top-right-radius: 2rem;
}
@media (min-width: 1400px) {
  main section:last-child {
    grid-column: 1/span 2;
  }
}
@media (min-width: 800px) {
  main section h2 {
    border-top-left-radius: 1rem;
    border-top-right-radius: 2rem;
  }
  main section img {
    border-radius: 1rem 2rem;
  }
}
@media (min-width: 800px) and (min-width: 800px) {
  main section:has(.image:first-child) h2 {
    border-top-left-radius: 0;
  }
  main section:has(.image:first-child) .image {
    border-top-left-radius: 1rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: 2rem;
  }
}
@media (min-width: 800px) {
  main section:has(.image:last-child) h2 {
    border-top-right-radius: 0;
  }
  main section:has(.image:last-child) .image {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 2rem;
  }
}
@media (min-width: 1400px) {
  main {
    grid-template-columns: 5fr 4fr;
  }
}

#what-i-offer, #about {
  display: block;
}
@media (min-width: 800px) {
  #what-i-offer, #about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

#services {
  display: none;
  flex-direction: column;
}
#services .content {
  display: grid;
  gap: 1rem;
  flex-grow: 1;
}
@media (min-width: 900px) {
  #services .content {
    grid-template-columns: repeat(3, 1fr);
  }
}
#services .card {
  background-color: rgb(227.4, 243.3, 252);
  padding: 1rem;
  border-radius: 1rem 2rem;
}
#services .card h3 {
  display: flex;
  justify-content: space-between;
  padding-block-end: 0.5rem;
}
#services .card h3 .price {
  color: var(--accent);
}
#services .card h3 .price::before {
  content: "£";
  font-size: 0.8rem;
}
#services .card p, #services .card ul, #services .card ol {
  text-align: left;
  font-size: clamp(0.8rem, 2vw, 1rem);
}
#services .card ul {
  list-style-type: disc;
  margin-left: 1rem;
}
#services .card .duration {
  border-block: 1.5px solid var(--accent);
  text-align: center;
  line-height: 2;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-block-end: 0.5rem;
}

#book-now {
  display: block;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  #book-now {
    display: grid;
  }
}
#book-now h2 {
  grid-column: 1/span 2;
}
#book-now form {
  display: grid;
  gap: 1rem;
}
#book-now form .row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 650px) {
  #book-now form .row {
    flex-direction: row;
    gap: 1.5rem;
  }
}
#book-now form .row .input-group {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#book-now form .row .input-group.hidden {
  display: none;
}
#book-now form .row .input-group:has(#comments) {
  flex-direction: column;
  align-items: start;
}
#book-now form .row .input-group:has(#comments) #comments {
  min-height: 5rem;
  width: 100%;
}
#book-now form .row .input-group input, #book-now form .row .input-group select {
  flex-grow: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 1rem 2rem;
}
#book-now iframe {
  width: 100%;
  height: 300px;
}

footer {
  padding-block: 2rem;
  padding-inline: clamp(1rem, 3vw, 2rem);
  border-top-left-radius: 1rem;
  border-top-right-radius: 2rem;
  background-color: hsl(180, 80%, 40%);
  color: rgb(227.4, 243.3, 252);
  display: grid;
}
@media (min-width: 800px) {
  footer {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}
footer .col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
footer .brand {
  font-weight: 700;
}
footer ul {
  margin: 0;
}
footer ul li {
  display: flex;
  gap: 0.5rem;
  align-items: end;
}
footer ul .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 200, "opsz" 24;
}

#book-now iframe {
  margin-block: 1rem;
}

/*# sourceMappingURL=main.css.map */