* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: #f0f8ff; color: #333; }
header { background: #FF3131; color: #fff; padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; }
header h1 { font-size: 2em; }
nav a { color: #fff; margin-left: 20px; text-decoration: none; font-weight: 800; transition: 0.3s; font-size:22px; }
nav a:hover { color: #ffd700; }
.wpl {background-color:green; text-align:center;  height:50px; font-size: 20px; text-shadow: 2px 2px #00000050; color:white;}
.wpl a{color:silver; text-decoration:none;}
.hero { background: url('../images/main.png') center/cover no-repeat; height: 80vh; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; color: #fff; }
.hero h2 { font-size: 3em; margin-bottom: 20px; text-shadow: 2px 2px #000; }
.hero button { text-decoration:none; padding: 15px 30px; font-size: 1.2em; background: #ffd700; border: none; border-radius: 10px; cursor: pointer; transition: 0.3s; }
.hero button a {text-decoration:none;}
.hero button:hover { background: #ffa500; }
 section { padding: 50px; }
.rides { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.ride-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: 0.3s; }
.ride-card:hover { transform: translateY(-10px); }
.ride-card img { width: 100%; height: 200px; object-fit: cover; }
.ride-card h3 { padding: 15px; color: #ff4500;}

.Main-Event { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.main-event-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: 0.3s; text-align: center; 
 height:20%; width: 50%; margin: auto;}
.main-event-card:hover {transform: translateY(-10px);  -webkit-transform:scale(1.5); /* or some other value */
    transform:scale(1.1); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Initial subtle shadow */}
.main-event-card img { width: 100%; height: 100%; object-fit: cover;   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Initial subtle shadow */}
.main-event-card h3 { padding: 15px; color: #ff4500;}
 h4 { color: white; text-align: center; font-size: 30px; text-shadow: 1px 1px 2px gray, 0 0 1em gray, 0 0 0.2em gray; /* Three distinct shadows */}


.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2.5em;
    background: linear-gradient(45deg, #ff4500, #ffd700, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px #00000050;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}
footer { 
  background: #333; 
  color: #fff; 
  text-align: center; 
  padding: 30px; 
  box-shadow:0 -5px 20px rgba(0,0,0,0.3);
  margin: 0;
  }

footer a { color: #ffd700; text-decoration: none; margin: 0 10px; }