* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(24, 23, 23, 0.7);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

header nav a {
    margin: 0 20px;
    color: #ece6e6;
    text-decoration: none;
    font-size: 20px;
}

header nav a:hover {
    text-decoration: underline;
}

.logo img {
    height: 50px;
    margin: 0 20px;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav .nav-links li {
    display: inline;
}

nav .nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    text-decoration: underline; /* Hover effect */
}

.login-btn {
    font-weight: bold;
    color: #ff6f61; /* Highlight color for login */
}

main {
    padding: 2rem;
    text-align: center;
    background-color: #000000; /* Updated to light background */
}

.booking-image {
    width: 200px;
    height: 180px;
    margin-top: 3rem;
    margin-bottom: -3rem;
    margin-right: -3rem;
    margin-left: -12rem;
}
.booking-section h1 {
    font-size: 4rem;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 1rem;
    margin-bottom: 3rem;
    margin-right: -8rem;
    text-transform: uppercase;
    color: #eeeeee; /* Updated heading color */
}

.booking-section h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: chainWrite 0.3s ease-in-out forwards;
}

@keyframes chainWrite {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.booking-section h1 span:nth-child(1) { animation-delay: 0.1s; }
.booking-section h1 span:nth-child(2) { animation-delay: 0.2s; }
.booking-section h1 span:nth-child(3) { animation-delay: 0.3s; }
.booking-section h1 span:nth-child(4) { animation-delay: 0.4s; }
.booking-section h1 span:nth-child(5) { animation-delay: 0.5s; }
.booking-section h1 span:nth-child(6) { animation-delay: 0.6s; }
.booking-section h1 span:nth-child(7) { animation-delay: 0.7s; }

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.service-card {
    background-color: rgb(200, 193, 193); 
    border-radius: 25px;
    padding: 1.8rem;
    width: 450px;
    height: 220px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4e4a0a; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.service-card p {
    margin: 0.5rem 0;
    color: #000000; /* Subtle text color */
}

.service-card p1 {
    font-size: 1.2rem;
    color: #4e4a0a; /* Subtle text color */
    margin-bottom: 10px;
    font-weight: 790;
}
.service-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6f61; /* Highlight color */
    margin-bottom: 1rem;
}

.add-btn {
    display: inline-block;
    background-color: #ff6f61; /* Highlight button color */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-btn:hover {
    background-color: #f50d01; /* Hover effect for button */
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 11px;
    background-color: rgba(24, 23, 23, 0.7);
    font-size: 14px;
}



