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

body {
  font-family: "Work Sans", sans-serif;
  color: #1f1f1f;
  background-color: white;
  line-height: 1.6;
  padding: 0 5vw;
}


header {
  padding: 24px 0;
}

.navbar {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 48px;
}

/* -------- TYPOGRAPHY -------- */
h2 {
  font-family: "Cal Sans";
  font-weight: 600;
  font-size: 160px;
  margin-top: 80px;
  margin-bottom: 12px;
  background-image: url("../img/Maytronics.gif"); 
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
}


h1 {
  font-family: "Cal Sans";
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 80px;
  margin-bottom: 12px;
  color: #FF5C00;
}

h3 {
  font-family: "Cal Sans";
  font-size: clamp(1rem, 2vw, 1.5rem);
}

#overlay img { 
    display: inline;
    width: 100%;
    height: 100%;
    opacity: 3;
}

#tagline {
  max-width: 600px;
  font-family: "Manrope";
  font-size: 1.2rem;
  margin-bottom: 200px;
}

#desc {
  max-width: 750px;
  margin-bottom: 40px;
  color: #555;
}

#process {
  color: navy;
  font-family: "Manrope";
  font-weight: bold;
  text-decoration: none;
}


/* -------- PUBLISHED / TOOLS -------- */
.publishButton {
  font-family: "Manrope";
  padding: 10px 30px;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  background-color: navy;
  color: white;
  cursor: pointer;
  opacity: 0.85;
}

.publishButton:hover {
  opacity: 1;
  
}
.published {
  display: flex;
  font-family: 600px;
  align-items: center;
  justify-content: space-between;
  margin: 48px 0 16px;
  flex-wrap: wrap;
}


#tools {
  max-width: 600px;
  font-family: "Manrope";
  margin-bottom: 200px;
  color: #13265C;
}

#bold {
  font-weight:bold;
  font-family: "Manrope";
}

.SNAPgallery,
.AAgallery,
.Fathergallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 72px;
}

.SNAPgallery img,
.AAgallery img,
.Fathergallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.SNAPgallery img:hover,
.AAgallery img:hover,
.Fathergallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

#scrollToTopBtn {
  position: fixed;
  font-family: "manrope";
  bottom: 24px;
  right: 24px;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-radius: 50px;
  border: none;
  background-color: #1f1f1f;
  color: white;
  cursor: pointer;
  opacity: 0.85;
}

#scrollToTopBtn:hover {
  opacity: 1;
}


@media (max-width: 600px) {
  body {
    padding: 0 6vw;
  }

  .published {
    flex-direction: column;
    align-items: flex-start;
  }
}
 