/* General resets */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


.ul-buttoned {list-style: disc;  line-height: 200%;}
.ul-prices {list-style: disc;  line-height: 200%;font-size:1.5rem;align-items:center}
/* Container */
.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Navbar */

/* Navbar base styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  flex-wrap: wrap;
}
/*Image*/
.photo{
      margin: auto;
      width: max(40%, 200px);
      display: flex;
      justify-content: center; /* Center horizontally */
      align-items: center;   
      margin-bottom:5%
  }
/* Logo */
.logo{
  font-weight: bold;
  color: #0066cc;
  font-size: min(5vw, 1.5rem);
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 20px;
}

/* Navigation links for desktop */
.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}

/* Hamburger menu button - hidden by default on desktop */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    height: 0;
    overflow: hidden;
    display: flex; /* Hidden by default */
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
    transition: height 0.3s ease; 
}

  .nav-links.active {
    display: flex; /* Show when toggled */
    height: 200px;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
  }
}

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(to right, #e6f2ff, #cce6ff); padding: 20px; }
.hero h2 { font-size: 2.5rem; margin-bottom: 20px; }
.hero p { max-width: 600px; margin: auto; margin-bottom: 20px; color: #555; }
.btn { display: inline-block; background: #0066cc; color: #fff; padding: 10px 20px; border-radius: 25px; transition: background 0.3s; }
.btn:hover { background: #004c99; }

/* Sections */
.section { padding: 80px 20px; }
.section.gray { background: #f7f7f7; }
.section h3 { text-align: center; margin-bottom: 30px; font-size: 2rem; }

/* Services grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;align-items:center }
.card { background: #fff; padding: 20px; border-radius: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card h4 { color: #0066cc; margin-bottom: 10px; }


/* prices grid */
.small-grey {color: #888888; font-size: clamp(0.6rem,2vw, 0.8rem) }
.grid-table {width: 100%;margin: auto}
.grid-table th {text-align:left}
.grid-prices {width: min(max(500px, 50%),100%);
              margin: auto;
              font-size: clamp(0.6rem, 2.5vw, 1.0rem);
              table-layout: auto;
             }



.card { background: #fff; padding: 20px; border-radius: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card h4 { color: #0066cc; margin-bottom: 10px; }

.grid-contact {width: min(max(500px, 50%),100%);
               margin: auto;
               font-size: clamp(0.5rem, 3vw, 1.0rem);
               }
.grid-contact tr {text-align:left;margin: auto}

.grid-contact a {color: #0066cc}


/* Contact */
.contact-form { display: grid; gap: 15px; }
.contact-form input, .contact-form textarea { padding: 15px; border: 1px solid #ccc; border-radius: 10px; width: 100%; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #0066cc; }

/* Footer */
.footer { background: #0066cc; color: #fff; padding: 20px 0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: min(2.5vw, 1rem);}
.socials a { margin-left: 15px; color: #fff; }
.socials a:hover { text-decoration: underline; }

/* Back to top button */
#backToTop { position: fixed; bottom: 20px; left: 20px; background: #0066cc; color: #fff; border: none; padding: 12px 16px; border-radius: 50%; cursor: pointer; font-size: 18px; display: none; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
#backToTop:hover { background: #004c99; }

.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}
/* Smooth scrolling */
html { scroll-behavior: smooth; }
