/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.main-header {
    background-color: grey; /* Changed from green to grey */
    color: white;
    padding: 20px;
    text-align: center;
}

.main-header h1 {
    font-size: 3rem;
    margin: 0;
}

.main-header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Navigation */
.main-nav {
    background: #333;
    color: white;
    padding: 1rem 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4CAF50;
}

/* Overlay Section */
.overlay-text {
    position: relative;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    background-image: url('../Images/IMG_3017.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay-text h2 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin: 20px 0;
    animation: slideInDown 1.5s ease-out;
}

.overlay-text p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 15px 0;
    animation: fadeIn 2s ease-in-out;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.button {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background: #4CAF50;
    transform: scale(1.1);
}

/* Footer */
.main-footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.main-footer a {
    color: #4CAF50;
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

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

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