/* Global Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, #87CEEB, #1E3A5F); /* Sky-to-deep-ocean gradient */
    color: white;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1); /* Subtle glass effect */
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Smooth background blur */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
}

/* Header Styling */
header {
    background: rgba(30, 58, 95, 0.8); /* Slightly transparent deep ocean blue */
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Soft bottom shadow */
}

/* Ensure images are responsive */
.sailing-ship {
    width: 80%; /* Ensures image scales dynamically */
    max-width: 300px; /* Sets a max width */
    height: auto; /* Maintains aspect ratio */
    display: block;
    margin: 20px auto; /* Centers image */
    border-radius: 8px; /* Soft rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds depth */
}

/* Navigation Menu */
nav ul {
    list-style: none;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700; /* Gold hover effect */
}

/* Main Content */
main {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Buttons */
button {
    padding: 15px 25px;
    font-size: 18px;
    background: linear-gradient(to bottom, #FFD700, #FFA500); /* Gold to orange gradient */
    color: #333;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: linear-gradient(to bottom, #FFA500, #FF8C00); /* Slightly darker hover */
    transform: scale(1.05); /* Subtle zoom effect */
}

/* Footer */
footer {
    padding: 10px;
    background: rgba(30, 58, 95, 0.8);
    color: white;
    margin-top: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2); /* Soft top shadow */
}

/* Responsive Image Tweaks for Mobile */
@media (max-width: 600px) {
    .sailing-ship {
        width: 90%;
        max-width: 250px;
        padding: 10px;
    }

    nav ul {
        padding: 5px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
