/* Reset */
* {
  
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #c6c783;
  scroll-behavior: smooth;
}

.content-cover {
    padding: 5vw;
}

#logo {
    padding-bottom: 80px;
    padding-left: 120px;
    padding-top: 50px;
    font-size:30px;
}

/* Parallax scrolling container */
.parallax-container {
  position: relative;
  height: auto;
  overflow: hidden;
}
p {
    /*color:#c6db5a;*/
    margin-bottom:10px;

}
.parallax-bg {
  background-image: url('/images/background.png');
  background-size: cover;
  background-repeat: repeat-y;
  background-position: center top;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 240%;
  z-index: -1;
  transform: translateY(0);
  will-change: transform;
}

.headline {
    max-width: 720px;
    margin:auto;
    position: relative;
    padding-top: 4vw;
    padding-bottom: 4vw;
  background-color: rgba(136,197,42, 0.9); /* Semi-transparent overlay */
  border-radius: 12px;
  color:#05361c;
}
.headline h2 {
    text-align:center;
}
.bold {
    font-weight:800;
    font-size:26px;
}
.lightbulb-wrapper {
  position: relative;
  width: 250px; /* adjust to your icon size */
  margin:auto;
}

.lightbulb-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.connect-btn {
  position: absolute;
  top: 40%; /* vertical position within bulb */
  left: 50%; /* horizontal center */
  transform: translate(-50%, -50%); /* center the button */
  padding: 14px 28px;
  font-size: px;
  background-color: #ffeb3b;
  border: none;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}
.center-wrapper {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* optional: center vertically */
  width: 100%;
  margin-top: 50px;        /* adjust spacing from top */
}
.side-by-side {
  display: flex;
  align-items: flex-start;        /* vertical alignment */
                    /* spacing between text and icon */
  max-width: 720px;
  margin: 0 0;               /* center the block */
  padding: 20px;
  background-color: #e6d8bb;
  border-radius:12px;
  color: black;
  flex-wrap: wrap;
}

.margin-top {
    margin-top: 20px;
}

#three {
  display: flex;
  justify-content: space-between; /* Evenly distribute the boxes */
  gap: 20px; /* Adds margin between the boxes */
  margin: 40px auto;
  max-width: 1000px;
  padding: 20px;
  flex-wrap: wrap; /* Optional: allows wrapping on smaller screens */
}

.boxin {
  flex: 1; /* Allow each box to grow equally */
  min-width: 250px; /* Prevents shrinking too small on small screens */
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  text-align: center;
  color: var(--text);
  transition: transform 0.3s ease;
}

.boxin:hover {
  transform: translateY(-5px);
}
.boxin:hover h3{
    color: rgb(255, 255, 255);
}

.side-by-side div {
/*  flex: 0 0 60%;              take up ~70% of width */
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}
.side-by-side img {
    width: 240px;
    height: auto;
    display:contain;
    border-radius:12px;
    margin-right:24px;
}

#testtube {
  flex: 0 0 20%;                /* take up ~30% of width */
  text-align: center;
}

#testtube img {
  max-width: 100%;
  height: auto;
}
.connect-btn:hover {
  background-color: #ffc107;
}
h1 {
    color: #e1e0ab;
}
h3 {
    padding-bottom:20px;si
}
/* Your content */
.main-content {
  padding: 10vw;
  padding-top:5vw;
  padding-bottom:5vw;
  background-color: #c6c783; /* Semi-transparent overlay */
  max-width: 960px;
  margin: auto;
  margin-top: 80px;
  border-radius: 12px;
  color: rgba(0, 0, 0,1);
  
  position: relative;
}
.two {
     background-color: rgba(198,199,131, 0.8);
     color:#05361c;
}
.floating-icon {
  position: absolute;
  width: 80px; /* or whatever size fits */
  height: auto;
  pointer-events: none; /* lets clicks pass through */
  z-index: 10; /* put above background, below content if needed */
}

.floating-icon img {
  width: 100%;
  height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-cover {
        padding: 10px;
    }
   
    .fixed-icon {
    width: 25px;
    top: 10px;
    right: 10px;
  }
    
  .main-content {
    padding: 20px;
  }

  h1 {
    font-size: 1.8em;
    
  }
   .floating-icon {
        display: none;
    }
    #logo {
        padding-left:12px;
    }
    .parallax-bg {
        height:300%;
    }
    .boxin h3 {
        color: rgb(255, 255, 255);
    }
    
    
}