
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 150%;
}
body {
  font-family: 'Bubblegum Sans', cursive;
  background-color: #ffbf87;
  color: #333;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

#paw-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #eb8934;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  z-index: 2;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: 0.5rem;
}
.logo span {
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links li a {
  font-weight: 500;
  color: #fff;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #fde5d2;
}

.section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 3rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.section.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.section h1, .section h2, .section h3, .section h4 {
  color: #eb8934;
  margin-bottom: 1rem;
}
.section p {
  max-width: 600px;
  margin: 0.5rem auto 2rem;
  line-height: 1.6;
}
.hero-cat {
  width: 250px;
  margin-top: 2rem;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.video-highlight {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  background: #eb8934;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  margin: 0.5rem;
  transition: background 0.3s;
}
.cta-button:hover {
  background: #d37a2f;
}

.paw {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url('images/cat-paw.png') center/cover no-repeat;
  animation: floatPaw 10s linear infinite;
  opacity: 0;
}
@keyframes floatPaw {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 1;
  }
}

.store-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.store-tab {
  flex: 0 0 170px;
  background: #eb8934;
  color: #fff;
  border: none;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  text-align: center;
  white-space: nowrap;
}
.store-tab:hover { background: #d37a2f; }
.active-tab { background: #d37a2f; }


.sub-store-section {
  display: none;
  margin-top: 2rem;
}
.active-store {
  display: block;
}

.merch-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.merch-pack {
  width: 240px;
  min-height: 320px;
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
}
.merch-img {
  width: 150px;
  margin-bottom: 1rem;
}
.coming-soon-btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #eb8934;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.coming-soon-btn:hover { background: #fde5d2; }

.service-store {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.service-pack {
  flex: 1 1 250px;
  border-radius: 8px;
  color: #fff;
  padding: 1.5rem;
  max-width: 300px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}
.service-pack h4 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.service-pack-img {
  max-width: 80%;
  height: auto;
  margin-bottom: 1rem;
}
.order-button {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #eb8934;
  border: none;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.order-button:hover {
  background: #fde5d2;
  color: #eb8934;
}
.night-call-pack { background: #2c3e50; }
.valentine-pack { background: #ff91a4; }
.ramadhan-pack { background: #57b14c; }

.game-pack {
  width: 300px;
  min-height: 350px;
  margin: 0 auto;
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
}
.discord-button {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #153cbd;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.discord-button:hover { opacity: 0.8; }
.discord-icon {
  width: 20px;
  height: 20px;
}

.carousel-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
  padding: 1.5rem;
}
.carousel-slide {
  display: none;
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.3s ease;
}
.carousel-slide blockquote p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #333;
}
.carousel-slide cite {
  display: block;
  color: #eb8934;
  font-weight: bold;
}
.carousel-controls {
  text-align: center;
  margin-top: 1rem;
}
.carousel-controls button {
  background: #fff;
  color: #eb8934;
  border: none;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.carousel-controls button:hover {
  background: #fde5d2;
  color: #eb8934;
  transform: scale(1.05);
}
.carousel-controls i {
  font-size: 1.2rem;
}

.business-form {
  background-color: #eb8934;
  border-radius: 4px;
  padding: 1.5rem;
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.business-form input,
.business-form textarea {
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
  background-color: #fff;
}
.business-form button {
  background: #fff;
  color: #eb8934;
  padding: 0.75rem 1.2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.business-form button:hover {
  background: #fde5d2;
  color: #eb8934;
  transform: translateY(-2px);
}

.social-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.social-links li a {
  color: #eb8934;
  transition: color 0.3s, transform 0.3s;
}
.social-links li a:hover {
  color: #333;
  transform: scale(1.1);
}

.footer {
  background-color: #eb8934;
  text-align: center;
  padding: 1rem;
  z-index: 2;
}
.footer p {
  color: #fff;
  font-size: 0.9rem;
}

.modal-overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); 
  z-index: 1000;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal-container {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-continue {
  display: block;
  margin: 20px auto 0;
  background: #eb8934;
  color: #fff;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}


.table-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

.cute-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.1rem;
  text-align: center;
  border: 2px solid #f7a399;
}
.cute-table thead {
  background-color: #ffddd2;
}
.cute-table th,
.cute-table td {
  padding: 12px;
  border: 1px solid #f7a399;
}
.cute-table tbody tr:nth-child(even) {
  background-color: #ffe9d6;
}
.cute-table tbody tr:hover {
  background-color: #ffd1b3;
}

@media (max-width: 768px) {
  .nav-links { gap: 0.5rem; }
  .merch-container { flex-direction: column; align-items: center; }
  .service-store { flex-direction: column; align-items: center; }
  .service-pack { max-width: 90%; }
  .game-pack { width: 80%; }
}
