/* GENERAL RESET & FONTS */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: sans-serif; color: #111; background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.site-header nav a { margin-left: 1rem; font-size: 0.9rem; }

/* HERO */
.hero {
  height: 100vh;
  background: url('images/hula_hoop_background.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-content h1 { font-size: 3rem; }
.hero-content p { font-size: 1.2rem; margin-top: 0.5rem; }

/* WORKS GRID */
.works { padding: 6rem 2rem; background: #fafafa; }
.works h2 { text-align: center; margin-bottom: 2rem; font-weight: normal; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.grid-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.grid-item img:hover { transform: scale(1.03); }

/* ABOUT SECTION */
.about {
  display: flex; flex-wrap: wrap;
  padding: 6rem 2rem;
  gap: 2rem;
}
.about-image { flex: 0 0 300px; }
.about-text { flex: 1 1 300px; }
.about-text h2 { margin-bottom: 1rem; }

/* KEYWORDS */
.keywords { display: none; }

/* CONTACT */
.contact { padding: 4rem 2rem; text-align: center; }

/* FOOTER */
.site-footer { padding: 1rem; text-align: center; font-size: 0.8rem; background: #f0f0f0; }
