* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, system-ui, sans-serif;
  background: #f0f4f8;
  color: #222;
  line-height: 1.6;
  overflow-y: scroll;
  scrollbar-width: none;
}
body::-webkit-scrollbar {
  width: 0;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #6ea7c4;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
  color: #ffffff;
  font-size: 22px;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

nav ul li a:hover {
  background-color: #000;
  color: #6ea7c4;
}

.contact-btn {
  background: #000;
  color: #6ea7c4;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #000;
  color: #fff;
}

.hero,
.hero1 {
  margin-top: 100px;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #a3d2ca, #6ea7c4);
  color: #fff;
}

.hero1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h1,
.hero1 h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p,
.hero1 p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero .btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border-radius: 25px;
  background: #000;
  color: #6ea7c4;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #222;
}

.teksti {
  text-align: left;
}

.features {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.features a {
  text-decoration: none;
}

.card {
  background: #6f9bb6;
  color: #fff;
  border-radius: 15px;
  padding: 40px 20px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.teksticel {
  text-align: center;
  background-color: #6f9bb6;
  padding: 15px;
}

.celbreties {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  width: 100%;
  background-color: #6f9bb6;
}

.boxcel {
  width: 350px;
  background-color: #6ea7c4;
  border-radius: 10px;
}

.boxcel img {
  width: 55%;
  padding: 5px;
  border-radius: 10px;
}

.boxcel p {
  padding: 5px;
}

.about {
  text-align: center;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about p {
  font-size: 18px;
  color: #444;
}

footer {
  background: #6ea7c4;
  padding: 30px;
  text-align: center;
  margin-top: 50px;
}

footer p {
  color: #000;
}

footer a {
  color: #000;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

.space {
  width: 100%;
  height: 75px;
}

.space19,
.div {
  width: 100%;
  height: 50px;
}

h6 {
  color: #000;
}

.quotes {
  padding-top: 15px;
  text-align: center;
}

@media (max-width: 1024px) {
  nav ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1,
  .hero1 h1 {
    font-size: 36px;
  }

  .hero p,
  .hero1 p {
    font-size: 18px;
  }

  .hero1 {
    flex-direction: column;
    text-align: center;
  }

  .hero1 img {
    width: 80%;
    margin-top: 20px;
  }

  .features {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .card {
    flex: 1 1 45%;
  }

  .celbreties {
    flex-wrap: wrap;
  }

  .boxcel {
    width: 45%;
  }
}

/* HAMBURGER (minimal, uses your colors) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  align-items: center;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 5px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Desktop default remains unchanged */
nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Responsive menu behavior */
@media (max-width: 850px) {
  .hamburger { display: flex; }

  nav ul {
    position: absolute;
    top: 80px;
    right: 0;
    background: #6ea7c4;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    max-height: 0;                /* collapsed */
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 20px;
    z-index: 999;
  }

  /* When active, allow more height and allow scrolling */
  nav ul.active {
    max-height: 1000px;          /* big value so entire menu can appear */
    padding: 20px;
    overflow-y: auto;            /* if extremely long, it scrolls */
  }

  nav ul li { width: 100%; }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
  }

  .contact-btn {
    background: #000;
    color: #6ea7c4;
    display: block;
    text-align: center;
    margin-top: 10px;
    border-radius: 20px;
    padding: 10px;
  }
}
