/* Global Styles */
body {
    font-family: 'Roboto', sans-serif; /* Change font for all text except the title */
    margin: 0;
    padding: 0;
    background-color: #f8f0f5;
    color: #333;
}

/* Header Styles */
header {
    background-color: #ff99cc;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative; /* Ensure header is relatively positioned */
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-family: "Dancing Script", cursive; /* Change font for the title */
}

/* Logo Styles */
.logo {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    left: 20px;
}

/* Navigation Styles */
nav {
    background-color: #ffccf3;
    padding: 10px;
}

.navbar {
    position: sticky; /* Make the navigation bar sticky */
    top: 0; /* Stick it to the top of its containing element */
    z-index: 1000; /* Ensure it appears above other content */
}

/* Add active class to highlight current page in navbar */
.navbar-nav .nav-item .nav-link.active {
    background-color: #ff66b3; /* Change background color for active item */
    color: white; /* Change text color for active item */
    border-radius: 5px; /* Add rounded corners */
    padding: 8px 16px; /* Add padding */
    transition: background-color 0.3s ease, color 0.3s ease; /* Add transition for smoother color change */
}

/* Hover effect for nav links */
.navbar-nav .nav-item .nav-link:hover {
    background-color: #ff99cc; /* Change background color on hover */
    color: white; /* Change text color on hover */
    border-radius: 5px; /* Add rounded corners */
    padding: 8px 16px; /* Add padding */
    transition: background-color 0.3s ease, color 0.3s ease; /* Add transition for smoother color change */
}

.navbar-nav .nav-item .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff66b3;
}

/* Hero Section Styles */
.hero {
    background-image: url('images/background2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    animation: fadeInBackground 5s infinite alternate;
}

@keyframes fadeInBackground {
    0% { filter: brightness(50%); }
    100% { filter: brightness(100%); }
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif; /* Change font for the title */
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif; /* Change font for the content */
}

/* Page Content Styles */
.content {
    padding: 20px;
    background-color: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content h2 {
    margin-top: 0;
    color: #ff66b3;
    font-family: 'Montserrat', sans-serif; /* Change font for the headings */
}

.content p {
    line-height: 1.6;
    font-family: 'Roboto', sans-serif; /* Change font for the content */
}

/* Footer Styles */
footer {
    background-color: #ff99cc;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


.fadeIn {
    animation: fadeIn 1s ease-in-out;
}

/* Contact Information Styles */
.contact-info,
.location-map,
.short-message {
    text-align: center;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Price List Styles */
.price-list {
    margin-top: 20px;
    text-align: center;
}

.price-list table {
    width: 100%;
    border-collapse: collapse;
}

.price-list th,
.price-list td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

/* Media Query for Mobile */
@media only screen and (max-width: 600px) {
    .logo {
        width: 30px;
        height: 30px;
        top: 10px;
        left: 10px;
    }
}

#darkModeToggle {
    position: absolute;
    top: 20px; 
    right: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #ff99cc; /* Footer background color */
    color: white; /* Footer text color */
    text-align: center; /* Center-align the content */
    padding: 20px; /* Add padding for better appearance */
    opacity: 0; /* Initially set opacity to 0 */
    animation: fadeIn 2s ease-in-out forwards; /* Apply fade-in animation */
}

/* Styling for number text */
.numbertext {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    color: #ffffff; /* White text color */
    font-size: 12px; /* Adjust font size as needed */
    padding: 4px 8px; /* Adjust padding as needed */
    border-radius: 5px; /* Rounded corners */
    position: absolute; /* Position the number text absolutely */
    top: 8px; /* Adjust top position as needed */
    left: 8px; /* Adjust left position as needed */
}