html {
  scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
}

body {
}


#app {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.floating-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #3D6D5E, #11372A);
  border-radius: 30px;
  padding: 0 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.floating-navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.floating-navbar li {
  position: relative;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.floating-navbar li .navbar-logo {
  height: 30px;
  vertical-align: middle;
  margin-right: 15px;
}


.floating-navbar a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 5px 0;
  display: block;
  transition: color 0.3s ease;
}

.floating-navbar li::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #4C7F6F;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.floating-navbar li:has(a):hover::after,
.floating-navbar li:has(a):active::after {
  width: 100%;
}

.floating-navbar a:hover,
.floating-navbar a:active {
  color: #dddddd;
}


.container {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
  text-align: left;
  flex-direction: column;
}

.container-1 {
  background-image: url("yoga.png");
  /*background-color: #163D30;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  align-items: flex-start;
  padding-top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  min-height: 80vh;
  padding: 0;
}

.container-1 .text-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container-1 .image-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}


.container-2 {
  background-color: #ffffff;
  color: #213547;
  align-items: flex-start;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  min-height: 40vh;
}

.container-2 h2 {
  color: #264A47;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  width: 100%;
  text-align: center;
  font-size: 2.2em;
}


.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
}

.card {
  background-color: #163D30;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInFromLeft 0.6s ease-out forwards;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card h3 {
  color: #85FFC7;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1em;
}

.card p {
  font-size: 1em;
  margin: 0;
}

.card i {
  font-size: 1em;
  color: white;
  margin-bottom: 0.5rem;
}

.cards-container .card:first-child i {
  font-size: calc(1em + 10px);
}

.cards-container .card:nth-child(2) i {
  font-size: calc(1em + 10px);
}

.cards-container .card:nth-child(3) i {
  font-size: calc(1em + 10px);
}

.cards-container .card:nth-child(4) i {
  font-size: calc(1em + 10px);
}


.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.3s; }
.card:nth-child(3) { animation-delay: 0.5s; }
.card:nth-child(4) { animation-delay: 0.7s; }


@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.container-3 {
  background-color: #163D30;
  color: white;
  align-items: flex-start;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  flex-direction: column;
}

.container-3 h2 {
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  width: 100%;
  text-align: center;
  font-size: 2.2em;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.project-square {
  width: 250px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.project-square img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-square img::before {
  content: attr(alt);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: serif;
  font-size: 1.2em;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  z-index: 2;
}


h1 {
  font-size: 3.2em;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2em;
  margin-bottom: 1rem;
  margin-top: 0;
}

h2.smaller-text {
  font-size: 1.5em;
}


p {
  font-size: 1.1em;
}


.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 30px;
  background: linear-gradient(to right, #54AF93, #67D0B2, #54AF93);
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: none;
  text-shadow: none;
}

.cta-button i {
  font-size: 1em;
  color: white;
}


.cta-button::before {
  display: none;
}

.cta-button::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 20px;
  width: 0;
  height: 2px;
  background-color: white;
  border-radius: 1px;
  transition: width 0.3s ease-out;
  z-index: -1;
}

.cta-button:hover::after {
  width: calc(100% - 40px);
}


.logo, .card, .read-the-docs, button {
}

.cta-button.gray-cta {
  background: #6c757d;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button.gray-cta::after {
  display: none;
}


.project-ctas-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 20px;
  box-sizing: border-box;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 0;
  color: white;
}

.contact-info p {
  font-size: 1em;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #85FFC7;
}

.contact-info i {
  font-size: 1.2em;
  color: #85FFC7;
}


footer {
  background-color: #000;
  color: #85FFC7;
  padding: 2rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: 2rem 1rem;
  gap: 40px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  padding: 0;
  box-sizing: border-box;
  min-width: 200px;
}

.footer-left {
  text-align: center;
}

.footer-center {
  text-align: center;
  position: relative;
  transition: background-color 0.3s ease;
  padding: 10px 0;
  border-radius: 5px;
}

.footer-center:hover {
  background-color: rgba(133, 255, 199, 0.1);
}


.footer-right {
  text-align: left;
}

.footer-logo {
  height: 160px;
}

.footer-center ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-center a {
  text-decoration: none;
  color: #85FFC7;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  color: #67D0B2;
}

.footer-right p {
  font-size: 1em;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #85FFC7;
}

.footer-right i {
  font-size: 1.2em;
  color: #85FFC7;
}

.footer-center::before,
.footer-center::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: linear-gradient(to bottom, #85FFC7, transparent);
}

.footer-center::before {
  left: 0;
}

.footer-center::after {
  right: 0;
}

.contact-background {
  background-image: url('nego.jpeg'); /* <-- Change the image URL here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*color: white;*/
  min-height: 5vh;
  position: relative;
  z-index: 1;
}

.contact-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: -1;
}


@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 30px;
    padding: 2rem 1rem;
    justify-content: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .footer-left {
    order: 1;
  }

  .footer-center {
    order: 2;
  }

  .footer-right {
    order: 3;
  }

  .footer-center ul {
    align-items: center;
  }

  .footer-right p {
    justify-content: center;
  }

  .footer-center::before,
  .footer-center::after {
    display: none;
  }
}
