body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    box-sizing: border-box;
    background: #f4f4f4;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: linear-gradient(to bottom, #fafafa, #d2b48c);
    padding: 15px 30px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #6a4c9c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Logo Styling */
.navbar-logo {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    transition: color 0.3s ease;
}

/* Navbar Links */
.navbar-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.navbar-links a {
    text-decoration: none;
    color: #1c1c3c;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover & Active States */
.navbar-links a:hover,
.navbar-links a.active {
    background-color: #6a4c9c;
    color: white;
    transform: translateY(-3px);
}

/* Advanced Design for Login Button */
#login-button {
    background: linear-gradient(145deg, #6ec1e4, #3498DB);
    /* Light Blue gradient background */
    color: white;
    padding: 10px 15px;
    font-size: 18px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.3);
    /* Double shadow for depth */
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Effect with Glow */
#login-button:hover {
    background: linear-gradient(145deg, #3498DB, #2980B9);
    /* Darker blue gradient on hover */
    color: #fff;
    transform: scale(1.1);
    /* Slightly enlarge the button */
    box-shadow: 0 12px 15px rgba(0, 0, 0, 0.25), 0 -5px 10px rgba(255, 255, 255, 0.2);
}

#login-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
}

#login-button:hover::after {
    opacity: 1;
    top: 0;
    left: 0;
}

/* Menu Button for Mobile */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6a4c9c;
}

.content {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    padding: 20px;
    background-color: #f4f4f4;
    box-sizing: border-box;
}

/* Ads Container Styling */
.ads-container {
    background-color: #f1f8ff;
    border-radius: 12px;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: #333;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    max-width: 400px;
    margin: 20px auto 20px;
    /* Move slightly up by adjusting margin-top */
    border-left: 5px solid #6A4C9C;
    /* Blue accent border */
}

.ads-container:hover {
    transform: translateY(-10px);
    /* Hover effect */
}

/* Heading Styling */
.ads-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2980b9;
    /* Blue color */
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Ads List */
.ads-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    font-size: 18px;
    color: #555;
}

.ads-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
}

.ads-list li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #27ae60;
    /* Green checkmark */
}

/* Contact Section */
.ads-contact {
    font-size: 18px;
    font-weight: 600;
    color: #e74c3c;
    /* Red color */
    margin-top: 20px;
}

.ads-contact strong {
    color: #2c3e50;
    /* Darker shade for emphasis */
    font-weight: 700;
}

.main-content {
    flex-grow: 1;
    text-align: center;
    color: #333;
}

/* Pricing Card - Light Glassmorphic Effect */
.pricing-card {
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.4), rgba(210, 180, 140, 0.4));
    /* Light gray to tan */
    backdrop-filter: blur(12px);
    /* Glass effect */
    padding: 40px;
    border-radius: 12px;
    width: 80%;
    height: 87%;
    max-width: 1200px;
    margin: 30px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #2c3e50;
    /* Dark text for contrast */
    border-left: 5px solid #6A4C9C;
    border-right: 5px solid #6A4C9C;
    /* 1px border with the given color */
}


/* Pricing Container */
.pricing-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* General Styling for Pricing Boxes */
.pricing-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 48%;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Header Styling for Pricing Boxes */
.pricing-box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Details */
.pricing-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.pricing-details p {
    font-size: 18px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* Icon Color Adjustments */
.pricing-details i {
    color: #3498db;
    /* Change icon color (blue) */
    margin-right: 10px;
}

/* Weekend Pricing Box */
.weekend-pricing {
    border-left: 6px solid #3498db;
    /* Change border color */
    background: #f7f9fc;
    /* Light blue background */
    border-radius: 8px;
}

.weekend-pricing h2 {
    color: #3498db;
    /* Color match with border */
}

/* Weekday Pricing Box */
.weekday-pricing {
    border-left: 6px solid #27ae60;
    /* Green border for weekday */
    background: #e8f8e8;
    /* Light green background */
    border-radius: 8px;
}

.weekday-pricing h2 {
    color: #27ae60;
    /* Color match with border */
}

/* Footer Styling */
footer {
    background: linear-gradient(to bottom, #fafafa, #d2b48c);
    color: #1c1c3c;
    padding: 40px 30px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Content Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    text-align: left;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.footer-links,
.footer-contact,
.footer-social {
    width: 30%;
}

/* Footer Links and Contact Styling */
.footer-links a,
.footer-contact a {
    display: block;
    text-decoration: none;
    color: #1c1c3c;
    margin-bottom: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #6a4c9c;
}

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.footer-social .social-icon {
    background-color: #1c1c3c;
    color: white;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-social .social-icon:hover {
    background-color: #6a4c9c;
}

/* Google Map */
.footer-map {
    margin: 20px auto;
    max-width: 1200px;
    text-align: center;
}

/* Bottom Footer */
.footer-bottom {
    background-color: #6a4c9c;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* Media Queries for Responsiveness */

@media (max-width: 1200px) {
    .content {
        flex-direction: column;
        /* Stack content vertically */
    }

    .ads-container {
        flex: 1 0 auto;
        /* Make ads container take full width */
        width: 100%;
        margin-bottom: 20px;
    }

    .pricing-box {
        width: 100%;
        /* Make pricing boxes full width */
        margin-bottom: 20px;
    }

    .footer-content {
        flex-direction: column;
        /* Stack footer content */
        align-items: center;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        width: 100%;
        /* Full width for footer sections */
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .navbar-links {
        display: none;
        /* Hide links on smaller screens */
        flex-direction: column;
        position: absolute;
        top: 70px;
        /* Adjust as needed */
        left: 0;
        width: 100%;
        background-color: #fafafa;
        /* Match navbar background */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .navbar-links.active {
        display: flex;
        /* Show links when menu is toggled */
    }

    .navbar-links a {
        padding: 15px;
        display: block;
    }

    .menu-btn {
        display: block;
        /* Show menu button */
    }

    .navbar {
        flex-wrap: wrap;
        /* allow wrapping in navbar */
    }

    .navbar-logo {
        width: 100%;
        /* make logo take full width */
        text-align: center;
        /* center the logo */
        margin-bottom: 10px;
        /* add some space below */
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
        /* Show menu button on small screens */
    }

    .navbar-links {
        display: none;
        /* Hide navbar links initially */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        width: 200px;
        text-align: center;
    }

    .navbar-links a {
        display: block;
        padding: 12px;
        font-size: 16px;
        border-bottom: 1px solid #d2b48c;
    }

    .navbar-links a:last-child {
        border-bottom: none;
    }

    .navbar-links.show {
        display: flex;
    }

    .pricing-card {
        padding: 20px;
        /* Reduce padding on smaller screens */
    }
}