
@font-face {
  font-family: 'Baby Doll';
  src: url('font/BabyDoll.woff2') format('woff2'),
       url('font/BabyDoll.woff') format('woff');
}

@font-face {
  font-family: 'PORKYS_';
  src: url('font/PORKYS_.TTF') format('truetype');
}


body {
  background: #ffe4ec url("images 2/pink2.jpg") no-repeat center center;
  background-size: cover; 
  font-family: 'Baby Doll', sans-serif;
  color: #7a343f;
}


.wrap {
  width: 1080px;      
  margin: 20px auto;
}

#container {
  background: #fff0f5;
  border: 2px solid #ff9fb8;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 159, 184, 0.6);
  padding: 12px;
}


#header {
  background:
    url("images 2/flowers.png") center 20% / cover no-repeat,
    linear-gradient(#ffd1e1, #ff9fb8);
  height: 220px;
  border-radius: 12px 12px 0 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  text-align: center;
  white-space: nowrap;
  font-family: 'Dreamer TM', cursive;
  font-size: 100px;
  letter-spacing: 1px;
  color: #ff7cc8;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff,
     0 0 6px rgba(255,182,206,0.8),
     0 0 12px rgba(255,105,180,0.6),
     0 0 18px rgba(255,105,180,0.4);
}



.welcome-bar {
  width: 100%;
  background: #ffb8ce;
  border-radius: 10px;
  padding: 5px 0;
  margin: 15px 0;
  border: 2px solid #aa4152;
  overflow: hidden;
  white-space: nowrap;
}

.welcome-text {
  display: inline-block;
  padding-left: 100%;
  font-family: 'PORKYS_';
  font-size: 1.3rem;
  color: #fff;
  text-shadow: 2px 2px #aa4152;
  animation: scroll-left 14s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


.nav {
  display: flex;
  justify-content: space-evenly;
  gap: 6px;
  margin: 10px 0;
}

.nav-btn {
  background: linear-gradient(#fff0f5, #ffb8ce);
  border: 2px solid #ff9fb8;
  border-radius: 12px;
  padding: 8px 18px;
  font-family: 'PORKYS_';
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  text-align: center;
  text-shadow: 1px 1px 0 #ff6aa3;
}

.nav-btn:hover {
  background: linear-gradient(#ffffff, #ffc6da);
}


.gallery-box {
  width: 100%;
  background: #fff0f5;
  border: 2px solid #ff9fb8;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,159,184,0.3);
  margin-bottom: 20px;
}

.gallery-box .titlebar {
  background: linear-gradient(#ffd1e1, #ffb8ce);
  border-bottom: 2px solid #ff9fb8;
  padding: 8px 12px;
}

.gallery-box .titlebar h2 {
  margin: 0;
  font-family: 'PORKYS_';
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 1px 1px #ff6aa3;
}

.gallery-box .content {
  padding: 10px;
  display: grid;
 grid-template-columns: repeat(3, 1fr); 
  gap: 18px;
}

.gallery-box .content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-box .content img:hover {
  transform: scale(1.05);
}

.photocards .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 10px;
}

.big-gif {
  margin-top: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
}


.keychain-hang {
  scale: 1.2;
  position: absolute;
  top: 18px;
  left: 70px;
  width: 280px;
  height: auto;
  transform: rotate(10deg);
  z-index: 10;
  pointer-events: none;
  max-width: none;
}


#footer {
  margin-top: 10px;
  padding: 12px;
  text-align: center;
  font-family: 'PORKYS_';
  color: #aa4152;
  background: linear-gradient(#ffd1e1, #ff9fb8);
  border-radius: 0 0 12px 12px;
}

