/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #8c00ff 0%, #0393cc 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: 800px;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #fff, #87CEEB);
    margin: 20px 0;
}

.image-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.image-link:hover {
    transform: scale(1.05);
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.menu {
    background: rgba(20, 20, 50, 0.9); /* Darker navy blue background */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
    animation: slideUp 1s ease-out 0.5s both, pulse 2s infinite 2s; /* Added pulse animation after slideUp */
    color: #fff; /* White text for contrast */
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
    100% { box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
}

.menu h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #fff; /* White heading */
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu li {
    margin: 10px 0;
}

.menu a {
    text-decoration: none;
    color: #ddd; /* Light gray for links */
    font-weight: 400;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.menu a:hover {
    background-color: #4169E1; /* Royal blue on hover */
    color: #fff;
    transform: translateX(10px);
}

.content {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.video-container {
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 1s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .menu {
        padding: 15px;
    }
    
    .menu a {
        padding: 8px;
    }
    
    iframe {
        width: 100%;
        height: auto;
    }
}