/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
}

/* Header and Footer Styles */
header, footer {
    background-image: linear-gradient(to bottom, #7b0099, #6b5b95); /* Yahoo purple gradient */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    text-align: center;
    animation: fadeInDown 1s ease;
    color: #fff; /* Text color */
}

header img, footer img {
    vertical-align: middle;
}

header nav ul, footer ul {
    list-style: none;
    margin-top: 10px;
}

header nav ul li, footer ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a, footer ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold; /* Make links bold */
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333; /* Custom heading color */
}

.container p {
    margin-bottom: 20px;
    color: #666; /* Custom paragraph color */
}

/* Service Styles */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service {
    flex: 0 1 calc(33.33% - 20px);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    background-color: #fff; /* Service background color */
    animation: zoomIn 0.5s ease;
}

.service img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
    animation: fadeIn 1s ease;
    max-height: 200px;
}

.service h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333; /* Custom service title color */
}

/* Price List Styles */
.price-list table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.price-list th,
.price-list td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.price-list th {
    background-color: #f2f2f2;
}

.hidden {
    display: none;
}

.show-price-list {
    display: block;
    margin: 0 auto;
    margin-top: 50px;
    background-image: linear-gradient(to bottom, #7b0099, #6b5b95); /* Yahoo purple gradient */
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.show-price-list:hover {
    background-color: #555;
    transform: scale(1.1);
}

.price-list {
    animation: slideIn 1s ease;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    animation: fadeIn 1s ease;
}

.booking-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 10px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.booking-form input[type="submit"] {
    background-image: linear-gradient(to bottom, #7b0099, #6b5b95); /* Yahoo purple gradient */
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form input[type="submit"]:hover {
    background-color: #555;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .service {
        flex: 0 1 calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .service {
        flex: 0 1 calc(100% - 20px);
    }

    .service img {
        height: 200px;
    }

    header nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    footer ul li {
        display: block;
        margin-bottom: 10px;
    }
}

/* Keyframe Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




