<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Coding with OnesPro*/

/* ================================
   Theme Colors and Global Styles
================================== */
:root {
    --color-primary: #800080;
    --color-accent: #f4b400;
    --color-background: #ffffff;
    --color-secondary-text: #000000;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--color-background);
    color: var(--color-secondary-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================================
   Header and Logo Section
================================== */
header {
    background-color: var(--color-primary);
    color: var(--color-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem 0.5rem;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo img {
    width: 100px;
    height: auto;
    display: block;
}

header h1 {
    font-size: 2rem;
    margin: 0;
    text-align: center;
}

/* ================================
   Navigation Menu
================================== */
nav {
    background-color: var(--color-primary);
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-background);
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

/* Dropdown Styling */
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-primary);
    min-width: 220px;
    z-index: 1000;
}

nav ul li:hover &gt; ul {
    display: block;
}

nav ul li ul li {
    width: 100%;
}

nav ul li ul li a {
    padding: 0.75rem 1rem;
    display: block;
    white-space: nowrap;
}

nav ul li ul li a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

/* ================================
   Responsive Design
================================== */
@media (max-width: 768px) {
    header {
      padding: 1rem;
    }
  
    .header-top {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    nav ul li {
      width: 100%;
      text-align: center;
    }
  
    nav ul li ul {
      position: static;
      display: none; /* Hidden by default, toggled by JS */
      width: 100%;
      background-color: var(--color-primary);
      padding-left: 0;
      transition: all 0.3s ease;
    }
  
    nav ul li ul li {
      text-align: left;
      width: 100%;
    }
  
    nav ul li ul li a {
      padding: 0.75rem 1.5rem;
      display: block;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
  }
  
/* Form container */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form elements */
label {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}
 h1 {
    font-size: 2rem;
    margin: 0;
    text-align: center;
    color: var(--color-primary); /* Set the color to primary */
}
p {
    color:  (--color-secondary-text);
    text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="datetime-local"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="datetime-local"]:focus {
    border-color: var(--color-accent);
    outline: none;
}

/* Button style */
button {
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: var(--color-accent);
}

button:active {
    background-color: var(--color-primary);
}

/* Responsive design */
@media (max-width: 600px) {
    form {
        padding: 15px;
    }

    button {
        font-size: 16px;
    }
}

/* ================================
   Footer Section
================================== */
.footer {
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    gap: 1.5rem;
}

.footer-nav, .footer-contact, .footer-hours, .footer-social {
    min-width: 200px;
    flex: 1;
    margin: 1rem;
}

.footer h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--color-accent);
}

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

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--color-background);
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.footer a:hover::after {
    transform: scaleX(1);
}

.footer p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.footer-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social ul li a {
    font-size: 2rem;
    color: var(--color-background);
    text-decoration: none;
}

.footer-social ul li a:hover {
    color: var(--color-accent);
}

/* Footer Bottom Styling */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--color-accent);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--color-accent);
    text-decoration: none;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav ul li {
        width: 100%;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
</pre></body></html>