/* Base colors from your image */
:root {
  --dark-bg: #281643; /* deep purple background */
  --orange: #ff4d00;
--edge-blur: 9px;   /* default blur amount */
  --dark-bg: #281643;  /* your background purple */
  --orange1: #ff4600;
  --orange2: #ff6a2a; /* bright purple for text on hover */
  --light-purple: #dbc4ff; 
}

/* Make the page fill the screen */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background-color: var(--dark-bg);
  color: white;
  text-align: center;
}

/* Wrap main content */
main {
  flex: 1; /* pushes footer down */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Centered header logo */
header {
  padding-top: 2rem;
}

.logo {
  max-width: 522px;
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.event-description {
  max-width: 600px;
  margin: 2rem 6rem 0 6rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--light-purple);
}


.buttons {
  margin: 3rem auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
}


.btn {
  position: relative;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--dark-bg); /* default white text */
  background: transparent;
  border: none;
  border-radius: 999px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  isolation: isolate;
  z-index: 0;
  transition: color 0.3s ease;
}

/* blurred orange blob */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, var(--orange1), var(--orange2));
  filter: blur(var(--edge-blur));
  opacity: 0.95;
  z-index: -1;
  pointer-events: none;
  transition: filter 0.3s ease, transform 0.2s ease;
}


.btn:hover::before {
  filter: blur(0);   /* no blur */
  transform: scale(1.02); /* subtle lift */
}


.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.social-button {
  color: white;
  opacity: 1.0;
}

.social-button img {
  width: 26px;
  height: 26px;
}

.social-button:hover {
  opacity: 0.7;
}

footer {
  background-color: #2e234b;
  color: #fff;
  font-size: 10px;
  width: 100%;
  text-align: center;
  padding: 8px 0;
}
