@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #0e0e0e;
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(1);
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgb(17 70 66 / 82%) 0%, rgb(1 64 77 / 80%) 35%, rgb(1 40 34 / 87%) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.logo {
  margin-right: 2%;
  max-width: 60%;
  margin-bottom: 1.5rem;
  -webkit-filter: invert(100%);
    filter: invert(100%);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.socials img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.socials a:hover img {
  transform: scale(1.2);
}

/* ===== BIO SECTION ===== */
.bio {
  padding: 6rem 1.5rem;
  background: #121212;
  text-align: center;
}

.bio .content {
  max-width: 850px;
  margin: 0 auto;
}

.bio h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.bio p {
  line-height: 1.8;
  font-weight: 300;
  color: #ccc;
}

/* ===== BIO SECTION ===== */
.crowdfunding{
  display: none;
}
.crowdfunding .content{
  display: flex;
}

.crowdfunding img{
  width: 20%;
  max-width: 500px;
  object-fit: cover;
}

.crowdfunding .text-content{
  background: #144248;
  padding: 40px;
    display: flex;
  flex-direction: column;
  justify-content: center;
}

.crowdfunding p {
  line-height: 1.8;
    font-weight: 300;
    color: #e7e7e7;
}

.crowdfunding a:hover{
  background: #a0d0bb;
  transition: 0.4s;
}

.crowdfunding a {
  background: white;
    display: inline-block;
    width: fit-content;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    color: #144248;
    transition: 0.4s;
  }


  .trombi{
    display: flex;
  }

  .trombi img{
    height: 600px;
    width: 25%;
    object-fit: cover;  }
/* ===== PHOTOS SECTION ===== */
.photos {
  padding: 5rem 1.5rem;
  background: #181818;
  text-align: center;
}

.photos h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  width: 90%;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .logo {
    max-width: 90%;
  }

  .bio h2, .photos h2 {
    font-size: 1.6rem;
  }

  .bio p {
    font-size: 0.95rem;
  }
}
