/* GLOBAL STYLES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
} 

html, body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
}

.social-icons {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 10px;
  font-size: 25px;
  color: white;
}


.fa-instagram, .fa-envelope {
  color: white;
}

.fa-instagram:hover {
  color: #C90606;
}

.fa-envelope:hover {
  color: #C90606;
}




/* LANDING PAGE */
  .landing-page-background {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .clouds-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .landing-page-logo {
    width: 450px;
    max-width: 90vw;
    height: auto;
  }
  
  

  /* NAVIGATION STYLES */

  .top-left {
    margin: 1em 2em;
    color: #C90606;
    cursor: default;
    }
  
  .nav-items {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    display: flex;
    gap: 1em;
    margin: 1em 2em;
    max-width: 100%;
  }
  
  
  .nav-items li a {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .red-link {
    color: #C90606;
  }

  .white-link {
    color: #ffffff;
  }

  .red-link:hover {
    color: #fff;
  }

  #red-link:hover {
    color: #A00505;
  }


  .white-link:hover {
    color: #C90606;
  }

.logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.caption {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-style: italic;
    animation: zoomIn;
    animation-duration: 2s;
}

/* ABOUT PAGE */


.about-background {
  /* background: linear-gradient(to top left, #343434, #000000); */
  background: #F0F0F0;
}




.about-intro-style {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  z-index: 9999;
} 

 .about-intro-style h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #C90606;
}


.about-description {
  background-color: #FF5857;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding: 60px;
  text-align: center;
  width: 100%;
  display: block;
  box-sizing: border-box;
  font-family: "Fredericka the Great", serif;
}


.about-description-text {
  margin-bottom: 1rem;
  padding: 30px;
  font-size: 30px;
  color: #000000;
  font-family: "Fredericka the Great", serif;
}


span {
  color: #C90606;
}



.quote-block-right,
.quote-block-left {
  max-width: 100%;
  background-color: #fff;
  margin: 50px 0;
  padding: 0; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}





.banner {
  background-image: url('images/think360-logo-no-background.PNG');
  background-repeat: repeat; 
  background-size: 100px auto;
  background-position: center; 
  height: 200px; 
}




.cta {
  text-align: center;
  padding: 3rem 2rem;
}

.cta h2 {
  font-size: 2rem;
  color: #222222;
}

.cta a {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #C90606;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta a:hover {
  background-color: #a40404;
}


/* CONTACT PAGE */

.container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.contact-section {
  position: relative;
  z-index: 2;
}

form {
  background-color: #C90606;
  padding: 10px;
  border-radius: 5px;
}

.contact-container {
  display: flex;
  justify-content: space-between; 
  width: 100%;
  max-width: 1200px; 
  margin: 20px;
}

.contact-info {
  width: 50%; 
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  font-family: "Inter", sans-serif;
}

.contact-form {
  width: 50%; 
  padding: 20px;
  background-color: #C90606;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 20px;
  font-family: "Inter", sans-serif;
}

.contact-text {
  color: white;
  text-align: center;
  font-size: 15px;
  margin-top: 0;
  padding: 10px;
}

.contact-text h1 {
  font-size: 30px;
}

.contact-text p {
  margin: 25px 0; 
}

.contact-details {
  display: flex; 
  justify-content: center; 
  flex-direction: column; 
  align-items: center; 
  margin-top: 15px; 
}

.contact-detail {
  display: flex;
  align-items: center; 
  margin: 10px 0; 
}

.contact-detail i {
  margin-right: 10px; 
  font-size: 20px;
  color: white; 
}

.contact-detail a {
  margin: 0; 
  font-size: 15px; 
  color: white; 
}

.contact-detail a:hover {
  color: #C90606;
}

.contact-us-caption {
  font-size: 20px;
  font-weight: 700;
  color: #C90606;
}


.contact-form input, 
.contact-form textarea {
  margin-bottom: 15px;
  color: black;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form label {
  margin-bottom: 15px;
  color: white;
}

.contact-form textarea {
  resize: none;
}

input[type=submit] {
  background-color: black;
  border: none;
  color: #fff;
  cursor: pointer;
}

input[type="submit"] {
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #181818;
  color: #fff;
}


.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: #C90606;
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
  justify-content: flex-start;
  padding: 2rem 1rem;
  transition: right 0.3s ease-in-out;
  gap: 10px;
}

.sidebar a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.about-page #sidebar-toggle i {
  color: #C90606;
}

/* Sidebar Close Button */
.sidebar i {
  color: white;
  font-size: 30px;
  margin-bottom: 2rem;
}

/* Hamburger Icon */
.sidebar-toggle {
  display: none;
  font-size: 30px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
}


/* Show the sidebar when active */
.sidebar.open {
  right: 0;
}



@media only screen and (max-width: 480px) {

  .landing-page-logo {
    width: 320px;  
    max-width: 95vw;
  }

  .sidebar-toggle {
    display: block;
    color: white;
}

.sidebar .btn {
  margin-right: 15%;
}

.nav-items {
  display: none;
}


  .container,
  .contact-container {
    display: flex;
    flex-wrap: wrap;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    margin: 0;
  }

  .form-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

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

  .contact-text h1 {
    font-size: 24px;
  }

  .contact-text p {
    font-size: 14px;
    margin: 10px 0;
  }

  .contact-form {
    padding: 10px;
    margin: 20px 0;
  }


  .about-description {
    font-size: 2rem; 
  }

  .about-description-text {
    font-size: 1.25rem;
    padding: 30px;
  }


} 

