
@font-face {
  font-family: 'ChickenMan';
  src: url('cm-fonts/akrobat/Akrobat-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ChickenMan';
  src: url('cm-fonts/akrobat/Akrobat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


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

body {
  background: #ffffff;
  color: #003b9f;
  font-family: 'ChickenMan', sans-serif;
  overflow-x: hidden;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
}

.navbar nav a {
  margin: 0 18px;
  text-decoration: none;
  color: #003b9f;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 24px;
  transition: opacity 0.3s ease;
}

.navbar nav a:hover {
  opacity: 0.6;
}

.logo,
.app-icon {
  font-size: 22px;
}


.hero {
  position: relative;
  text-align: center;
  margin-top: 40px;
}

.hero-image {
  width: 100%;
  max-width: 1800px;
  height: 580px;
  margin: 40px auto 0;
  border-radius: 999px; 
  overflow: hidden;
  position: relative;
  animation: heroReveal 1.4s ease forwards;
}


.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      
  object-position: center;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12),
    rgba(0,0,0,0)
  );
  pointer-events: none;
}


.hero-logo {
  position: relative;
  margin-top: -100px; 
  z-index: 100;
  animation: slideUp 1.2s ease forwards;
}

.hero-logo img {
  width: 1360px;
  max-width: 100%;
  padding: 16px 24px;  
}


.hero-content {
  text-align: center;
  padding: 0px 20px 40px;
  animation: fadeZoom 1.2s ease forwards;

}
.hero-content1 {
  text-align: center;
  padding: 0px 20px 40px;
  animation: fadeZoom 1.2s ease forwards;
  padding-bottom: 50px;
  padding-top: 50px;

}

.badge {
  display: inline-block;
  background: #003b9f;
  color: #fff;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 6px;
  margin-bottom: 26px;
  animation: fadeIn 1.2s ease forwards;
}

.subtitle {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 26px 0;
}

.description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  color: #4d6fbf;
}


@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


@media (max-width: 768px) {
  .hero-image {
    height: 260px;
    border-radius: 60px;
  }



  .hero-image {
    width: 80%;
  }

  .hero-logo {
    margin-top: -60px;
  }

  .hero-logo img {
    width: 200px;
  }
}

@media (max-width: 900px) {
  .flavour-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 30px;
  }

  .flavour-text p {
    margin: 0 auto 32px;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
}


.feature-image {
  position: relative;
  padding: 60px;
  animation: imageReveal 1.2s ease forwards;
}

.feature-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 50px;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
  animation: floatImage 5s ease-in-out infinite;
}


.feature-content {
  background: #003b9f;
  color: #ffffff;
  padding: 80px 70px;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50px;
  max-width: 800px;
  animation: contentSlide 1.1s ease forwards;
}

.feature-content h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.feature-lead {
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
  opacity: 0.9;
  margin-bottom: 35px;
}


.feature-points span {
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-size: 14px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.feature-points span:nth-child(1) { animation-delay: 0.3s; }
.feature-points span:nth-child(2) { animation-delay: 0.5s; }
.feature-points span:nth-child(3) { animation-delay: 0.7s; }


@keyframes imageReveal {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contentSlide {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-image {
    padding: 40px 20px;
  }

  .feature-content {
    padding: 60px 30px;
    text-align: center;
  }

  .feature-lead {
    margin: 0 auto 30px;
  }
}


.info-section {
  background: #003b9f;
  color: #ffffff;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  padding: 72px 80px;
  gap: 48px;
}


.info-logo {
  max-width: 200px;
  animation: fadeUp 1s ease forwards;
}

.info-logo img {
  width: 260px;
  margin-bottom: 14px;
}

.info-logo p {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.85;
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 4 blocks in one row */
  gap: 36px;

  width: 100%;
  max-width: 980px;
}


.info-block {
  animation: fadeUp 1.2s ease forwards;
}

.info-block h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  opacity: 0.8;
}

.info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-block ul li {
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
}


.info-block a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.info-block a:hover {
  opacity: 0.6;
}



.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-logo {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.social-logo:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}



.menu-btn {
  display: inline-block;
  margin: 20px 30px;
  padding: 14px 38px;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;

  color: #ffffff;
  background: linear-gradient(135deg, #0a3cff, #1e90ff);

  border-radius: 50px;
  border: 2px solid transparent;

  box-shadow: 0 12px 35px rgba(10, 60, 255, 0.35);
  transition: all 0.35s ease;
}

.menu-btn:hover {
  background: #ffffff;
  color: #0a3cff;
  border: 2px solid #0a3cff;
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(10, 60, 255, 0.45);
}

.menu-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(10, 60, 255, 0.3);
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (max-width: 900px) {
  .info-section {
    flex-direction: column;
    padding: 60px 30px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.follow-instagram {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;

  transition: opacity 0.3s ease, transform 0.3s ease;
}

.follow-instagram img {
  width: 28px;
  height: 28px;
}

.follow-instagram:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.follow-item {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.follow-item img {
  width: 20px;
  height: 20px;
}


.follow-item:hover {
  transform: translateX(5px);
  opacity: 0.7;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
}


.gallery-btn {
  display: inline-block;
  padding: 14px 38px;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;

  color: #0a3cff;
  background: transparent;

  border: 2px solid #0a3cff;
  border-radius: 50px;

  transition: all 0.35s ease;
}


.gallery-btn:hover {
  background: #0a3cff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10, 60, 255, 0.35);
}
html {
  scroll-behavior: smooth;
}
#info {
  scroll-margin-top: 120px;
}


.poster-section {
  background: #003b9f; 
  padding: 120px 20px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.poster-title {
  font-family: 'ChickenMan', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  font-weight: 900;
}

.poster-subtitle {
  max-width: 560px;
  margin: 0 auto 80px;
  font-size: 16px;
  color: #e0e0e0;
  opacity: 0.9;
}

.poster-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
}

.poster-info {
  font-size: 14px;
  color: #ffffff;
  text-align: left;
}

.poster-info h4 {
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 700;
}

.poster-info p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.poster-info span {
  font-weight: 600;
}

.poster-image {
  width: 360px;          
  height: 520px;         
  border-radius: 50%;
  overflow: hidden;
}

.poster-image img {
  width: 360px;
  border-radius: 200px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.35));
  transition: transform 0.5s ease;
  object-fit:cover;
  
}

.poster-image:hover img {
  transform: translateY(-8px) scale(1.05);
}

.menu-sticker {
  position: absolute;
  top: 10%;
  right: -20px;
  background: #ffffff;
  color: #003b9f;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.menu-sticker:hover {
  transform: rotate(-6deg) scale(1.1);
}


@media (max-width: 900px) {
  .poster-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .poster-info {
    text-align: center;
  }

  .menu-sticker {
    right: 50%;
    transform: translateX(50%);
  }
}



.poster-fade {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.poster-fade.wf-in-view {
  opacity: 1;
  transform: translateY(0);
}


.poster-info.left.wf-in-view { transition-delay: 0.1s; }
.poster-image.wf-in-view { transition-delay: 0.25s; }
.poster-info.right.wf-in-view { transition-delay: 0.4s; }


@media (max-width: 900px) {
  .poster-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .poster-info {
    text-align: center;
  }

  .menu-sticker {
    right: 50%;
    transform: translateX(50%) rotate(-10deg);
  }
}



.why-section {
  background: #ffffff;
  text-align: center;
  padding: 120px 20px 140px;
  overflow: hidden;
}

.why-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: #003b9f;
  margin-bottom: 16px;
}

.why-subtitle {
  max-width: 520px;
  margin: 0 auto 70px;
  font-size: 16px;
  color: #4d6fbf;
}


.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


.why-card {
  background: #f5f8ff;
  padding: 60px 40px;
  border-radius: 40px;
  transition: all 0.4s ease;
  animation: fadeUp 1.1s ease forwards;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 59, 159, 0.2);
}


.why-icon {
  font-size: 42px;
  display: inline-block;
  margin-bottom: 22px;
}


.why-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4d6fbf;
}


@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}



.feast-section {
  padding: 0px 20px 90px;
  background:
    radial-gradient(circle at top left, rgba(0, 59, 159, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  color: #003b9f;
}

.feast-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 72px 60px;
  border: 4px solid #003b9f;
  border-radius: 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 59, 159, 0.14);
}

.feast-header {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto 46px;
  text-align: center;
}

.feast-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 18px;
  border: 2px solid #003b9f;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #ffffff;
}

.feast-header h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.feast-subtext-image {
  width: min(100%, 520px);
  display: block;
  margin: 0 auto;
}

.feast-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(320px, 480px) minmax(160px, 1fr);
  align-items: end;
  gap: 28px;
}

.feast-info {
  align-self: center;
  padding: 24px 0;
}

.feast-info h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.feast-info p,
.feast-info a {
  font-size: 15px;
  line-height: 1.7;
  color: #003b9f;
  text-decoration: none;
}

.feast-info-right {
  text-align: right;
}

.feast-follow-image {
  width: min(100%, 220px);
  display: block;
  margin: 0 auto 18px 0;
}

.feast-findus-image {
  width: min(100%, 220px);
  display: block;
  margin: 0 0 18px auto;
}

.feast-contact-list {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.feast-contact-list-left {
  justify-items: start;
}

.feast-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.feast-contact-item:hover {
  transform: translateY(-2px);
  opacity: 0.75;
}

.feast-contact-item img {
  width: 24px;
  height: 24px;
  padding: 5px;
  border-radius: 50%;
  background: #003b9f;
  box-shadow: 0 8px 18px rgba(0, 59, 159, 0.18);
  object-fit: contain;
  flex: 0 0 auto;
}

.feast-contact-item span {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #003b9f;
}

.feast-visual {
  display: flex;
  justify-content: center;
}

.feast-image-wrap {
  position: relative;
  width: min(100%, 430px);
  padding: 26px 10px 10px;
}

.feast-main-image {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  filter: drop-shadow(0 24px 45px rgba(0, 59, 159, 0.2));
}

.feast-sticker {
  position: absolute;
  top: 7%;
  right: -2%;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 0.3s ease;
  z-index: 3;
}

.feast-sticker:hover {
  transform: rotate(-8deg) scale(1.06);
}

.feast-sticker img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feast-sticker span {
  position: relative;
  z-index: 1;
  width: 62px;
  font-weight: 900;
}

.feast-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.95;
}

.feast-deco-top {
  top: 22px;
  left: 50%;
  width: 280px;
  transform: translateX(-50%);
}

.feast-deco-left {
  left: -54px;
  bottom: 58px;
  width: 240px;
  opacity: 0.5;
}

.feast-deco-accent-1 {
  top: 110px;
  left: 36px;
  width: 150px;
}

.feast-deco-accent-2 {
  top: 135px;
  right: 70px;
  width: 150px;
}

.feast-deco-accent-3 {
  bottom: 22px;
  left: 80px;
  width: 180px;
}

.feast-deco-accent-4 {
  bottom: 36px;
  right: 58px;
  width: 190px;
}

@media (max-width: 960px) {
  .feast-shell {
    padding: 56px 28px 42px;
  }

  .feast-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feast-info,
  .feast-info-right {
    text-align: center;
  }

  .feast-findus-image {
    margin: 0 auto 18px;
  }

  .feast-follow-image {
    margin: 0 auto 18px;
  }

  .feast-contact-list {
    justify-items: center;
  }

  .feast-visual {
    order: -1;
  }

  .feast-image-wrap {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .feast-sticker {
    top: 4%;
    right: -4%;
    width: 102px;
  }

  .feast-deco-left {
    width: 180px;
    left: -70px;
  }
}

@media (max-width: 640px) {
  .feast-section {
    padding: 90px 14px 70px;
  }

  .feast-shell {
    padding: 48px 18px 34px;
    border-radius: 32px;
  }

  .feast-header h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .feast-subtext-image {
    width: min(100%, 360px);
  }

  .feast-deco-top {
    width: 170px;
    top: 18px;
  }

  .feast-deco-left,
  .feast-deco-accent-1,
  .feast-deco-accent-2,
  .feast-deco-accent-3,
  .feast-deco-accent-4 {
    opacity: 0.35;
  }

  .feast-deco-accent-1 {
    width: 110px;
    top: 88px;
    left: 8px;
  }

  .feast-deco-accent-2 {
    width: 110px;
    top: 110px;
    right: 8px;
  }

  .feast-deco-accent-3 {
    width: 130px;
    left: 14px;
    bottom: 18px;
  }

  .feast-deco-accent-4 {
    width: 130px;
    right: 10px;
    bottom: 22px;
  }
}
