/* styles.css */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f7f9fb;
  color: #2C3E50;
}
.event-count-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  text-decoration: underline;
 
}

.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
/*nav bar logo*/
.logo {
  mix-blend-mode: darken;
  height:90px;
  width: auto;
  margin: 10px ;

  border: 3px solid rgb(81, 140, 196);
  border-radius:10px;
  box-shadow: 0 0 4px rgb(81, 140, 196), 0 0 4px rgb(81, 140, 196);
 

}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;  
  padding: 0;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #2C3E50;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2980b9;
}

#title {
  background: linear-gradient(120deg, #3498db, #6dd5fa);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.title-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.title-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: white;
  color: #2980b9;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: #2980b9;
  color: white;
}

#main-content {
  text-align: center;
  padding: 2rem;
}

.brands-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.content-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-logo {
  mix-blend-mode: darken;
  width: 100px;  
  height: auto;
  margin: 10px;
  
}
.Service-image {
  
  width: 50%;  
  height: auto;
  margin: 10px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-color: #ecf0f1;
  color: #2C3E50;
  font-size: 0.9rem;
  gap: 1rem;
}

.footer-text {
  margin-top: 1rem;
  gap :  1rem;
}
/*footer logo*/
footer .f-logo {
  mix-blend-mode: darken;
  height: 150px;  
  width: auto;    
  margin: 30px 0; 
}

.datetime-display {
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}



h1 {
  color: #0a0606;
  text-align: center;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul.installation-info > li {
  margin: 15px 0;
}

ul > li > ul {
  padding-left: 20px;
}

ul > li > ul > li {
  margin-bottom: 5px;
}

strong {
  color: #007BFF;
}




/* Remove bullet points from all lists */
ul, ol {
  list-style-type: none;
  padding-left: 0;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 2;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background-color: #2C3E50;
  margin: 3px 0;
  transition: 0.4s;
}

/* Responsive Adjustments */
@media screen and (min-width: 768px) {
  .footer-content{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer-logo{
 order:1; 
 mix-blend-mode: darken;

}
.footer-text{
  order: -1;
  
}


@media screen and (min-width: 769px) {
  .navbar {
    padding: 1rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .event-count-timer {
    flex: 1;
  }
 /*nav bar logo*/
  .f-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
   
  }

  .hamburger-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .menu-nav {
    display: block !important;
    position: static;
    width: auto;
    background: none;
    box-shadow: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: flex-end;
  }

  .menu-icon {
    display: none !important;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }

  .hamburger-menu {
    justify-content: center;
    position: relative;
  }

  .navbar {
    flex-direction: column;
    padding: 1rem;
    position: relative;
  }

  .logo {
    margin-bottom: 1rem;
    height: 40px;
  }

  .nav-links {
    flex-direction: column;
    align-items: wrap;
    gap: 1rem;
    width: 100%;
  }

  .nav-link {
    display: block;
    text-align: center;
    padding: 0.5rem;
    width: 100%;
  }

  /* Typography Adjustments */
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  /* Section and Container Adjustments */
  .container-fluid {
    padding: 5% 3%;
  }

  #title .title-container {
    text-align: center;
    padding: 1rem;
  }

  /* Images and Media */
  .title-image, .press-logo  {
    max-width: 100%;
    height: auto;
  }

  /* Ensure proper touch targets */
  .feature-box, .nav-link {
    min-height: 44px;
    min-width: 44px;
  }

  .menu-icon {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }

  .menu-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .menu-toggle:checked ~ .menu-nav {
    display: block;
  }

  .menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    width: 100%;
    text-align: center;
  }
}
