/*
Theme Name: Schiedam Petition Theme
Author: OpenAI
Version: 1.0
Description: Activist style WordPress theme for the Schiedam petition campaign.
*/

:root{
  --yellow:#f5c400;
  --red:#d62020;
  --black:#111111;
  --white:#ffffff;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial,sans-serif;
  background:#f4f4f4;
  color:#111;
}

header{
  background:var(--black);
  color:white;
  position:sticky;
  top:0;
  z-index:999;
  padding:20px 40px;
  border-bottom:6px solid var(--yellow);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:32px;
  font-weight:900;
  letter-spacing:2px;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:20px;
  font-weight:bold;
  text-transform:uppercase;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:100px 30px;
  background:white;
  text-align:center;
}

.hero h1{
  font-size:90px;
  line-height:0.9;
  margin-bottom:20px;
  text-transform:uppercase;
}

.red-text{
  color:var(--red);
}

.yellow-text{
  color:var(--yellow);
}

.hero p{
  max-width:800px;
  margin:auto;
  font-size:24px;
}

.cta-button{
  display:inline-block;
  margin-top:35px;
  padding:20px 42px;
  background:var(--red);
  color:white;
  text-decoration:none;
  border-radius:12px;
  font-weight:900;
  font-size:24px;
}

.cta-button:hover{
  opacity:0.9;
}

.skyline{
  margin-top:50px;
  width:100%;
  max-width:1100px;
}

.benefits{
  background:var(--yellow);
  padding:60px 30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.benefit{
  background:white;
  border-radius:18px;
  padding:40px;
  text-align:center;
  font-size:28px;
  font-weight:900;
}

.comments{
  padding:80px 30px;
}

.comments-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.comment-card{
  background:white;
  border-top:6px solid var(--yellow);
  border-radius:16px;
  padding:30px;
  box-shadow:0 4px 14px rgba(0,0,0,0.1);
}

footer{
  background:var(--black);
  color:white;
  text-align:center;
  padding:40px;
  border-top:6px solid var(--yellow);
}

.mobile-sticky{
  display:none;
}

@media(max-width:768px){

  .hero h1{
    font-size:52px;
  }

  .benefits{
    grid-template-columns:1fr;
  }

  nav{
    display:none;
  }

  .mobile-sticky{
    display:block;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:var(--red);
    text-align:center;
    padding:18px;
    z-index:9999;
  }

  .mobile-sticky a{
    color:white;
    text-decoration:none;
    font-size:24px;
    font-weight:bold;
  }
}
