/* Hero Header */
.hero-header {
    width: 100%;
    padding: 40px 20px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header Image */
.hero-image {
    width: 100%;
    max-width: 820px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-header {
        padding-top: 20px;
    }
}

/* Global */
body {
    margin: 0;
    padding: 0;
    font-family: Georgia, serif;
    background-color: #f7f1e3;
    color: #2b2b2b;
    text-align: center;
}

header {
    padding: 60px 20px 20px;
}

.logo {
    width: 260px;
    max-width: 80%;
}

.section {
    margin-top: 36px;
    padding: 20px;
}

.hero-header + .section {
    margin-top: 24px;
}

.intro-text {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-wrap: balance;   /* modern browsers */
}

.product-card {
  max-width: 320px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  background: #fff;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}
.products {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.product-card h3 {
  margin: 8px 0 4px;
  font-size: 18px;
}

.price {
  font-weight: bold;
  margin-bottom: 8px;
}

.details {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 14px;
}

.details li {
  margin-bottom: 4px;
}

.buy-button {
  display: inline-block;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.buy-button:hover {
  opacity: 0.85;
}

/* Events */
.events-section {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

#events-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 0;
}

#events-list li {
    padding: 14px 0;
    border-bottom: 1px solid #d2bba2;
    font-size: 1.1rem;
}

#events-list li:last-child {
    border-bottom: none;
}

.event-location a {
    font-size: 0.95rem;
    margin-top: 6px;
    display: inline-block;
    color: #2b2b2b;
    text-decoration: none;
    opacity: 0.75;
}

.event-location a:hover {
    text-decoration: underline;
    opacity: 1;
}

p {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Divider */
.divider {
    width: 60%;
    margin: 40px auto;
    border: 0;
    border-top: 2px solid #d2bba2;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    max-width: 280px;
    border-radius: 6px;
}

/* Instagram */
.instagram-section {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.instagram-embed {
    display: flex;
    justify-content: center;
}

/* Contact Form */
#contact h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form {
    max-width: 520px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 6px;
    border: 2px solid #d2bba2;
    background: #f7f1e3;
    font-size: 1rem;
    font-family: Georgia, serif;
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-form button {
    padding: 14px;
    background-color: #d46b2c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: opacity .2s ease;
}

.contact-form button:hover {
    opacity: 0.85;
}

.form-status {
    display: none;
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    margin-top: 80px;
    padding: 40px 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* -------------------------------
   Scorpion Game (unchanged logic)
-------------------------------- */
#scorpion-game {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 9999;
    overflow: visible;
}

#scorpion {
    position: absolute;
    bottom: 10px;
    left: -120px;
    width: 120px;
    height: 80px;
    pointer-events: none;
}

#scorpion-img {
    width: 100px;
    image-rendering: pixelated;
}

#tangerine-carried {
    position: absolute;
    top: -10px;
    left: 40px;
    width: 40px;
    pointer-events: auto;
    cursor: grab;
    image-rendering: pixelated;
}

.tangerine-dropped {
    position: absolute;
    width: 40px;
    cursor: grab;
    image-rendering: pixelated;
}

.bottom-logo {
    margin-top: 40px;
    opacity: 0.95;
}

/* -------------------------------
   Scorpion Game – Gravity Layer
-------------------------------- */

/* Allow falling tangerines to exist anywhere */
.tangerine-world {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
}

/* While dragging */
.tangerine-dragging {
    cursor: grabbing;
    pointer-events: auto;
}

/* Falling animation helper */
.tangerine-falling {
    pointer-events: none;
}

