
/* ===================================================== */
/* HERO BANNER */
/* ===================================================== */

.hero-banner{
  height:40vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(135deg, rgba(50,168,82,0.2), rgba(122, 152, 18,0.2));
  position:relative;
}

.hero-banner h1{
  font-size:3.5rem;
  font-weight:700;
  margin-bottom:10px;
}

.hero-banner p{
  font-size:1.2rem;
  color:#ddd;
}

/* ===================================================== */
/* STORY SECTION */
/* ===================================================== */

.story-section{
  padding:80px 8%;
  max-width:1200px;
  margin:0 auto;
}

.story-section h2{
  font-size:2.5rem;
  margin-bottom:30px;
  text-align:center;
}

.story-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  margin-bottom:60px;
}

.story-text{
  line-height:1.8;
  color:#ddd;
}

.story-text p{
  margin-bottom:20px;
}

.story-image{
  width:100%;
  height:350px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius:20px;
}

/* ===================================================== */
/* VALUES SECTION */
/* ===================================================== */

.values-section{
  padding:80px 8%;
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(20px);
}

.values-section h2{
  font-size:2.5rem;
  margin-bottom:50px;
  text-align:center;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}

.value-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  padding:40px 30px;
  text-align:center;
  transition:0.4s;
}

.value-card:hover{
  transform:translateY(-5px);
  border-color:rgba(122, 152, 18,0.4);
  box-shadow:0 10px 30px rgba(122, 152, 18,0.2);
}

.value-icon{
  width:70px;
  height:70px;
  background:#7a9812;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  font-size:2rem;
}

.value-card h3{
  font-size:1.5rem;
  margin-bottom:15px;
}

.value-card p{
  color:#ccc;
  line-height:1.6;
}

/* ===================================================== */
/* TEAM SECTION */
/* ===================================================== */

.team-section{
  padding:80px 8%;
  max-width:1200px;
  margin:0 auto;
}

.team-section h2{
  font-size:2.5rem;
  margin-bottom:50px;
  text-align:center;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:40px;
}

.team-member{
  text-align:center;
}

.member-photo{
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:3px solid rgba(122, 152, 18,1);
  margin:0 auto 20px;
  background-size:cover;
  background-position:center;
  transition:0.3s;
}

.team-member:hover .member-photo{
  transform:scale(1.05);
  border-color:#7a9812;
  box-shadow:0 0 30px rgba(122, 152, 18,0.4);
}

.team-member h3{
  font-size:1.4rem;
  margin-bottom:5px;
}

.team-member .role{
  color:#7a9812;
  font-size:0.95rem;
  margin-bottom:10px;
}

.team-member p{
  color:#ccc;
  font-size:0.9rem;
  line-height:1.6;
}

/* ===================================================== */
/* CTA SECTION */
/* ===================================================== */

.cta-section{
  padding:80px 8%;
  text-align:center;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:30px;
  margin:80px 8% 0;
}

.cta-section h2{
  font-size:2.5rem;
  margin-bottom:20px;
}

.cta-section p{
  color:#ddd;
  margin-bottom:30px;
  font-size:1.1rem;
}

.cta-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  padding:14px 32px;
  background:#7a9812;
  border-radius:8px;
  text-decoration:none;
  color:white;
  font-weight:600;
  transition:0.3s;
  display:inline-block;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 0 25px rgba(122, 152, 18,0.6);
}

.btn-outline{
  background:transparent;
  border:2px solid #7a9812;
}

.btn-outline:hover{
  background:#7a9812;
}

.easter-egg{
  position:fixed;
  bottom:20px;
  left:-200px;
  width:60px;
  height:60px;
  background:url('/img/yellow_tiel.png') no-repeat center/contain;
  cursor:pointer;
  transition:0.3s;
}

.easter-egg:hover{
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.easter-egg-show{
  left:20px;
}

.easter-egg-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    z-index: 1000;
    align-items: center;
}

.easter-egg-modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.easter-egg-modal-prop {
    height:200px;
    width:200px;
    position:absolute;
  }

  .prop{
    background:url('/img/gif/parrot-dancing.gif') no-repeat center/contain;right:calc(50% - 100px);bottom:100px;
  }

  .prop-one{
    background:url('/img/gif/minecraft-parrot-1.gif') no-repeat center/contain;left:100px;bottom:100px;
  }

  .prop-two{
    background:url('/img/gif/minecraft-parrot-2.gif') no-repeat center/contain;right:100px;bottom:100px;
  }

  .prop-three{
    background:url('/img/gif/sheep-minecraft.gif') no-repeat center/contain;left:100px;top:100px;
  }

  .prop-four{
    background:url('/img/gif/steve-jojos.gif') no-repeat center/contain;right:100px;top:100px;
  }

.close {
    position: absolute;
    top: -60px;
    left: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #b11212;
}

.follow-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

/* Modal Box */
.follow-modal-content {
    background: #111;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    color: white;
    position: relative;
    top: 10%;
    
    text-align: center;
    left: calc(50% - 250px);
}

/* Icon Grid */
.social-grid  {
    text-align: left;
}

.social-grid a {
    color: white;
    font-size: 32px;
    transition: transform 0.2s ease;
    text-decoration: none;
    display: block;
    padding: 20px 40px;
    transition: all 0.3s ease;
}

.social-grid a:hover {
    color: #7a9812;
}

@media(max-width:768px){

  .easter-egg-modal-prop{
    height:100px;
    width:100px;
  }

  .prop{
    right:calc(50% - 50px);
    bottom:50px;
  }

  .prop-one{
    left:50px;
    bottom:50px;
  }

  .prop-two{
    right:50px;
    bottom:50px;
  }

  .prop-three{
    left:50px;
    top:50px;
  }

  .prop-four{
    right:50px;
    top:50px;
  }
}