/* ===========================
   GLOBAL BODY STYLES
   =========================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #f5f5f5;
background: url('../images/background.png') no-repeat center center fixed;
background-size: cover;
}

/* ===========================
   OVERLAY
   =========================== */
.overlay {
  background: rgba(0, 0, 0, 0.7);

}

/* ===========================
   NAVIGATION
   =========================== */
nav {
  display: flex;
  gap: 20px;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  align-items: center;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  padding: 5px 0;
}

/* ===========================
   DROPDOWN MENUS
   =========================== */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 160px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.7);
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 8px 12px;
  color: #f5f5f5;
}

.dropdown-content a:hover {
  background: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===========================
   SOCIAL ICONS
   =========================== */
.social-icons {
  margin-left: auto;
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s;
}

social-icons img:hover {
  opacity: 0.6;
}

/* ===========================
   TITLE
   =========================== */
.spooky-title {
  font-family: 'Metal Mania', cursive;
  font-size: 3.5rem;
  text-align: center;
  color: #ff4444;
  font-weight: 700;
  -webkit-text-stroke: 1px #000;
  text-shadow: 0 0 4px #ff0000, 0 0 8px #660000;
  margin-top: 40px;
}

/* ===========================
   LOGO
   =========================== */
.logo {
  display: block;
  margin: 20px auto 0 auto;
  width: 100px;
  height: auto;
}

/* ===========================
   WELCOME TEXT
   =========================== */
.welcome-text {
  font-size: 1.2rem;
  text-align: center;
  color: #f5f5f5;
  margin-top: 20px;
  line-height: 1.8;
  text-shadow: 0 0 5px #000;
  max-width: 700px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-text p {
  margin-bottom: 20px;
}

/* ===========================
   CONTACT FORM CONTAINER
   =========================== */
.contact-container {
  max-width: 600px;
  margin: 40px auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

button {
  width: 100%;
  padding: 12px;
  background: #ff4444;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  text-shadow: 0 0 5px #000;
}

button:hover {
  background: #cc0000;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  text-align: center;
  padding: 20px;
  color: #ccc;
  font-size: 0.7rem;
  margin-top: 40px;
}

/* ===========================
   HERO TEXT
   =========================== */
.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

.hero p {
  line-height: 1.8;
  text-align: left;
  margin-bottom: 20px;
}

/* ===========================
   CASE GRID
   =========================== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* ===========================
   CASE ITEM (NORMAL CARD)
   =========================== */
.case-item {
  text-align: center;
  background: #111319;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.case-item:hover {
  transform: scale(1.05);
}

.case-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.case-item a {
  color: #9f6cff;
  font-size: 1rem;
  text-decoration: none;
}

/* ===========================
   FOLDER ICON ABOVE CASE
   =========================== */
.folder-icon {
  width: 50px;
  display: block;
  margin: 0 auto 10px;
}
