body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: url('https://www.bhmpics.com/downloads/dark-waves-Wallpapers/23.waves-ripples-dark-hd-wallpapers-free-download.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-family: 'Pacifico', cursive;
}

.section {
    padding: 100px 20px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#comments {
    margin-top: 50px;
}

#commentBox {
    width: 80%;
    height: 100px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    padding: 10px;
}

#submitComment {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#commentsSection {
    margin-top: 20px;
}

#ratingSection {
    font-size: 2em;
}

.star {
    font-size: 2em; /* Size of the stars */
    color: gold; /* Color of the stars */
    margin: 0 5px; /* Space between stars */
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: color 0.3s; /* Smooth transition for hover effect */
  }
  
  .star:hover,
  .star:hover ~ .star {
    color: darkorange; /* Color of stars on hover */
  }
  
  .star.selected,
  .star.selected ~ .star {
    color: darkorange; /* Color of selected stars */
  }

footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
    bottom: 0;
    width: 100%;
}

.schedule-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
}

.schedule-content h3, .schedule-content h4, .schedule-content ul {
    margin: 20px 0;
}

.schedule-content ul {
    list-style: none;
    padding: 0;
}

.schedule-content li {
    margin-bottom: 10px;
}

.daily-routine-box {
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px; /* Adjust the maximum width as needed */
}

.daily-routine-table {
    width: 100%;
    border-collapse: collapse;
}

.daily-routine-table th,
.daily-routine-table td {
    padding: 8px;
    border: 1px solid #ddd;
}

.daily-routine-table th {
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.daily-routine-table td {
    font-size: 14px;
    text-align: left;
}





/* Animation for moving cart */
@keyframes moveCart {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.moving-cart {
    animation: moveCart 5s infinite alternate;
}

/* Animation for header */
@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    animation: fadeInHeader 1s ease-in-out;
}

/* Animation for sections */
@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInSection 1s ease-in-out;
}

/* Animation for comment box */
@keyframes slideInCommentBox {
    from {
        opacity: 0;
        transform: translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#commentBox {
    animation: slideInCommentBox 1s ease-in-out;
}

/* Animation for submit button */
@keyframes fadeInSubmitButton {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#submitComment {
    animation: fadeInSubmitButton 1s ease-in-out;
}

/* Animation for comments section */
@keyframes fadeInCommentsSection {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#commentsSection {
    animation: fadeInCommentsSection 1s ease-in-out;
}

/* Animation for rating section */
@keyframes fadeInRatingSection {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#ratingSection {
    animation: fadeInRatingSection 1s ease-in-out;
}

/* Animation for footer */
@keyframes fadeInFooter {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    animation: fadeInFooter 1s ease-in-out;
}


/* Click animation for elements */
.element-click-animation {
    transition: transform 0.2s ease;
}

.element-click-animation:active {
    transform: translateY(2px);
}

