body {
    background: linear-gradient(135deg, #18181b 0%, #23232a 100%);
    color: #f3f3f3;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background: #23232a;
    padding: 1.5rem 1rem 1rem 1rem;
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(255,179,71,0.15);
    border: 2px solid #ffb347;
    background: #fff;
}
header h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffb347;
}
header p {
    margin: 0.3rem 0 0 0;
    font-size: 1.1rem;
    color: #b3b3b3;
}
nav {
    margin-top: 1.2rem;
    text-align: center;
}
nav a {
    color: #f3f3f3;
    text-decoration: none;
    margin: 0 1.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a.active {
    background: #ffb347;
    color: #23232a;
}
section {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2.5rem 1.5rem;
    background: rgba(35,35,42,0.97);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(255,179,71,0.08), 0 2px 16px rgba(0,0,0,0.10);
    margin-bottom: 2rem;
    border: 1px solid #292933;
}
section h2 {
    margin-top: 0;
    color: #ffb347;
    font-size: 2rem;
    letter-spacing: 1px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.gallery img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255,179,71,0.15), 0 2px 8px rgba(0,0,0,0.18);
    border: 2px solid #333;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}
.gallery img:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(255,179,71,0.25);
    border-color: #ffb347;
}
.booking-btn, .calendar-link {
    display: inline-block;
    background: linear-gradient(90deg, #ffb347 60%, #ffcc80 100%);
    color: #23232a;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1.2rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(255,179,71,0.15);
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.booking-btn:hover, .calendar-link:hover {
    background: #23232a;
    color: #ffb347;
    border: 2px solid #ffb347;
    box-shadow: 0 4px 16px rgba(255,179,71,0.18);
}
footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #18181b;
    color: #b3b3b3;
    font-size: 1.1rem;
    border-top: 1px solid #333;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}
footer::after {
    content: ' ❤️';
    color: #ffb347;
    font-size: 1.2em;
    vertical-align: middle;
}
.live-chat-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: linear-gradient(90deg, #ffb347 60%, #ffcc80 100%);
    color: #23232a;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255,179,71,0.18), 0 2px 8px rgba(0,0,0,0.18);
    cursor: pointer;
    z-index: 9999;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.live-chat-btn:hover {
    background: #23232a;
    color: #ffb347;
    border: 2px solid #ffb347;
    box-shadow: 0 6px 24px rgba(255,179,71,0.25);
}
@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .gallery {
        flex-direction: column;
        align-items: center;
    }
    .gallery img {
        width: 90vw;
        height: 40vw;
    }
    section {
        padding: 1rem 0.5rem;
    }
    .live-chat-btn {
        right: 10px;
        bottom: 10px;
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
}