/* RESET & FONTS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: url('1753728168235.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-position: center 0%;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0);
  padding: 2rem;
}

.hero-logo {
  max-width: 1200px;
  width: 100%;
  margin-top: -100px;
}

/* SERVICES */
.services {
  padding: 4rem 2rem;
  background-color: #111;
  text-align: center;
}

.services h2 {
  color: orange;
  margin-bottom: 1.5rem;
  font-size: 5rem;
  font-weight: 900;
}

.services ul {
  list-style: none;
  font-size: 3rem;
}

.services li {
  margin-bottom: 1rem;
}

/* INFO & WIDGETS SECTION */
.info-widgets-section {
  padding: 60px 20px;
  background-color: #111;
  color: #fff;
}

.container-split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.left-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.right-info {
  flex: 1;
  min-width: 300px;
}

.right-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 2px solid #555;
  padding-bottom: 10px;
}

.right-info p {
  font-size: 18px;
  margin: 10px 0;
}

.right-info a {
  color: #90ee90;
  text-decoration: none;
}

.qr-code {
  width: 120px;
  margin-top: 10px;
}

/* Brown Bin widget */
.widget.brown-bin {
  background: #222;
  padding: 20px;
  border: 1px solid #333;
  margin-top: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bin-button {
  appearance: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  line-height: 0;
}

.bin-img {
  width: 72px;
  height: auto;
  display: block;
}

.bin-label {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Shake animation */
.bin-button.shaking .bin-img {
  animation: bin-shake 0.5s linear both;
  transform-origin: center bottom;
}

@keyframes bin-shake {
  0%   { transform: translateX(0)    rotate(0deg); }
  20%  { transform: translateX(-4px) rotate(-2deg); }
  40%  { transform: translateX(4px)  rotate(2deg); }
  60%  { transform: translateX(-3px) rotate(-1.5deg); }
  80%  { transform: translateX(3px)  rotate(1.5deg); }
  100% { transform: translateX(0)    rotate(0deg); }
}

/* ABOUT */
.about {
  background-color: #000;
  padding: 3rem 2rem;
  text-align: center;
  font-style: italic;
  font-size: 3rem;
}

/* FOOTER */
footer {
  background-color: #111;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}
