/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  background: #fafafa;
}

/* ==========================================================================
   Links & Buttons
   ========================================================================== */
a {
  color: #e91e63;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

button,
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  background: #e91e63;
  color: #fff;
}

button.secondary,
.btn-secondary {
  background: #555;
}

button:hover,
.btn:hover {
  opacity: 0.9;
}

/* ==========================================================================
   Containers & Layout
   ========================================================================== */
.jc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

header.jc-header,
footer.jc-footer {
  padding: 1rem 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

header.jc-header nav a {
  margin: 0 0.75rem;
  font-weight: 600;
  color: #555;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
section.hero {
  text-align: center;
  padding: 2rem 1rem;
}

section.hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  color: #222;
}

section.hero p {
  margin: 0;
  color: #666;
}

/* ==========================================================================
   Gallery Grid
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.card-body {
  flex: 1;
  padding: 0.75rem;
  text-align: center;
}

.card-body h3 {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #333;
}

.card-footer {
  background: #e91e63;
  padding: 0.5rem;
  text-align: center;
}

.card-footer a {
  color: #fff;
  font-weight: 600;
}

/* ==========================================================================
   Age Gate
   ========================================================================== */
