@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Ole&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Ole&family=Rock+Salt&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Henny+Penny&family=Ole&family=Rock+Salt&display=swap');

.henny-penny-regular {
    font-family: "Henny Penny", system-ui;
    font-weight: 400;
    font-style: normal;
  }

.rock-salt-regular {
    font-family: "Rock Salt", cursive;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .25rem;
}
  
.ole-regular {
    font-family: "Ole", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  
  .roboto-condensed {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --BGCOLORPRIMARYRED: #ff0800;
}

a {
    color: black;
}

img {
    display: block;
}

li {
    list-style-type: none;
}

body {
    padding: 0 1rem;
    font-family: 'Roboto Condensed', sans-serif;
}

/*  Header and navagation menu start */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    padding: 1.5rem .5rem 1rem .5rem;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 3rem;
    position: relative;
}

.logo {
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: 2rem;
    font-weight: bolder;
    /* background-color: blue; */
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    transition: transform 0.3s ease-in-out;
}

.nav-menu a {
    text-decoration: none;
}

.nav-menu a:hover {
    text-decoration: underline;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease-in-out;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header and navigation menu end */


/* Morning buzz heading start*/
.morning-buzz-heading {
    margin-bottom: .5rem;
    display: none;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background-color: #F5E1D3;
    padding: .25rem 0;
    font-size: 1.5rem;
    position: sticky;
    top: 145px;
    z-index: 1;
}

.morning-buzz-heading-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
/* Morning buzz heading end */

 /* Emergency services section */
 .emergency-services {
    background-color: black;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .red-cross {
    width: 50px;
    margin-right: 15px;
  }
  
  h2 {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
  }
  
  /* Service blocks */
  .services {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .service {
    background-color: #333;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .service h3 {
    font-size: 24px;
    margin: 0;
    color: #e60000; /* Red color for headings */
  }
  
  .service p {
    font-size: 16px;
    margin-top: 10px;
    color: #ddd;
  }
  

.current-day-temperature {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding-left: .25rem;
}

.weather-container {
    display: flex;
    gap: 3rem;
    background-color: #00aaff;
    padding: 1rem;
    border-radius: 5px;
    pointer-events: none;
}

.weather-sponsor {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: .25rem 0;
    font-size: 1.5rem;
}

/* Weather container start */
.weather-forecast-daily {
    display: none;
    gap: 1rem;
    margin: 0 0 .75rem 0;
    color: white;
}

.weather-forecast {
    flex: 1;
}

.weather-sponsor {
    flex: 2;
}
/* Weather container end */

/* Today in Oviedo section start */
.today-in-oviedo-h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.today-in-oviedo-ul {
    display: grid;
    gap: 10px;
    /* justify-content: center; */
    flex-wrap: wrap;
}

.today-in-oviedo-li {
    padding: 1rem;
    display: flex;
    gap: .5rem;
    /* flex: 1 1 calc(25% - 10px); */
    border: 1px solid black;
    width: fit-content;
}

.publix-flex {
    display: flex;
}
/* Today in Oviedo section end */

/* Food and drink specials section start */
.fad-special-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.fad-special {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid #444;
    border-radius: 8px;
    max-width: 400px;
}

.fad-special:hover {
    background-color: #00aaff;
}

.fad-title {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: 1rem;
}

.fad-title-left {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.fad-description-ul {
    display: flex;
    margin-bottom: 1rem;
}

.fad-location {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

/* Food and drink specials section end */ 


/* Things to do page start */
.things-to-do-h1 {
    text-align: center;
}

.activity {
    border-bottom: 1px solid #e6e6e6;
    padding: 1rem 0;
    width: 80%;
}

.activity-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}
.activity-heading {
    display: flex;
    gap: 1rem;
}

.activity-type {
    font-weight: bold;
}

.activity-description {
    margin-top: 1rem;
    line-height: 1.5;
    font-size: small;
}

.activity-info {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.activity-icon-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}
/* Things to do page end */

/* Event page start */
.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-month {
    font-size: 1.25rem;
}

.event-weekday {
    font-size: small;
}

.event-list {
    padding: 1rem 0;
}

.event-list-ul {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    gap: 1rem;
}

.event {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    border: 1px solid black;
} 

.event-name {
    font-size: 1.5rem;
}

.event-description {
    margin-top: .5rem;
}

.event-location {
    margin-top: .5rem;
    font-size: small;
    display: flex;
    justify-content: space-between;
}

.event-button {
    font-size: small;
    border: none;
    background-color: transparent;
    color: blue;
}

.event-details {
    display: none;
}
/* Event page end */


.today-in-oviedo {
    margin: 2rem 0;
}

.events-h1 {
    text-align: center;
}

  
  /* .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  } */
  
  /* .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    position: relative;
  }
   */
  /* .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    cursor: pointer;
  }
   */
  /* .call-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  } */

.advertisement {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.ad-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .25rem .5rem;
    background-color: purple;
    width: fit-content;

}

.advertisement h3 {
    margin: .5rem 0;
    padding: 0 .5rem;
}

.ad-description {
    padding: 0 .5rem;
}

.ad-image-purple {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: purple;
    color: white;
    height: 200px;
    margin: .5rem 0;
    padding: none;
}

.ad-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scaled-image {
    width: 100%; /* or set in pixels, e.g., 300px */
    height: auto; /* keeps the aspect ratio */
}

.pizza-friday-container {
    display: none;
}

.sunday-brunch-container {
    display: none;
}

.taco-tuesday-container {
    display: none;
}

.daily-rundown {
    margin: 0 0 2rem 0;
    background-color: aqua;
}

.daily-rundown-ul {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.daily-rundown-ul li {
    margin: .75rem 0;
}

.daily-rundown-li-flex {
    display: flex;
    gap: 1rem;
    margin: .75rem 0;
}
/* 
.daily-rundown h3 {
    margin-bottom: .5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background-color: #F5E1D3;
    padding: .25rem 0;
    font-size: 1.5rem;
} */

.todays-deals h3 {
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background-color: #F5E1D3;
    padding: .25rem 0;
    font-size: 1.5rem;
}



.food-day-container {
    display: flex;
    gap: 1rem;
}

.food-day-image {
    display: block;
}

/* Works with js to hide past events */
.hidden {
    display: none;
}
/* Works with js to hide past events */

.special-event {
    padding: .5rem .5rem;
    border: 1px solid #e6e6e6;
}

.special-event img {
    margin-bottom: .5rem;
}

.christmas-greeting {
    display: none;
}

.birthdays {
    font-weight: bold;
}

.birthday-list li {
    list-style-type: disc;
    list-style-position: inside;
}

.horoscope-title {
    font-weight: bold;
    font-size: larger;
    margin: 1rem 0 .5rem 0;
}

/* .weather-forecast {
    display: flex;
    gap: 1rem;
} */

.directory-h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.directory-category {
    border-bottom: 2px solid #ff0800;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: #ff0800;
}

.business {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.business:last-child {
    border-bottom: none;
}

.business h3 {
    /* margin: 0 0 0.5rem; */
    color: #333;
}

.business p {
    margin: 0.5rem 0;
}

.business .info {
    margin-left: 1rem;
}

.business-header {
    display: flex;
    align-items: center;
    gap: .5rem;
}

#mc_embed_shell {
    width: 100%;
}

.business-listing-title {
    text-align: center;
    padding: 0 1rem;
}

.claim-button {
    background-color: #e6e6e6;
    padding: .5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}




footer {
    display: flex;
    flex-direction: column;
    background-color: #e6e6e6;
    margin: 1rem 0;
    padding: 1rem 0;
}

footer ul {
    display: flex;
    justify-content: space-around;
    /* padding: 1rem 0; */
    margin: 1rem 0;
}

footer p {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 600px) {
    header {
        padding: 1rem .5rem;
    }

    .header-nav {
        padding-right: 0;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: white;
        border: 1px solid black;
        border-radius: 5px;
        gap: 1rem;
        position: absolute;
        top: 60px;
        left: 40%;
        right: 0;
        z-index: 1;
        padding: 10px;
        transform: translateY(-100%);
        width: 60%;
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
    }

    .nav-menu a:hover {
        text-decoration: none;
    }

    .current-day-temperature {
        margin: .5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .daily-rundown h3 {
        font-size: 1rem;
    }

    .todays-deals h3 {
        font-size: 1rem;
    }

    .weather-container {
        flex-direction: column;
    }

    .weather-sponsor {
        order: 1;
    }

    .weather-forecast {
        order: 2;
    }

    .morning-buzz-heading {
        top: 85px;
    }

    .today-in-oviedo-li {
        padding: 1rem;
        flex: 1 1 40%;
        flex-wrap: wrap;
        border: 1px solid black;
    }
    
    .event-list h1 {
        text-align: center;
    }

    .event-list-ul {
        display: grid;
        width: 100%;
        margin: 0 auto;
        gap: 1rem;
        grid-template-columns: repeat(1, 1fr);
    }


    .services {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 20px;
      }

      .fad-special-ul {
        flex-direction: column;
    }

    .activity {
        width: 100%;
    }
    
}


  /* Responsive design for smaller screens */
  @media (max-width: 600px) {
    .services {
      flex-direction: column;
      align-items: center;
    }
  
    .service {
      width: 80%;
      margin-bottom: 20px;
    }
  }

/* Contact form start */
  .contact-section {
    margin: 3rem auto;
    width: 100%;
    max-width: 40rem;
    /* margin-left: auto; */
    /* margin-right: auto; */
    padding: 3rem 1rem;
    background-color: #e6e6e6;
    border-radius: 8px;
  }

  .contact-h1 {
    text-align: center;
  }
  
  .contact-intro > * + * {
    margin-top: 1rem;
  }
  
  .contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
  }
  
  .contact-description {
    color: rgb(107 114 128);
  }
  
  .form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-label {
    margin-bottom: 0.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    height: 2.5rem;
    width: 100%;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .form-input::placeholder,
  .form-textarea:focus-visible {
    color: #6b7280;
  }
  
  .form-input:focus-visible,
  .form-textarea:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .form-submit {
    width: 100%;
    margin-top: 1.2rem;
    background-color: #3124ca;
    color: #fff;
    padding: 13px 5px;
    border-radius: 0.375rem;
  }
  /* Contact form end */


.united-way {
    display: flex;
    flex-direction: column;
}

