.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #59aaec; /* primary-color */
    padding: 10px 5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* shadow */
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease; /* transition */
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 600;
    color: #fff; /* white */
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease; /* transition */
    font-size: 1rem;
}

.nav-link:hover {
    background-color: #007acc; /* secondary-color */
    transform: translateY(-2px);
}

.book-btn, .cta-button {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(255,152,0,0.3);
}

.book-btn:hover, .cta-button:hover {
    background-color: #e68900;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255,152,0,0.4);
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 5% 15px;
    font-size: 0.85rem;
    margin-top: 10rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-section p, .footer-section li {
    margin-bottom: 6px;
    opacity: 0.75;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #ff9800;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }

    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slider {
        height: 400px;
    }
}
