.menu-btn {
  display: inline-block;
  background: linear-gradient(90deg, #fff 60%, #fffbe6 100%);
  color: #b6862c !important;
  border: 1.5px solid #b6862c;
  border-radius: 2em;
  padding: 0.6em 1.7em;
  margin: 0 0.2em;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.08em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-shadow: 0 0 6px #e6c07b;
  box-shadow: 0 0 8px #b6862c, 0 0 2px #e6c07b;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, border 0.3s;
  position: relative;
  z-index: 1;
}
.menu-btn:hover, .menu-btn:focus {
  background: linear-gradient(90deg, #e6c07b 60%, #b6862c 100%);
  color: #fff !important;
  border: 1.5px solid #e6c07b;
  box-shadow: 0 0 24px #e6c07b, 0 0 8px #b6862c;
  outline: none;
}
.card {
  background: linear-gradient(120deg, #fff 60%, #fffbe6 100%);
  border-radius: 1.5em;
  box-shadow: 0 4px 32px 0 rgba(182,134,44,0.10), 0 1.5px 8px 0 #e6c07b;
  padding: 2em 1.5em 1.5em 1.5em;
  margin: 1.5em 0.5em;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #e6c07b;
}
.card:hover {
  box-shadow: 0 0 48px var(--primary), 0 0 16px var(--accent);
  transform: translateY(-6px) scale(1.03);
}
.card h2 {
  color: #b6862c;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.3em;
  margin-bottom: 0.5em;
  text-shadow: 0 0 8px #e6c07b;
}
.card p {
  color: #b6862c;
  margin-bottom: 0.7em;
  font-size: 1.08em;
}
.card .button {
  margin-top: auto;
}

/* Slider styles */
#slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.5em;
  box-shadow: 0 0 32px #b6862c, 0 0 8px #e6c07b;
  background: linear-gradient(120deg, #fff 60%, #fffbe6 100%);
  margin-bottom: 2em;
  border: 1.5px solid #e6c07b;
}
.slide {
  transition: opacity 0.5s, transform 0.5s;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transform: scale(1.02);
}
#slider .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  font-size: 1.5em;
  box-shadow: 0 0 12px var(--accent);
  opacity: 0.85;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
#slider #prev { left: 1em; }
#slider #next { right: 1em; }
#slider .button:hover {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 0 24px var(--primary);
}

@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 1.2em 0.5em;
  }
  .header, .footer {
    border-radius: 0 0 1em 1em;
  }
  .menu {
    flex-direction: column;
    gap: 0.5em;
    margin-top: 0.5em;
  }
  .menu a, .menu .button {
    width: 90vw;
    text-align: center;
    font-size: 1.1em;
    margin: 0.1em 0;
  }
  .card {
    min-width: 90vw;
    max-width: 98vw;
    padding: 1.2em 0.5em;
    margin: 1em 0.1em;
  }
  #slider {
    max-width: 99vw;
    min-width: 90vw;
  }
  .slide {
    min-height: 180px;
    padding: 0.5em 0.2em;
  }
}
/* --- Futuristic enhancements and responsive menu --- */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2em;
  margin-top: 1em;
  position: relative;
  z-index: 10;
}
.menu a, .menu .button {
  position: relative;
  padding: 0.5em 1.5em;
  border-radius: 1.5em;
  background: linear-gradient(90deg, #fffbe6 60%, #ffe7b3 100%);
  box-shadow: 0 0 8px var(--primary), 0 0 2px var(--accent);
  color: var(--primary);
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.08em;
  text-shadow: 0 0 6px var(--accent);
  overflow: hidden;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.menu a:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--accent) 0%, transparent 80%);
  opacity: 0.3;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: 0;
}
.menu a:hover:before {
  width: 180%;
  height: 180%;
}
.menu a:hover, .menu .button:hover {
  background: linear-gradient(90deg, var(--accent) 60%, var(--primary) 100%);
  color: var(--secondary);
  box-shadow: 0 0 24px var(--accent), 0 0 8px var(--primary);
}

@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 1.2em 0.5em;
  }
  .header, .footer {
    border-radius: 0 0 1em 1em;
  }
  .menu {
    flex-direction: column;
    gap: 0.5em;
    margin-top: 0.5em;
  }
  .menu a, .menu .button {
    width: 90vw;
    text-align: center;
    font-size: 1.1em;
    margin: 0.1em 0;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0.5em 0.05em;
  }
  .header, .footer {
    border-radius: 0 0 0.5em 0.5em;
  }
  .menu {
    flex-direction: column;
    gap: 0.2em;
    margin-top: 0.2em;
  }
  .menu a, .menu .button {
    width: 98vw;
    font-size: 1em;
    padding: 0.7em 0.2em;
  }
  .card {
    min-width: 98vw;
    max-width: 99vw;
    padding: 0.7em 0.2em;
    margin: 0.7em 0.05em;
  }
  #slider {
    max-width: 100vw;
    min-width: 98vw;
  }
  .slide {
    min-height: 120px;
    padding: 0.2em 0.05em;
  }
  h1 {
    font-size: 1.15em !important;
  }
}
/* Futuristic color themes for special events */



:root {
  --primary: #b6862c;      /* Gold */
  --secondary: #fffbe6;    /* Soft white-gold */
  --accent: #e6c07b;       /* Lighter gold */
  --background: #fff;      /* Pure white */
  --text: #b6862c;         /* Gold for text */
}

/* Remove all other theme overrides for a strictly gold/white palette */


.theme-blackfriday {
  --primary: #ff1744;
  --secondary: #212121;
  --accent: #ffd600;
  --background: #000000;
  --text: #ffffff;
}

.theme-valentines {
  --primary: #ff4081;
  --secondary: #fff0f6;
  --accent: #c51162;
  --background: #fce4ec;
  --text: #880e4f;
}

.theme-summer {
  --primary: #ffeb3b;
  --secondary: #00bcd4;
  --accent: #ff9800;
  --background: #e0f7fa;
  --text: #006064;
}

.theme-christmas {
  --primary: #388e3c;
  --secondary: #d32f2f;
  --accent: #fff176;
  --background: #f1f8e9;
  --text: #263238;
}

.theme-default {
  --primary: #00ffe7;
  --secondary: #1a1a2e;
  --accent: #ff00c8;
  --background: #0f0f1c;
  --text: #ffffff;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
  transition: background 0.5s, color 0.5s;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background) 60%, var(--accent) 100%);
}


.header, .footer, .menu {
  background: linear-gradient(90deg, #fffbe6 60%, #ffe7b3 100%);
  color: var(--primary);
  box-shadow: 0 4px 32px 0 rgba(182,134,44,0.08);
  backdrop-filter: blur(8px);
  border-radius: 0 0 2em 2em;
}

.container {
  background: linear-gradient(135deg, #fff 60%, #fffbe6 100%);
  border-radius: 2.5em;
  box-shadow: 0 12px 48px 0 rgba(182,134,44,0.13);
  padding: 3em 3em 2.5em 3em;
  margin: 3.5em auto 3em auto;
  max-width: 900px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  background: linear-gradient(120deg, #fff 60%, #fffbe6 100%);
  border-radius: 2em;
  box-shadow: 0 8px 36px 0 rgba(182,134,44,0.13), 0 1.5px 8px 0 #e6c07b;
  padding: 2.5em 2em 2em 2em;
  margin: 2.2em 1.2em;
  min-width: 300px;
  max-width: 400px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #e6c07b;
}
.card:hover {
  box-shadow: 0 0 48px var(--primary), 0 0 16px var(--accent);
  transform: translateY(-6px) scale(1.03);
  border: 1.5px solid var(--primary);
}
.card h2 {
  color: var(--primary);
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.3em;
  margin-bottom: 0.5em;
  text-shadow: 0 0 8px var(--accent);
}
.card p {
  color: var(--text);
  margin-bottom: 0.7em;
  font-size: 1.08em;
}
.card .button {
  margin-top: auto;
}

#slider {
  position: relative;
  overflow: hidden;
  border-radius: 2em;
  box-shadow: 0 0 40px #b6862c, 0 0 12px #e6c07b;
  background: linear-gradient(120deg, #fff 60%, #fffbe6 100%);
  margin: 2.5em auto 2em auto;
  border: 1.5px solid #e6c07b;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide {
  transition: opacity 0.5s, transform 0.5s;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transform: scale(1.02);
}
#slider .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  font-size: 1.5em;
  box-shadow: 0 0 12px var(--accent);
  opacity: 0.85;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  border: 1.5px solid #e6c07b;
}
#slider #prev { left: 1em; }
#slider #next { right: 1em; }
#slider .button:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 0 24px var(--primary);
}

.container {
  background: linear-gradient(135deg, #fffbe6 60%, #ffe7b3 100%);
  border-radius: 1.5em;
  box-shadow: 0 8px 32px 0 rgba(182,134,44,0.10);
  padding: 2em 2.5em;
  margin: 2em auto;
  max-width: 700px;
  backdrop-filter: blur(6px);
}

.menu a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s;
}
.menu a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.menu a:hover {
  color: var(--accent);
}
.menu a:hover:after {
  width: 100%;
}

.button {
  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
  color: var(--text);
  border: none;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 18px var(--accent), 0 0 2px var(--primary);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  font-size: 1.1em;
  letter-spacing: 0.08em;
  margin-top: 1em;
}
.button:hover {
  background: linear-gradient(90deg, var(--accent) 60%, var(--primary) 100%);
  color: var(--secondary);
  box-shadow: 0 0 32px var(--primary), 0 0 8px var(--accent);
}

input, select, textarea {
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--primary);
  color: var(--text);
  border-radius: 1em;
  padding: 0.7em 1.2em;
  margin: 0.5em 0 1em 0;
  width: 100%;
  font-size: 1em;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}
input:focus, select:focus, textarea:focus {
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 8px var(--primary);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5em;
  background: rgba(255,255,255,0.03);
  border-radius: 1em;
  overflow: hidden;
}
.table th, .table td {
  padding: 1em;
  border-bottom: 1px solid var(--primary);
  color: var(--text);
}
.table th {
  background: rgba(0,255,231,0.10);
  color: var(--primary);
  font-weight: 700;
}
.table tr:last-child td {
  border-bottom: none;
}

.alert {
  padding: 1em 1.5em;
  border-radius: 1em;
  margin: 1em 0;
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
  color: var(--secondary);
  box-shadow: 0 0 8px var(--accent);
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

.button {
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent);
  transition: background 0.3s, color 0.3s;
}
.button:hover {
  background: var(--accent);
  color: var(--secondary);
}
