    * {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Helvetica Neue', sans-serif;
  overflow-x: hidden;
  background-color: #fff;
  cursor: url('https://cdn-icons-png.flaticon.com/512/32/32177.png') 64 64, auto;
}

    .grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 8px;
      width: 100vw;
  height: 100vh;
    }
    .grid-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-template-rows: repeat(2, auto);   /* 2 rows */
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.grid-gallery .grid-item {
  aspect-ratio: 1 / 1;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-gallery .grid-item div {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-gallery .grid-item div:hover {
  transform: scale(1.05);
}
.grid6 {
      display: grid;
      grid-template-columns: 4fr,1fr;
      gap: 8px;
    }
   /* Responsive Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  padding: 8px;
}


/* Individual Grid Cell */
.cell {
  background-color: #ffeef2;
  border-radius: 8px;
  padding: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  text-align: center;
}
.cell a {
  color: #541616;
  text-decoration: none;
}
.cell h1 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.cell p {
  font-size: 0.9rem;
}
.cell:hover {
  background-color: #ffd6e0;
  box-shadow: 0 0 12px rgba(255, 90, 122, 0.2);
}
.center {
  background-color: #fff;
  border: 2px dashed #ff5a7a;
  font-weight: bold;
  font-size: 1.2rem;
  color: #ff5a7a;
}


    /* Optional: Make it responsive on smaller screens */
    @media (max-width: 90%) {
      .grid {
        grid-template-columns: repeat(3, 80px);
        grid-template-rows: repeat(3, 80px);
      }
    }
  
a{text-decoration: none; color:rgb(84, 22, 22);}
ul{display:inline;}
  .grid2 {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 8px;
    }

/* Navigation Header */
.nav-header {
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}
.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff5a7a;
  text-decoration: none;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
  position: relative;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ff5a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover {
  color: #ff5a7a;
}
.main-nav a:hover::after {
  transform: scaleX(1);
}

/* Responsive (optional) */
@media (max-width: 768px) {
  .main-nav ul {
    gap: 16px;
  }

  .nav-header {
    padding: 16px 24px;
  }

  .logo a {
    font-size: 1.5rem;
  }
}
footer{text-align:center;}
 html, body {
    margin: 0; padding: 0; height: 100%; width: 100%; overflow-x: hidden;
  }
  #iframe-container {
    width: 100%; height: 100vh;
  }
  iframe {
    width: 100%; height: 100%; border: none; display: block;
  }
.pricing-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 16px;
  background: #fff8fb;
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 90, 122, 0.1);
  padding: 24px;
  width: 100%;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 90, 122, 0.15);
}
.pricing-card h2 {
  font-size: 1.8rem;
  color: #ff5a7a;
  margin-bottom: 16px;
  text-align: center;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
}
.pricing-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #444;
}
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5a7a;
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  padding: 16px;
}
.grid-gallery div {
  aspect-ratio: 1 / 1;
  background-color: #f0f0f0;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.grid-gallery div:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 16px rgba(255, 0, 200, 0.3);
  filter: brightness(1.1) saturate(1.3);
}
/* ========== GLOBAL STYLES ========== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  display: block;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  cursor: url('https://cdn-icons-png.flaticon.com/512/32/32177.png') 64 64, auto;
}

html, body {
  margin: 0; padding: 0; height: 100%; width: 100%; overflow-x: hidden;
}

/* ========== GRID LAYOUT ========== */
.grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  width: 100vw;
  height: 100vh;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 8px;
}

.grid6 {
  display: grid;
  grid-template-columns: 4fr,1fr;
  gap: 8px;
}

/* ========== CELLS ========== */
.cell {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  color: #333;
}
 body {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  body.fade-out {
    opacity: 0;
  }
.cell a {
  text-decoration: none;
  color: rgb(84, 22, 22);
}

.cell:not(.center):hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 90, 122, 0.4);
  filter: brightness(1.15) saturate(1.3);
  cursor: pointer;
}

.cell-breakups { background-color: #ffe0e6; }
.cell-pets { background-color: #e0f7ff; }
.cell-occasions { background-color: #e0ffe8; }
.cell-callout { background-color: #fff3e0; }
.cell-center {
  background-color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  padding: 10px;
  color: #ff5a7a;
  border: 2px dashed #ff5a7a;
  cursor: default;
}
.cell-friendships { background-color: #eae0ff; }
.cell-creative { background-color: #f5e0ff; }
.cell-pranks { background-color: #fff0e5; }
.cell-future { background-color: #f0fff6; }


ul {
  display: inline;
}

/* ========== NAVIGATION ========== */
.nav-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0; padding: 0;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff5a7a;
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ff5a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: #ff5a7a;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .main-nav ul {
    gap: 16px;
  }

  .nav-header {
    padding: 16px 24px;
  }

  .logo a {
    font-size: 1.5rem;
  }
}

/* ========== FOOTER & IFRAME ========== */
footer {
  text-align: center;
}

#iframe-container {
  width: 100%;
  height: 100vh;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background: #fff8fb;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 90, 122, 0.1);
  padding: 30px 25px;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 90, 122, 0.15);
}

.pricing-card h2 {
  font-size: 2rem;
  color: #ff5a7a;
  margin-bottom: 20px;
  text-align: center;
}

.pricing-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pricing-card li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
  padding-left: 20px;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5a7a;
  font-weight: bold;
}

/* ========== GRID GALLERY ========== */
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.grid-gallery .grid-item {
  aspect-ratio: 1 / 1;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.grid-gallery .grid-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 20px rgba(255, 0, 200, 0.5);
  filter: brightness(1.2) saturate(1.4);
}

.grid-gallery .grid-item div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iframe-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9; /* Or use height if aspect-ratio isn't supported */
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px; /* Optional: rounded corners */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Optional: soft shadow */
}
.img-wrapper{  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9; /* Or use height if aspect-ratio isn't supported */
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px; /* Optional: rounded corners */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Optional: soft shadow */}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}
.blinking-box{background-color:rgb(241, 166, 166);animation:blink 2s infinite;}
.blinking-box:nth-child(1){animation-delay:0s;}
.blinking-box:nth-child(2){animation-delay:0.5s;}
.blinking-box:nth-child(3){animation-delay:1s;}
.blinking-box:nth-child(4){animation-delay:1.5s;}
.blinking-box:nth-child(5){animation-delay:2s;}
.blinking-box:nth-child(6){animation-delay:2.5s;}
.blinking-box:nth-child(7){animation-delay:3s;}
.blinking-box:nth-child(8){animation-delay:3.5s;}
@keyframes blink{0%,48%,199%{opacity:1;}50%,98%{opacity:0.5;}}
.iframe-preview {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px; /* only a preview height */
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
     aspect-ratio: 16 / 9;
  }

  .iframe-preview:hover {
    transform: scale(1.01);
  }

  .iframe-preview iframe {
    pointer-events: none; /* disable interaction inside preview */
    width: 100%;
    height: 1000px; /* taller than the container, so only a slice is visible */
    transform-origin: top left;
    border: none;
  }
  .grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
  }

  .iframe-preview {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    cursor: pointer;
    background-color: #f9f9f9;
  }

  .iframe-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the whole area */
    border-radius: 12px;
  }
   .grid9{display: grid;
      grid-template-columns: repeat(3,1fr);
        grid-template-rows: repeat(3,1fr);
      gap: 8px;}
