
   body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1a1a1a;
            color: #fff;
        }

         header {
            position: relative;
            padding: 20px;
            background-color: #0D004C;
            text-align: center;
			 max-width: 100%;
        }

        .logo img {
            width: 100px;
            height: auto;
        }

        .logo h1 {
            margin: 0;
            font-size: 28px;
            color: #F3F3F3;
        }

        /* Magical Navigation Menu */
        nav {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
			align-content: center;
		
			
        }

        .menu-icon {
            display: none;
            font-size: 28px;
            color: #F3F3F3;
            cursor: pointer;
            position: relative;
            z-index: 10;
			border: thin #496DE1 solid;
				border-radius: 8px;
			padding: 5px;
        }

        nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            justify-content: center;
            position: relative;
			width: 100%;
        }

        nav ul li {
            margin: 0 20px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: #F3F3F3;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:before {
            content: '\2728'; /* Magical sparkle icon */
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: opacity 0.3s ease, left 0.3s ease;
        }

        nav ul li a:hover:before {
            left: -30px;
            opacity: 1;
        }

        nav ul li a:hover {
            color: #fff;
            text-shadow: 0 0 10px #ffcc00;
        }

        /* Responsive Menu */
        @media screen and (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                background-color: rgba(51, 51, 51, 0.9);
                position: absolute;
                top: 40px;
                right: 10px;
                
                
                border-radius: 10px;
                box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            }

            nav ul.show {
                display: flex;
            }

            .menu-icon {
                display: block;
            }

            nav ul li {
                margin: 10px 0;
            }
        }

        .hero {
            background: url("../images/LMMCBG.png") no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }

        .hero-content h2 {
            font-size: 48px;
            text-shadow: 0 0 20px #000;
        }

        .hero-content p {
            font-size: 20px;
            margin: 20px 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #ff4500;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #ff5714;
        }

        .about, .events, .gallery-preview, .magicianaire, .cta .meh {
            padding: 50px 20px;
            text-align: center;
            background-color: #222;
            margin: 20px 0;
        }

        .about h2, .events h2, .gallery-preview h2, .cta h2 .meh h2 {
            font-size: 36px;
            color: #8DA8FF;
            margin-bottom: 20px;
        }

        .gallery-images img {
            width: 30%;
            margin: 10px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .gallery-images img:hover {
            transform: scale(1.1);
        }

        footer {
            background-color: #0D004C;
            padding: 20px;
            text-align: center;
            color: #E2DCFE;
            /*bottom: 0px;
            position: fixed;*/
            max-width: 100%;
            margin: 0 auto;
            
        }
footer a {
	text-decoration: none;
	color: lightgrey;
}
        .social-media a {
            color: #657576;
            margin: 0 10px;
            font-size: 24px;
            transition: color 0.3s ease;
        }

        .social-media a:hover {
            color: #7FCBCC;
        }

        .quick-nav {
            margin-top: 20px;
            font-size: 14px;
        }

        .quick-nav a {
            color: #E2DCFE;
            text-decoration: none;
            margin: 0 5px;
        }

        .quick-nav a:hover {
            text-decoration: underline;
        }

/* General styles for the error pages */
.error-container {
    text-align: center;
    padding: 50px;
    font-family: 'Arial', sans-serif;
}

.error-container img {
    width: 150px;
    margin-bottom: 20px;
}

.error-container h1 {
    font-size: 2.5em;
    color: #e74c3c;
    margin-bottom: 20px;
}

.error-container p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.error-container .btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
}

.error-container .btn:hover {
    background-color: #2980b9;
}



.content {
     background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.cta {
    padding: 20px;
}


.magicianaire {
  background: linear-gradient(145deg, #1e1e1e, #111);
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 4px solid gold;
  border-bottom: 4px solid gold;
  font-family: 'Arial', sans-serif;
}

.magicianaire-inner {
  max-width: 700px;
  margin: 0 auto;
}

.magicianaire-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.magicianaire h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffd700;
}

.magicianaire h2 span {
  display: block;
  font-size: 2.5rem;
  margin-top: 0.2rem;
}

.magicianaire p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.8rem 0;
}

.magicianaire .intro {
  font-size: 1.2rem;
  font-weight: bold;
}

.magicianaire .final-line {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.btn-play {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(to bottom, #3a2f2f, #1f1a1a);
  border: 2px solid #bfa76f;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.btn-play:hover {
  transform: scale(1.05);
  background: linear-gradient(to bottom, #4b3832, #2a1f1f);
}
.notify {
  margin: 20px auto;
  padding: 15px 20px;
  max-width: 600px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: opacity 0.4s ease;
}

.notify-success {
  background-color: #e7fbe9;
  color: #207b2c;
  border: 1px solid #a2e4af;
}

.notify-error {
  background-color: #fdecea;
  color: #a63232;
  border: 1px solid #f5a6a6;
}

