/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}

/* Header Styles */
header {
    background-color: #222; /* Darker shade for better contrast */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.logo {
    max-width: 150px; /* Adjust width as needed */
    margin-bottom: 1rem; /* Space between logo and text */
    border-radius: 8px; /* Rounded corners for logo */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s; /* Smooth color transition */
}

nav ul li a:hover,
nav ul li a.active {
    text-decoration: underline;
    color: #ff1493; /* Highlight color on hover/active */
}

/* Main Content Styles */
main {
    padding: 2rem;
}

/* Hero Section Styles */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 2rem;
    justify-content: center; /* Center content */
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: add rounded corners */
    animation: fadeIn 0.8s ease; /* Fade-in animation for image */
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.hero-image img:hover {
    transform: scale(1.05); /* Scale image on hover */
}

.hero-text {
    flex: 1;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin-left: 2rem;
    color: #fff;
    position: relative;
    animation: slideIn 1s ease-in-out; /* Animation for text */
}

.book-now-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 18px;
    background-color: #ff69b4;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s; /* Transition for hover effect */
    animation: fadeIn 0.8s ease; /* Fade-in animation for button */
}

.book-now-button:hover {
    background-color: #ff85c1;
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

/* Menu Section Styles */
.menu {
    position: relative;
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.menu-background {
    background-image: url('content/gel-overlay.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.menu h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.menu-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 8px;
    color: #fff;
    position: relative;
    z-index: 1;
    border: 2px solid #fff;
    animation: fadeIn 0.8s ease; /* Fade-in animation for menu */
}

.menu-content h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.menu-content ul {
    list-style: none;
    padding: 0;
}

.menu-content ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.menu-content ul li span {
    font-weight: bold;
}

/* Contact Section Styles */
.contact-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* Centered content */
    padding: 2rem;
    gap: 2rem; /* Space between columns */
}

.contact-image {
    flex: 1;
    min-width: 300px; /* Ensure a minimum width */
}

.contact-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: add rounded corners */
    animation: fadeIn 0.8s ease; /* Fade-in animation for image */
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.contact-image img:hover {
    transform: scale(1.05); /* Scale image on hover */
}

.contact-text {
    flex: 1;
    max-width: 600px; /* Optional: restrict maximum width */
    text-align: center; /* Align text to the center */
}

/* Footer Styles */
footer {
    background-color: #222; /* Consistent with header */
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content a {
    color: #ff1493; /* Button color for links */
    text-decoration: none;
    transition: color 0.3s; /* Smooth color transition */
}

.footer-content a:hover {
    color: #ff69b4; /* Lighter on hover */
}

.footer-content .book-now-button {
    margin-top: 1rem;
    background-color: #ff69b4;
    color: #fff;
    padding: 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s; /* Transition for hover effect */
    animation: fadeIn 0.8s ease; /* Fade-in animation for button */
}

.footer-content .book-now-button:hover {
    background-color: #ff85c1;
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-text {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center; /* Center text on smaller screens */
    }

    .contact-section {
        flex-direction: column;
        align-items: center; /* Center columns */
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
