* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

:root {
  --main-color: #f8b281;
  --secondary-color: #000000;
}

@font-face {
  font-family: "argonite";
  src: url("./assets/stone\ orgonite.woff");
}
section {
  padding: 5%;
}

h2 {
  font-size: 2.5rem;
  line-height: 125%;
  padding: 1rem 0rem;
}
h3 {
  font-size: 1.25rem;
  line-height: 125%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav svg {
  cursor: pointer;
  z-index: 10;
}

.links {
  position: absolute;
  background: white;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 2;
}

.links a {
  color: var(--secondary-color);
  font-size: 2rem;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-left: 0.5rem;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

.logo img {
  width: 1.5rem;
}

.front-page {
  min-height: 100vh;
  color: white;
}

.selling-point {
  margin-top: 25vh;
  font-family: "argonite", sans-serif;
  text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.49);
  text-align: center;
}

.selling-point h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.selling-point h3 {
  font-family: sans-serif;
  text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.49);
}
.ctas {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 0;
}
.ctas button {
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  margin: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #2d3436;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-main {
  background-color: var(--main-color);
  color: var(--secondary-color);
}
.cta-main a {
  text-decoration: none;
  color: var(--secondary-color);
}
.cta-sec {
  background-color: var(--secondary-color);
  color: white;
}

.hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  z-index: -1;
}

.classes {
  color: var(--secondary-color);
  text-align: center;
  font-family: "argonite", sans-serif;
}
.videos video {
  width: 100%;
  border-radius: 1rem;
  margin-top: 1rem;
}
.french,
.bio,
.hack {
  position: relative;
}
.videos h3 {
  position: absolute;
  color: white;
  text-shadow: 0px 2px 12px rgba(0, 0, 0, 0.408);
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about {
  color: var(--secondary-color);
}
.about h2 {
  font-family: "argonite", sans-serif;
  text-align: center;
}
.about p {
  line-height: 150%;
  font-size: 1.2rem;
}
.about img {
  width: 100%;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  body {
    padding: 0% 10%;
  }
  .videos {
    display: flex;
    gap: 2rem;
  }
  .about {
    display: flex;
    gap: 5rem;
    justify-content: space-between;
  }
  .about img {
    width: 50%;
  }
  .about h2 {
    text-align: start;
  }
}

/* Portfolio cards in front-page */
.portfolio-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  z-index: 0;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #2d3436;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #636e72;
}

 /* Countdown */
 .countdown {
  justify-content: center;
  display: flex;
  gap: 30px;
}

.time-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  min-width: 80px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.time-block:hover {
  transform: scale(1.1);
}

.time-block span {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #00d4ff; /* Cyan accent */
}

.time-block p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #ccc;
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 600px) {
  .countdown {
      flex-wrap: wrap;
      gap: 15px;
  }
  h1 {
      font-size: 1.8rem;
  }
  .time-block span {
      font-size: 2rem;
  }
}

/* Footer */
footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  img:hover {
    opacity: 0.5;  
  }




