@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Poppins:wght@300;500&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Kaushan Script", cursive;
  font-family: "Poppins", sans-serif;
  font-size: 62.5%;
}

/* ########## Variables ########## */

h1 {
  color: black;
  margin-top: 2rem;
  font-size: 4rem;
}

:root {
  --background-color: #ffffff;
  --Text-color: ;
  --Logo-Text: "Kaushan Script", cursive;
  --Underline-color: #e287db;
  --Title-color: #e287db;
  --Footer-background: rgb(107, 68, 102);
  --Footer-text-color: rgba(197, 181, 195, 0.5);
  --Footer-text-color-hover: rgba(197, 181, 195, 1);
}

/* ########## Body ########## */

body {
  padding: 5rem 10rem;
  background-color: rgb(231, 208, 228);
  display: grid;
}

.wrapper {
  box-shadow: 30px 0 100px 5px rgba(32, 30, 30, 1);
  border-radius: 30px;
  border: 5px solid black;
}

/* ########## Nav Bar and Links ########## */

#header {
  width: 100%;
  min-height: 35vh;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--background-color);
}

/* ########## Logo ########## */

.logo-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30rem;
}

.logo-text {
  font-size: 3rem;
  position: absolute;
  left: 6rem;
  bottom: 1rem;
  font-weight: bold;
  font-family: var(--Logo-Text);
}

.logo {
  width: 30rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

/* ########## Nav ########## */

.title {
  color: var(--Title-color);
  font-size: 5rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--background-color);
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 30px 50px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 30px;
  position: relative;
}

nav ul li a::after {
  content: "";
  width: 0%;
  height: 3px;
  background-color: var(--Underline-color);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;
}

nav ul li a:hover::after {
  width: 100%;
}

/* ########## Welcome ########## */

.welcome-container {
  width: 100%;
  background-color: var(--background-color);
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-title {
  font-size: 4rem;
}

.welcome-text {
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
}

/* ########## Who are we ########## */

.whowe {
  width: 100%;
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}

.whowe-title {
  font-size: 4rem;
  color: var(--Title-color);
  display: flex;
  justify-content: center;
}

/* ########## Tracey ########## */

.title-dis {
  font-size: 1.2rem;
  text-align: center;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.tracey-container {
  display: flex;
  align-items: center;
  padding-left: 5rem;
  padding-right: 5rem;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.tracey-img {
  border-radius: 2rem;
}

.tracey-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tracey-title {
  display: flex;
  justify-content: center;
  font-size: 3.5rem;
}

.tracey-text {
  font-size: 2rem;
}

/* ########## Vick ########## */

.vick-container {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding-left: 5rem;
  padding-right: 5rem;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.vick-img {
  border-radius: 2rem;
}

.vick-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vick-title {
  display: flex;
  justify-content: center;
  font-size: 3.5rem;
}

.vick-text {
  font-size: 2rem;
}

.contact-link {
  font-size: 1.5rem;
}

/* ########## Footer ########## */

footer {
  background-color: var(--Footer-background);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* ########## First column  ########## */

.footer-container {
  display: flex;
  min-height: 20vh;
  justify-content: space-around;
  font-size: 8rem;
}

.context {
  display: flex;
  align-items: center;
}

.links-container {
  list-style: none;
}

.links {
  text-decoration: none;
  list-style: none;
  font-size: 1.5rem;
  color: var(--Footer-text-color);
}

.links:hover {
  color: var(--Footer-text-color-hover);
}

.copy {
  text-decoration: none;
  list-style: none;
  font-size: 1.5rem;
  color: var(--Footer-text-color);
  cursor: default;
}

/* ########## Second column  ########## */

.dev-footer {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  font-size: 2rem;
  padding-bottom: 2rem;
}

.dev {
  color: var(--Footer-text-color);
  cursor: default;
}

.dev-link {
  text-decoration: none;
  font-size: 1rem;
  color: var(--Footer-text-color);
}

.dev-link:hover {
  color: var(--Footer-text-color-hover);
}

/* ########## Thrid column  ########## */

.social-container {
  display: flex;
  align-items: center;
}

.socials {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.social-icon {
  width: 3rem;
  opacity: 0.5;
}

.social-icon:hover {
  opacity: 1;
}

/* ########## Terms and conditions  ########## */

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
  background: #fff;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.terms-h1 {
  display: flex;
  justify-content: center;
  font-size: 4rem;
  font-family: "Poppins";
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: var(--Title-color);
}

.terms-container {
  font-size: 3rem;
  padding: 1rem 2rem;
}

.terms-h3 {
  color: var(--Title-color);
  font-size: 3.1rem;
  padding-top: 2rem;
}

.terms {
  padding-top: 1rem;
}

.terms.bottom {
  padding-bottom: 3rem;
}
