/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fce4ec;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c71585;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: url(images/lindsay-cash-Md_DhaFsnCQ-unsplash.jpg) center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    background-color: rgba(255, 240, 245, 0.85);
    padding: 2rem;
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #c71585;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.hero-btn {
    background-color: #c71585;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.hero-btn:hover {
    background-color: #a0136b;
}

/* Sections */
section {
    padding: 4rem 2rem;
    text-align: center;
}

.about {
    background-color: #fff;
}

.booking {
    background-color: #fce4ec;
}

.book-link {
    display: inline-block;
    background-color: #c71585;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.book-link:hover {
    background-color: #a0136b;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 1s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        width: 100%;
        flex-direction: column;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}