/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e0e0e;
  color: #eee;
  line-height: 1.6;
}

/* WRAPPER & CONTAINERS */
.wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.card {
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.15);
  padding: 30px;
  margin-bottom: 40px;
}

/* HEADER & NAVBAR */
.site-header {
  background: linear-gradient(90deg, #000, #3b1b00);
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

.logo {
  color: #ffa64d;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.main-nav {
  text-align: center;
}

.main-nav a {
  color: #eee;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #ffa64d;
}

/* HERO SECTION */
.hero {
  color: white;
  padding: 120px 0;
  text-align: center;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.7);
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-family: 'ZombieHunger', cursive;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #ff8533;
  transform: translateY(-2px);
}

.btn.alt {
  background-color: #444;
}

.btn.alt:hover {
  background-color: #666;
}

/* HEADINGS */
h2 {
  color: #ffa64d;
  font-size: 2rem;
  margin-bottom: 15px;
}

h3 {
  color: #ff8533;
  margin-top: 10px;
}

/* TEXT */
.lead {
  color: #ccc;
  margin-bottom: 15px;
}

/* TWO-COLUMN LAYOUT */
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.two-col div {
  flex: 1 1 300px;
}

/* SHOP SECTION */
.shop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.shop-form, .shop-list {
  flex: 1 1 400px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  margin: 5px 0 10px;
  border: none;
  border-radius: 6px;
  background-color: #2a2a2a;
  color: #eee;
}

input:focus, textarea:focus {
  outline: 2px solid #ff6600;
}

.form-actions {
  display: flex;
  gap: 10px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.product {
  background: #222;
  padding: 15px;
  border-radius: 8px;
  width: calc(50% - 10px);
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.15);
}

.product h4 {
  color: #ffa64d;
  margin-bottom: 5px;
}

.p-meta {
  font-size: 0.9rem;
  color: #ccc;
}

.p-desc {
  color: #bbb;
}

/* GALLERY SECTION */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.gallery-grid img {
  width: calc(25% - 15px);
  min-width: 200px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

/* CONTACT FORM */
#contactForm {
  max-width: 500px;
  margin: 0 auto;
}

/* REGISTRATION PAGE */
.reg-item {
  background: #222;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.15);
}

/* FOOTER */
.site-footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.95rem;
  margin-top: 40px;
}

.site-footer a {
  color: #ffa64d;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  .gallery-grid img {
    width: calc(50% - 10px);
  }
  .product {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-grid img {
    width: 100%;
  }
  .main-nav a {
    display: block;
    margin: 8px 0;
  }
}

/* 🎃 FONT HALLOWEEN CUSTOM */

@font-face {
  font-family: 'ZombieHunger';
  src: url('Zombie_Hunger.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.zombie-font {
  font-family: 'ZombieHunger', cursive;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}