/* --- Reset --- */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  background-color: #ebebee;
  color: black;
  padding-top: 102px;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #999;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

p {
  font-size: 20px;
}

a:hover,
input,
textarea,
select,
button {
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0px;
  font-family: "Inter", sans-serif;
}

/* --- Variables --- */
:root {
  --main-bg-color: #000;
  --main-bg-color-hov: #666;
  --main-bg-text-color: #fff;
  --main-bg-text-color-hov: #fff;
}

/* --- Main styles --- */
.inner {
	max-width: 1400px;
	width: 100%;
	display: block;
	margin: 0 auto;
}


nav {
  background-color: white;
  padding: 20px 0;
  border-bottom: 2px solid #470066;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
}

nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .inner .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

nav .inner .contact a {
  color: black;
  text-decoration: none;
}

nav .inner .contact a:hover {
  text-decoration: underline;
}

nav .inner .contact a i {
  color: #470066;
  margin-left: 5px;
}

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

.hero {
  background-image: url('assets/poppy-header.webp');
  background-image: image-set(
    url('assets/poppy-header.webp') type('image/webp'),
    url('assets/poppy-header.png') type('image/png'));
  min-height: 450px;
  height: 70vh;
  background-position: center;
  background-size: cover;
  padding: 0 !important;
}

.hero .cover {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2;
}

.hero .cover .inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  width: 100%;
  flex-direction: column;
}

.hero h1 {
  font-size: calc(20px + 4vw);
  text-wrap: balance;
}

.hero h1 strong {
  color: #EDC9FF;
}

.hero .enquire {
  margin-top: 50px;
  padding: 20px 40px;
  border-radius: 5px;
  background-color: #470066;
  color: white;
  text-decoration: none;
  outline: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.hero .enquire:hover {
  background-color: #220030;
}

h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.welcome p {
  font-size: 20px;
}

section {
  padding: 150px 0;
}

.aboutMe {
  background-color: white;
}

.expandable-section {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.title {
  background-color: #f1f1f1;
  padding: 20px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
}

.content {
  padding: 20px;
  display: none;
  border-top: 1px solid #ccc;
  background-color: white;
  font-size: 20px;
}

.expendables {
  margin-top: 30px;
}

p + p {
  margin-top: 20px;
}

ul {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 60px;
  font-size: 20px;
}

.whyChooseUs {
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.cards .card {
  flex-basis: 350px;
  background-color: white;
  border: solid 1px #ccc;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}

.cards .card h3 {
  font-size: 22px;
  margin-top: 20px;
  color: #4e4e4e;
}

.cards .card a {
  margin-top: 20px;
  color: #470066;
  display: inline-block;
}

.contactForm {
  text-align: center;
}

.contactFormEl {
  display: block;
  margin: 30px auto;
  text-align: left;
  max-width: 600px;
  width: 100%;
}

form input[type="text"], form input[type="email"], form input[type="tel"], form textarea {
  width: 100%;
  padding: 20px;
  border: solid 1px #ccc;
  font-size: 20px;
  border-radius: 3px;
  margin: 0 auto;
}

form textarea {
  height: 250px;
  resize: none;
}

form label {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 5px;
  display: block;
}

form button {
  margin-top: 20px;
  padding: 20px 40px;
  border-radius: 5px;
  background-color: #470066;
  color: white;
  text-decoration: none;
  outline: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
}

form button:hover {
  background-color: #220030;
}



footer {
  background-color: #470066;
  color: white;
}

footer .logo {
  font-size: 24px;
  font-weight: bold;
  padding: 30px 0;
}

footer a {
  color: white;
}

footer .columns {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-bottom: 50px;
  padding-top: 20px;
}

footer .columns .col {
  flex: 1;
}

footer .columns .col .heading {
  font-size: 20px;
  font-weight: bold;
}

footer .columns .col .desc {
  font-size: 18px;
  margin-top: 3px;
}

footer .bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  border-top: solid 1px #EDC9FF;
}

footer .socLinks {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

footer .socLinks a {
  text-decoration: none;
}

footer .socLinks a i {
  font-size: 40px;
}

h2 {
  color: #470066;
}

.looksLikeLink {
  background: none;
  border: none;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.prices {
  text-align: center;
}

.prices .inner .holder {
  display: flex;
  gap: 50px;
  margin-top: 30px;
}

.prices .inner .card {
  flex: 1;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
  background-color: white;
  border-radius: 10px;
  text-align: left;
  overflow: hidden;
  border: solid 1px #ccc;
}

.prices .inner .card .picture {
  height: 350px;
  background-size: cover;
}

.prices .inner .walkingCard .picture {
  background-image: url('/assets/poppy-banner.png');
}

.prices .inner .daycareCard .picture {
  background-image: url('/assets/poppy-banner.png');
}

.prices .inner .card .cov {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  font-size: 24px;
  font-weight: bold;
  padding: 30px;
}

.prices .inner .card .mainBody {
  padding: 30px;
}

.turnstile {
  height: 70px;
  margin-top: 20px;
}






.together .inner {
  display: flex;
  gap: 50px;
  flex-direction: row;
  align-items: center;
}

.together .inner .image img {
  width: 100%;
}

.together .inner .image {
  flex: 1;
}

.together .inner .image img {
  display: block;
}

.together .inner .text {
  flex: 1.5;
}

.touchBottom {
  padding-bottom: 0 !important;
}

.touchBottom .inner .text {
  padding-bottom: 150px !important;
}

.light {
  background-color: white !important;
  color: black !important;
}

.dark {
  background-color: #ebebee !important;
  color: black !important;
}

/* --- Animation --- */
.animate-in {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate {
  opacity: 1;
  transform: none;
}

/* --- Dark mode --- 
@media (prefers-color-scheme: dark) {
	body {
		background-color: #2b2b2b;
		color: #ccc !important;
	}

  .light {
    background-color: #666666 !important;
    color: #ebebee !important;
  }

  .dark {
    background-color: #303030 !important;
    color: #ebebee !important;
  }
}

*/

/* Small desktop sizing issues --- */
@media only screen and (max-width: 1410px) {
	.inner {
		max-width: 85%;
		padding: 0;
	}
  
  .hero .cover .inner {
    padding: 30px;
  }

  section {
    padding: 20px !important;
  }

  .together .inner {
    flex-direction: column;
    gap: 20px;
  }
  
}

/* --- Mobile styles --- */
@media only screen and (max-width: 800px) {

.inner {
	max-width: 1800px;
	padding: 20px;
}
	
  body {
    padding-top: 0 !important;
  }

  nav {
    position: relative;
  }

  nav .inner {
    flex-direction: column;
  }

  nav .inner .contact {
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }

  .prices .inner .holder {
    flex-direction: column;
  }

  footer .columns {
    flex-direction: column;
  }

  footer .bottom {
    flex-direction: column;
    gap: 10px;
  }
}
