
:root {
   --bg: #050510; 
  --neon-gold: #ff9800;  
  --neon-blue: #4e96e2;   
   --neon-pink: #ff4fd8; 
  --text: #ffffff;
  --muted: #b0b0b8;
  --card-bg: rgba(20, 20, 30, 0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  background-image: 
  radial-gradient(circle at 85% 90%, rgba(112, 198, 201, 0.12) 0%, transparent 50%),
  radial-gradient(circle at 15% 10%, rgba(128, 75, 25, 0.1) 0%, transparent 50%),
  linear-gradient(180deg, #0c0d66 0%, #bd5c24 100%);
  background-attachment: fixed; 
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

header {
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .logo {
  height: 180px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
}

.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px, 380px));
  gap: 30px;
  justify-content: center;
  padding:40px;
}

.event-card {
  background: var(--card-bg);
  border-radius:16px;
  color: white;
  padding: 25px;
  border: 2px solid transparent;
  position: relative;
  transition:all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-10px)scale(1.02);
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    var(--glow),
    transparent
  );
  transition: 0.6s;
}

.event-card:hover::before {
  left: 100%;
}
.event-card h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(255,255,255,0.1);
}
.event-card .date {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.9;
}
.event-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}


.primary-btn {
margin-top:10px;
margin-bottom:12px;
  background: white;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.event-card.dinner {
  --glow: rgba(255,169,77,0.25);
  border-color: var(--neon-gold);
  box-shadow: 0 0 12px rgba(255,169,77,0.3);
}

.event-card.dinner:hover {
  box-shadow: 0 15px 35px rgba(255,169,77,0.5);
}

.event-card.dinner .primary-btn:hover {
  background: var(--neon-gold);
  box-shadow: 0 0 20px var(--neon-gold);
}

.event-card.drink {
  --glow: rgba(78,194,255,0.25);
  border-color: var(--neon-blue);
  box-shadow: 0 0 12px rgba(78,194,255,0.3);
}

.event-card.drink:hover {
  box-shadow: 0 15px 35px rgba(78,194,255,0.5);
}

.event-card.drink .primary-btn:hover {
  background: var(--neon-blue);
  box-shadow: 0 0 20px var(--neon-blue);
}

.event-card.other {
  --glow: rgba(255,79,216,0.25);
  border-color: var(--neon-pink);
  box-shadow: 0 0 12px rgba(255,79,216,0.3);
}

.event-card.other:hover {
  box-shadow: 0 15px 35px rgba(255,79,216,0.5);
}

.event-card.other .primary-btn:hover {
  background: var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink);
}
.modal-content {
  --modal-main: var(--neon-gold);
  --modal-secondary: var(--neon-blue);
}

.modal-content h3 {
  color: var(--modal-main);
  text-shadow: 0 0 12px var(--modal-main);
}

.modal-content .primary-btn,
.modal-content button {
  background: linear-gradient(
    135deg,
    var(--modal-main),
    var(--modal-secondary)
  );

  box-shadow: 0 0 18px var(--modal-secondary);
	margin-top:20px;
	margin-bottom: 10px;
}

.modal-content input:focus {
  border-color: var(--modal-secondary);
  box-shadow: 0 0 12px var(--modal-secondary);
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

input {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #333;
  background: #0b0b0f;
  color: #fff;
  font-size: 16px;
}

input {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #333;
  background: #0b0b0f;
  color: #fff;
  font-size: 16px;
}
input:focus {
  outline: none;
  border-color: var(--neon-blue);
}


footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}
footer a { color: #fff; text-decoration: none; margin: 0 5px; }
footer p { margin-top: 10px; }

.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap:15px;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.subscribe-bar {
    text-align: center;
    margin: 20px 0;
}

.subscribe-bar button {
    padding: 14px 40px;
    font-size: 16px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-content {
    background: white;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

.modal-content button {
    width: 100%;
    padding: 14px;
    background: black;
    color: white;
    border: none;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
}

.modal-content {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  color: #000;
  border-radius: 28px;
}

.modal-content h3 {
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 15px;
}

.modal-content p {
  color: #111;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.modal-content input {
  font-family: "Poppins", "Inter", sans-serif;
  color: #000;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ccc;
}

.modal-content input::placeholder {
  color: #777;
}


.modal-content .close {
  color: #000;
  opacity: 0.7;
}

.modal-content .close:hover {
  opacity: 1;
}

.event-title{
	display:flex;
	align-items:center;
	gap:8px;
}
.event-icon{
	widht:60px;
	height:60px;
	object-fit:contain;
}
