* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

body {
  background: url("image2.jpg") no-repeat center center fixed;
  background-size: cover;
}

h1 {
  text-align: center;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 10px;
}

nav a {
  text-decoration: none;
  color: #ff8fb3;
  font-weight: bold;
  font-size: 28px;
  text-shadow: none;
  white-space: nowrap;
}

nav a:hover {
  color: #ff5f9a;
}

.title {
  margin-top: 40px;
  color: white;
  font-size: 40px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.donuts-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px;
}

.donut {
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.donut:hover {
  transform: scale(1.05);
}

.donut img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
}

.donut h3 {
  margin: 10px 0;
}

.donut p {
  font-weight: bold;
}

button {
  margin-top: 10px;
  background: #ff8fb3;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #ff6fa0;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  animation: pop 0.3s ease;
}

.popup-content p {
  font-size: 22px;
  margin-bottom: 15px;
}

.popup-content button {
  padding: 10px 25px;
}

@keyframes pop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .donuts-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  header {
    padding: 12px 15px;
  }

  .logo {
    height: 60px;
  }

  nav {
    gap: 15px;
    padding-right: 5px;
  }

  nav a {
    font-size: 20px;
  }

  .title {
    font-size: 28px;
    margin-top: 30px;
  }

  .donuts-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}