@import url('https://fonts.googleapis.com/css2?family=Sigmar+One&family=Silkscreen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p{
  font-family: "Rubik", serif;
}

/* nav bar container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6B9AC4;
    padding: 24px 48px;
    font-family: "Silkscreen", sans-serif;
}

.logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-left: 40px;
}

.logo a{
  color: #fff;
  text-decoration: none;
}

/* nav links */
.navlinks {
    list-style: none;
    display: flex;
    gap: 0;
    margin-right: 40px;
}
/* hover */
.navlinks a {
    color: #A8E6CF;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}
.navlinks a:hover {
    color: #FFD700;
}
/* add separator */
.navlinks li {
    position: relative;
}
.navlinks li:not(:last-child)::after {
  content: "|";
  color: #A8E6CF;
  margin-left: 50px;
  margin-right: 50px;
  font-weight: bold;
}

/* footer */
.footer {
    background-color: #6B9AC4;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: "Silkscreen", sans-serif;
}

.footer p{
  font-family: "Silkscreen", sans-serif;
}

.fcontent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* footer links */
.flinks {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
/* hover */
.flinks a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.flinks a:hover {
    color: #A8E6CF;
}
/* add separator */
.flinks li {
    position: relative;
}
.flinks li:not(:last-child)::after {
  content: "|";
  color: #fff;
  margin-left: 20px;
  margin-right: 20px;
}
.fsocials {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* play demo link container */
.navlinks li:last-child a {
  background-color: #FFD700;
  color: #FF6F61;
  padding: 8px 16px;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 5px 5px 0 #FF6F61;
}

/* Hero section */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero {
  position: relative;
  width: 100%;
  height: 500px; /* or 100vh */
  overflow: hidden;
}
/*About Section*/
.about {
  width: 100%;
  margin: 0;
  padding: 0;
}

.about-image {
  width: 100%;
  height: 500px;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0;
  padding: 0;
}
.about-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.6); /* semi-transparent white */
  padding: 1rem 2rem;
  font-size: 2rem;
  font-family: "Sigmar One", cursive;
  color: #FF6F61;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1;
  text-align: center;
}

/*Team Section*/
.team {
  width: 100%;
  margin: 0;
  padding: 0;
}

.team-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0;
  padding: 0;
}
.team-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.6); /* semi-transparent white */
  padding: 1rem 2rem;
  font-size: 2rem;
  font-family: "Sigmar One", cursive;
  color: #FF6F61;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1;
  text-align: center;
}
/* Section styles */
.section {
  padding: 3rem 2rem;
  text-align: center;
}

.section h2 {
  font-family: 'Sigmar One', cursive;
  margin-bottom: 0.5rem;
  color: #000000;
}

.section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #FF6F61;
  margin: 0.5rem auto;
}

.section p {
  max-width: 800px;
  margin: 2rem auto;
}

/* Color blocks */
.purple {
  background-color: #CBAACB;
}
#purple h2 {
  color: #FF6F61;
}

.red {
  background-color: #FF6F61;
}
#red h2 {
  color: #FFD700;
}

.cyan {
  background-color: #A8E6CF;
}
#cyan h2 {
  color: #FF6F61;
}

.software, .process {
  background-color: #FF6F61;
}

#purple ul li{
  font-family: "Rubik", serif;
  padding-left: 10px;
  margin-left: 50px;
}

/* cyan full-width text boxes */
.text-box.full-box {
  background-color: #A8E6CF;
  color: #000;
  
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.70);
  text-align: left;
  border-radius: 12px;
}

.text-box.full-box h2 {
  font-family: 'Sigmar One', cursive;
  font-size: 1.5rem;
  color: #FF6F61;
  margin-bottom: 0.5rem;
  text-align: center;
}

.text-box.full-box hr {
  border: none;
  height: 3px;
  background-color: #000;
  width: 60px;
  margin: 0.5rem auto 1.5rem;
}

.text-box.full-box p {
  font-size: 1rem;
  line-height: 1.6;
}

/* blue full-width text boxes */
.blue-text-box.full-box {
  background-color: #6B9AC4;
  color: #000;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 350px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.70);
  text-align: center;
  border-radius: 12px;
  height: 570px;
}

.blue-text-box.full-box h3 {
  font-family: 'Sigmar One', cursive;
  color: #000;
  margin-bottom: 0.5rem;
  text-align: left;
}

.blue-text-box.full-box hr {
  border: none;
  height: 3px;
  background-color: #000;
  width: 60px;
  margin: 0.5rem auto 1.5rem;
}

.blue-text-box.full-box p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* meet the team grid */
.team-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0px;
}
.team-grid-item {
  padding: 20px;
  text-align: center;
}
/* learn more link container */
.learn-more a {
  background-color: #FFD700;
  color: #FF6F61;
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #FF6F61;
  font-family: "Silkscreen", sans-serif;
  text-decoration: none;
}

/* Image placeholders */
.image-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.gallery-image:hover {
  transform: scale(1.05);
}


.image-placeholder {
  background-color: #F8F8F8;
  border: 2px dashed #000;
  padding: 4rem;
  width: 200px;
  text-align: center;
}

/* index images */
.image-left{
    float: left; 
    width: 275px;
    margin-right: 20px; 
    margin-bottom: 20px;
}

.image-right{
    float: right; 
    width: 275px;
    margin-right: 20px; 
    margin-bottom: 20px;
}

/*view more button*/
.view-more-button {
  text-align: center;
  padding: 2rem;
}

.view-more-button a {
  background-color: #FFD700;
  color: #FF6F61;
  padding: 12px 24px;
  font-family: "Silkscreen", sans-serif;
  font-size: 18px;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 4px 4px 0 #FF6F61;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}

.view-more-button a:hover {
  background-color: #FF6F61;
  color: #fff;
}

/* Image placeholders */
.image-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.gallery-image {
  max-width: 235px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.center-img {
  display: flex;
  justify-content: center;
  align-items: center;
}