:root {
  --primary-color: #7633c4ff;
  --primary-gradient: linear-gradient(135deg, #7633c4 0%, #5b28a8 100%);
  --secondary-color: #fcfbf7;
  --accent-color: #177078;
  --success-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --border-color: #e5e7eb;
  --bg-light: #fcfbf7;
  --logo-color: #7633c4ff;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #2bafecff 0%, #e0f2fe 50%, #bae6fd 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: var(--text-primary);
}

/* Header & Navigation */
header {
  background: var(--primary-gradient);
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Banner */
.hero {
  background: url('images2/magicworld.png') no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px #00000066;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 10px;
}

.cta {
  background: #307fc9ff;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(23, 112, 120, 0.3);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(23, 112, 120, 0.4);
  background: linear-gradient(135deg, #1a5f66 0%, #177078 100%);
}

/* Section Styling */
.events {
  padding: 50px 20px;
  background-color: var(--bg-light);
  text-align: center;
}

/* Event Cards */
.event-card {
  display: inline-block;
  width: 260px;
  margin: 20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(23, 112, 120, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.event-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Form Styling */
form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(23, 112, 120, 0.15);
}

form label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
  text-align: left;
}

form input, form select {
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  background: white;
  transition: all 0.3s ease;
}

form input:focus, form select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(23, 112, 120, 0.1);
}

/* Footer */
footer {
  background: var(--primary-gradient);
  color: white;
  text-align: center;
  padding: 20px;
}

footer .socials a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.event-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 2rem;
}

.future-card {
  width: 400px;
  height: 300px
  background: white;
  border-radius: 16px;
  object-fit: contain;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.future-card:hover {
  transform: translateY(-8

footer .socials a:hover {
  transform: scale(1.2);
}

/* Floating Animation */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .event-card {
    width: 90%;
    margin: 10px auto;
  }

  form {
    padding: 1.5rem;
  }
}
.magic-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://media.giphy.com/media/l0MYt5jPR6QX5pnqM/giphy.gif') no-repeat center center/cover;
  color: white;
  text-align: center;
  overflow: hidden;
}

.magic-hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.magic-content {
  position: relative;
  z-index: 2;
}

.magic-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff8a00, #e52e71, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bounceIn 2s ease-in-out;
}

.magic-content p {
  font-size: 1.3rem;
  margin-top: 10px;
  animation: fadeInUp 2s ease forwards;
  color: #fcfbf7;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.magic-hero {
  background: url('https://media.giphy.com/media/l0MYt5jPR6QX5pnqM/giphy.gif') no-repeat center center/cover;
}
.footer-address {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #f3f4f6;
}
.logo-container {
            text-align: center;
            margin-bottom: 1rem;
        }

.logo-container img {
            max-width: 140px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(21, 114, 121, 0.2);
            background: white;
            padding: 8px;
        }
@media (max-width: 768px) {

            .logo-container img {
                max-width: 90px;
            }
        }
