* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

.navbar {
  background-color: #ffe8fa;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link:hover {
  color: #ff4bc4;
}
.nav-link.active {
  color: #ff4bc4;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff4bc4;
  border-radius: 1px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
  background-color: #ffe8fa;
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section {
  background-color: #ffe8fa;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #ff4bc4;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.section-desc {
  font-size: 18px;
  color: #333;
  max-width: 920px;
  line-height: 1.8;
  margin-bottom: 38px;
}

.section-visual {
  margin-top: 10px;
}

.section-image {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.focus-section {
  background-color: #ffe8fa;
}

.focus-card {
  background: url("./assets/our-foucs-bg.png") center/cover no-repeat;
  border-radius: 28px;
  padding: 42px 28px 50px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.focus-title {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.focus-visual {
  display: flex;
  justify-content: flex-start;
  margin: 60px 0;
}

.focus-image {
  width: 300px;
  height: auto;
  margin: 0 auto;
}

.focus-desc {
  font-size: 16px;
  line-height: 1.8;
  max-width: 980px;
}

.create-section {
  background-color: #ffe8fa;
}

.create-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 440px) minmax(280px, 1fr);
  align-items: start;
  gap: 42px;
  margin-top: 18px;
}

.create-card {
  background: linear-gradient(180deg, rgba(255, 75, 196, 0.95), rgba(255, 75, 196, 0.65));
  color: #fff;
  border-radius: 22px;
  padding: 28px 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.create-card-title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.create-card-desc {
  font-size: 15px;
  line-height: 1.9;
}

.create-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.create-image {
  width: 320px;
  max-width: 100%;
  height: auto;
}

.contact-section {
  background-color: #ffe8fa;
  text-align: center;
}

.contact-subtitle {
  color: #333;
  margin-top: 6px;
}

.contact-email {
  margin-top: 6px;
  margin-bottom: 28px;
}
.contact-email a {
  color: #333;
  font-weight: 700;
  text-decoration: none;
}

.contact-banner {
  background-color: rgba(255, 75, 196, 0.12);
  border-radius: 22px;
  padding: 28px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  color: #ff4bc4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-text {
  max-width: 440px;
}

.contact-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid #ff4bc4;
  color: #ff4bc4;
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.contact-btn:hover {
  background: #ff4bc4;
  color: #fff;
}

.site-footer {
  text-align: center;
  padding: 22px 0 32px;
  color: #777;
}

@media (max-width: 1200px) {
  .create-grid {
    grid-template-columns: 1fr auto 1fr;
  }
}
@media (max-width: 992px) {
  .create-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .create-visual {
    order: 2;
  }
  .create-image {
    transform: none;
    width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .nav-container {
    padding: 0 15px;
  }
  .brand-name {
    font-size: 16px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffe8fa;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    gap: 25px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }
  .nav-link.active::after {
    bottom: 0;
  }
  .hamburger {
    display: flex;
  }
  .hero-container {
    padding: 0 15px;
  }
  .hero-image {
    border-radius: 15px;
  }
  .section-container {
    padding: 40px 15px;
  }
  .section-title {
    font-size: 30px;
  }
  .section-desc {
    font-size: 16px;
  }
  .focus-card {
    padding: 22px 18px 28px;
    border-radius: 18px;
    background-position: center right;
  }
  .focus-title {
    font-size: 28px;
  }
  .focus-image {
    width: 110px;
  }
  .focus-desc {
    font-size: 15px;
  }
  .contact-banner {
    grid-template-columns: 1fr;
    padding: 22px 14px;
  }
}
@media (max-width: 480px) {
  .nav-container {
    padding: 0 10px;
  }
  .brand-name {
    font-size: 14px;
  }
  .nav-logo {
    width: 35px;
    height: 35px;
  }
  .hero-section {
    min-height: 300px;
  }
  .hero-container {
    padding: 0 10px;
  }
  .hero-image {
    border-radius: 10px;
  }
  .section-container {
    padding: 36px 12px;
  }
  .section-title {
    font-size: 26px;
  }
  .focus-title {
    font-size: 24px;
  }
  .focus-image {
    width: 96px;
  }
}
