/* General Styles */
body {
    background: #0a0f29; /* Dark Blue Background */
    color: white;
    text-align: center;
}

/* Hero Section */
.hero-container {
    height: 20vh; /* Adjusted height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px 0;
}

.hero-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 10s infinite alternate ease-in-out;
    opacity: 0.7;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeUp 2s ease-in-out;
    padding-top: 20px;
}

/* Header Title */
.hero-content h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #00aaff; /* Bright Blue for Better Readability */
    text-shadow: 0 0 10px rgba(0, 140, 255, 0.8);
    margin-bottom: 10px; /* Reduced gap between heading and logo */
}

/* Logo */
.logo {
    max-width: 100px; /* Adjusted size */
    margin-top: 10px; /* Added space after heading */
    filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.8));
}

/* Booking Section */
.container {
    margin-top: -20px; /* Pulls form up slightly */
}

/* Booking Card */
.booking-card {
    background: linear-gradient(145deg, #1a2238, #28304f);
    border-radius: 15px;
    position: relative;
    padding: 30px;
    text-align: center;
    animation: glowFade 2s infinite alternate;
}

/* Glowing Edge Animation */
.booking-card::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 15px;
    background: linear-gradient(45deg, rgba(0, 140, 255, 0.6), rgba(0, 255, 255, 0.6), rgba(0, 140, 255, 0.6));
    z-index: -1;
    animation: glowing 2s infinite alternate;
}

/* Make a Reservation Heading */
.text-glow {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00aaff; /* Bright Blue */
    text-shadow: 0 0 15px rgba(0, 140, 255, 0.9);
    margin-bottom: 15px; /* Improved spacing */
}

/* Glowing Edge Effect */
@keyframes glowing {
    0% {
        box-shadow: 0 0 10px rgba(0, 140, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 140, 255, 1);
    }
}

/* Labels */
.text-light {
    color: white !important;
}

/* Glowing Button */
.glow-btn {
    background: #008cff;
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 140, 255, 0.6);
    transition: all 0.3s ease-in-out;
}

.glow-btn:hover {
    box-shadow: 0 0 20px rgba(0, 140, 255, 1);
    transform: scale(1.05);
}
