/* ===========================
   Reset and Base Styles
=========================== */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for Easy Customization */
:root {
    --primary-color: #4a90e2;
    --secondary-color: #50e3c2;
    --accent-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --font-family: 'Poppins', sans-serif;
    --transition-speed: 0.3s;
}

/* Typography */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* ===========================
   Navigation Bar
=========================== */

.navbar {
    background: var(--dark-color);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo h1 {
    display: inline;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar .nav-links li {
    margin-left: 25px;
}

.navbar .nav-links a {
    color: #fff;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.navbar .nav-links a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===========================
   Hero Section
=========================== */

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Optional overlay for better text visibility */
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background var(--transition-speed), transform var(--transition-speed);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* ===========================
   Services Section
=========================== */

.services {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--dark-color);
}

.card p {
    font-size: 16px;
    color: #555;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* ===========================
   Packages Section
=========================== */

.packages {
    background: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.packages h2 {
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.package-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.package-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: #555;
}

.package-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.package-card .btn {
    align-self: center;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    transition: background var(--transition-speed), transform var(--transition-speed);
}

.package-card .btn:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* ===========================
   Our Team Section
=========================== */

.team-section {
    text-align: center;
    padding: 50px 0;
    background-color: #fff;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
}

.team-section h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background-color: #009688;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.member-info h3 {
    font-size: 1.8rem;
    color: #009688;
    margin-bottom: 10px;
}

.position {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.member-info p {
    line-height: 1.6;
}

/* ===========================
   Why Choose Us Section
=========================== */

.why-choose {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.why-choose h2 {
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.why-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

.why-card p {
    font-size: 16px;
    color: #555;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* ===========================
   Testimonials Section
=========================== */

.testimonials {
    background: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.testimonial {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    width: 80%;
    max-width: 800px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
}

.testimonial:nth-child(1) {
    animation-delay: 0.5s;
}

.testimonial:nth-child(2) {
    animation-delay: 1s;
}

.testimonial p {
    font-style: italic;
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.testimonial h4 {
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 600;
}

/* ===========================
   Contact Section
=========================== */

.contact {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-form {
    max-width: 600px;
    margin: auto;
    text-align: left;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group span {
    color: var(--accent-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact .btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed), transform var(--transition-speed);
}

.contact .btn:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.contact-info {
    margin-top: 40px;
    font-size: 16px;
    color: #555;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ===========================
   Footer
=========================== */

footer {
    background: var(--dark-color);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 15px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: color var(--transition-speed);
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* ===========================
   Form Styles (Login, Sign-Up, Profile, Contact)
=========================== */

form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    margin: 40px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

form label span {
    color: var(--accent-color);
}

form input, form textarea, form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color var(--transition-speed);
}

form input:focus, form textarea:focus, form select:focus {
    border-color: var(--primary-color);
    outline: none;
}

form button {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed), transform var(--transition-speed);
}

form button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.error-message {
    color: #dc3545; /* Red for errors */
    text-align: center;
    margin-top: 10px;
    display: none;
}

.success-message {
    color: #28a745; /* Green for success */
    text-align: center;
    margin-top: 10px;
    display: none;
}

/* ===========================
   Button Styles
=========================== */

.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #6c757d; /* Grey for secondary actions */
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: scale(1.05);
}

/* ===========================
   Toggle Password Styles
=========================== */

.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #555;
    transition: color var(--transition-speed);
}

.toggle-password:hover {
    color: var(--primary-color);
}

/* ===========================
   Login Section Styles
=========================== 
form{
    margin:0 2rem;
}
.form-title{
    font-size:1.5rem;
    font-weight:bold;
    text-align:center;
    padding:1.3rem;
    margin-bottom:0.4rem;
}
input{
    color:inherit;
    width:100%;
    background-color:transparent;
    border:none;
    border-bottom:1px solid #757575;
    padding-left:1.5rem;
    font-size:15px;
}
.input-group{
    padding:1% 0;
    position:relative;

}
.input-group i{
    position:absolute;
    color:black;
}
input:focus{
    background-color: transparent;
    outline:transparent;
    border-bottom:2px solid hsl(327,90%,28%);
}
input::placeholder{
    color:transparent;
}
label{
    color:#757575;
    position:relative;
    left:1.2em;
    top:-1.3em;
    cursor:auto;
    transition:0.3s ease all;
}
input:focus~label,input:not(:placeholder-shown)~label{
    top:-3em;
    color:hsl(327,90%,28%);
    font-size:15px;
}
.recover{
    text-align:right;
    font-size:1rem;
    margin-bottom:1rem;

}
.recover a{
    text-decoration:none;
    color:rgb(125,125,235);
}
.recover a:hover{
    color:blue;
    text-decoration:underline;
}
button{
    font-size:1.1rem;
    padding:8px 0;
    border-radius:5px;
    outline:none;
    border:none;
    width:100%;
    background:rgb(125,125,235);
    color:white;
    cursor:pointer;
    transition:0.9s;
}
button:hover{
    background:#07001f;
}
.or{
    font-size:1.1rem;
    margin-top:0.5rem;
    text-align:center;
}
.icons{
    text-align:center;
}
.icons i{
    color:rgb(125,125,235);
    padding:0.8rem 1.5rem;
    border-radius:10px;
    font-size:1.5rem;
    cursor:pointer;
    border:2px solid #dfe9f5;
    margin:0 15px;
    transition:1s;
}
.icons i:hover{
    background:#07001f;
    font-size:1.6rem;
    border:2px solid rgb(125,125,235);
}
.links{
    display:flex;
    justify-content:space-around;
    padding:0 4rem;
    margin-top:0.9rem;
    font-weight:bold;
}
 #signUpButton, #signInButton{
    color:rgb(125,125,235);
    border:none;
    background-color:transparent;
    font-size:1rem;
    font-weight:bold;
}
#signUpButton:hover, #signInButton:hover {
    text-decoration:underline;
    color:blue;
}
/* ===========================
   Sign-Up Section Styles
=========================== 

.signup-section {
    background: #f4f4f9;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.signup-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.signup-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.signup-form .form-group {
    margin-bottom: 20px;
}

.signup-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.signup-form label span {
    color: var(--accent-color);
}

.signup-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color var(--transition-speed);
}

.signup-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.signup-form .btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed), transform var(--transition-speed);
}

.signup-form .btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
}

.login-link a:hover {
    color: var(--accent-color);
}

/* ===========================
   Dashboard Section Styles
=========================== */

.dashboard-section {
    background: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.dashboard-section h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.dashboard-section p {
    font-size: 1.2rem;
    color: #555;
}

.welcome-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.dashboard-main {
    padding: 50px 0;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: left;
}

.card p {
    margin-bottom: 10px;
    color: #555;
    text-align: left;
}

.card ul {
    list-style: none;
    padding-left: 0;
    color: #555;
}

.card ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.card ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.card .btn {
    margin-top: 10px;
}

.recent-activities {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.recent-activities h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: left;
}

.recent-activities ul {
    list-style: none;
    padding-left: 0;
    color: #555;
}

.recent-activities li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.recent-activities li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ===========================
   Footer Styles
=========================== */

footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color var(--transition-speed);
}

footer .social-icons a:hover {
    color: var(--accent-color); /* Accent color on hover */
}

/* ===========================
   Animations
=========================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Responsive Styles
=========================== */

@media (max-width: 1200px) {
    .service-cards,
    .package-cards,
    .why-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .navbar .nav-links {
        flex-direction: column;
        background: var(--dark-color);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        display: none;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 70vh;
    }

    .hero h2 {
        font-size: 28px;
    }

    .testimonial-slider::before {
        left: 10px;
    }

    .testimonial-slider::after {
        right: 10px;
    }

    .testimonial {
        width: 90%;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 24px;
    }

    .package-card h3,
    .service-cards .card h3,
    .why-card h3 {
        font-size: 20px;
    }

    .package-card .price {
        font-size: 24px;
    }

    .testimonial {
        width: 100%;
    }

    .social-icons a {
        font-size: 16px;
    }

    /* Additional Responsive Adjustments */

    .login-section, .signup-section {
        padding: 60px 20px;
    }

    .login-container, .signup-container {
        padding: 30px 20px;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-section h2 {
        font-size: 2rem;
    }

    .dashboard-section p {
        font-size: 1rem;
    }
}

/* ===========================
   Accessibility Enhancements
=========================== */

a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===========================
   Dark Mode Styles (Optional)
=========================== */

body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

body.dark-mode .navbar {
    background-color: #1f1f1f;
}

body.dark-mode .navbar .nav-links {
    background-color: #1f1f1f;
}

body.dark-mode .card {
    background-color: #1f1f1f;
    box-shadow: 0 4px 6px rgba(255,255,255,0.1);
}

body.dark-mode .card h3, 
body.dark-mode .recent-activities h3 {
    color: #bb86fc;
}

body.dark-mode .card p, 
body.dark-mode .recent-activities li {
    color: #e0e0e0;
}

body.dark-mode .btn {
    background-color: #bb86fc;
}

body.dark-mode .btn:hover {
    background-color: #9a67ea;
}

body.dark-mode .error-message {
    color: #cf6679;
}

body.dark-mode footer {
    background-color: #1f1f1f;
}

body.dark-mode a {
    color: #bb86fc;
}

body.dark-mode a:hover {
    color: var(--accent-color);
}

/* Dark Mode Toggle Button */
#darkModeToggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 20px;
    transition: color var(--transition-speed);
}

#darkModeToggle:hover {
    color: var(--accent-color);
}
.messageDiv{
    background-color: hsl(327,90%,28%);
    color:white;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    font-size: 1rem;
    opacity: 0;
    animation:fadeOut 7s forwards
}
