/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f2f2f2;
  padding: 20px;
  margin: 0;
}

/* Welcome popup */


#welcome-popup h1 {
  font-size: 32px;
}

#welcome-popup p {
  margin: 10px 0;
}

#welcome-popup button {
  padding: 10px 20px;
  font-size: 16px;
  background: #ffe600;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
}

header {
  background-color: #003b2f;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 22px;
}

.editor {
  color: #ffe600;
  font-weight: bold;
}

.top-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: #fff;
  flex-wrap: wrap;
}

.top-logo img {
  height: 90px;
}

.title-text {
  font-size: 18px;
  font-weight: bold;
  color: red;
}

.main-logo img {
  height: 130px;
}

.title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}

.red { color: #b30000; }
.green { color: #004d26; }

.sub-text {
  font-size: 20px;
  text-align: center;
  color: #3c3c3c;
  margin-top: -5px;
}

.bottom-text {
  font-size: 28px;
  color: #cc0000;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.header {
  padding: 20px;
  font-size: 16px;
  color: #054c4c;
  text-align: center;
}

.contact {
  background-color: #5e00c5;
  color: white;
  padding: 15px;
  font-size: 18px;
  text-align: center;
}

.contact img {
  vertical-align: middle;
  width: 24px;
  margin-right: 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.category-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

.category-box:hover {
  transform: scale(1.03);
}

.category-box img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.category-title {
  padding: 10px;
  font-weight: 600;
  text-align: center;
  font-size: 15px;
}

.highlight-text {
  text-align: center;
  padding: 15px;
  font-weight: bold;
}

.highlight-text span {
  color: red;
  font-size: 18px;
}

.socials {
  background-color: #003b2f;
  padding: 10px;
  text-align: center;
}

.socials p {
  color: white;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  text-decoration: none;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  padding: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  background-color: #444;
}

.top-section {
  padding: 20px;
  background-color: #000;
  text-align: center;
}

.top-section iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
}

.grid-container img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 32px;
  }

  .main-logo img {
    height: 80px;
  }

  .category-box img {
    height: 100px;
  }

  .bottom-text {
    font-size: 24px;
  }

  .sub-text {
    font-size: 16px;
  }

  .grid-container {
    grid-template-columns: 1fr;
  }
}

#welcome-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 1000;
}

main {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

