/* --------------------------
   🎈 GLOBAL STYLES & THEMES
---------------------------*/
:root {
  /* Light Theme Colors */
  --primary-blue: #1e90ff;
  --primary-red: #ff6b6b;
  --primary-gold: #ffd700;
  --secondary-pink: #ff1493;
  --light-bg: linear-gradient(to right, #ff69b4, #ffd700);
  --nav-bg: radial-gradient(circle at bottom, #ffdee9, #b5fffc);
  --text-dark: #333;
  --text-light: #fff;
  --card-bg: rgba(255, 182, 193, 0.3);
  --footer-bg: #000000;
}

.dark-mode {
  /* Dark Theme Colors */
  --primary-blue: #4a90e2;
  --primary-red: #ff8a8a;
  --primary-gold: #ffea00;
  --secondary-pink: #ff4da6;
  --light-bg: linear-gradient(to right, #0a0a2a, #1a1a2a);
  --nav-bg: radial-gradient(circle at bottom, #2a0a2a, #1a2a2a);
  --text-dark: #f0f0f0;
  --text-light: #ffffff;
  --card-bg: rgba(255, 110, 199, 0.2);
  --footer-bg: #1a1a1a;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--light-bg);
  transition: all 0.3s ease;
}

/* --------------------------
   🌙 THEME TOGGLE - FIXED POSITION
---------------------------*/
.theme-toggle {
  position: fixed;
  top: 7px;
  right: 4px; /* Moved away from Instagram icon */
  z-index: 1000;
}

#themeSwitch {
  background: var(--primary-blue);
  border: none;
  border-radius: 50px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#themeSwitch:hover {
  transform: scale(1.1);
  background: var(--primary-red);
}

.moon { display: none; }
.dark-mode .sun { display: none; }
.dark-mode .moon { display: inline; }

/* --------------------------
   🎀 NAVIGATION - FIXED NO SPIN
---------------------------*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--nav-bg);
  padding: 15px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0.98;
  /* REMOVED SPIN ANIMATION */
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-red), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.logo h1::after {
  content: " 🎁";
  font-size: 2rem;
  position: absolute;
  top: -5px;
  right: -35px;
}

.nav-links { 
  list-style: none; 
  display: flex; 
  gap: 15px; 
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 8px 25px;
  border-radius: 25px;
}

.nav-links a:hover {
  color: var(--primary-red);
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* --------------------------
   🌸 SECTION WRAPPERS
---------------------------*/
.semi-transparent-box-rgba {
  background: rgba(255, 182, 193, 0.3);
  border-radius: 25px;
  margin: 50px auto ;
  width: 90%;
  max-width: 1200px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.semi-transparent-box-rgba:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,105,180,0.3);
}

/* --------------------------
   🧁 HEADINGS
---------------------------*/
.section-heading {
  text-align: center;
  color: var(--primary-blue);
  font-family: "comic sans ms", sans-serif;
  transform: rotate(-3deg);
  text-shadow: -1px -1px 0 white,
    1px -1px 0 black,
    -1px 1px 0 white,
    1px 1px 0 black;;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
 
}

.section-heading::after {
  content: "";
  width: 80px;
  height: 4px;
   background: linear-gradient(to right, #ff69b4, #ffd700);
  display: block;
  margin: 1px auto 0;
  border-radius: 10px;
}
/* --------------------------
   📱 MOBILE NAVBAR TOGGLE
---------------------------*/

/* Hide the toggle by default (desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: var(--primary-blue);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1100;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 4px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: var(--primary-red);
  transform: scale(1.05);
}

/* Transform hamburger into X when active */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Default nav links layout (desktop) */
.nav-links {
  display: flex;
  list-style: none;
  gap: 15px;
  transition: all 0.4s ease-in-out;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--nav-bg);
    width: 70%;
    max-width: 300px;
    height: calc(100vh - 70px);
    align-items: center;
    justify-content: start;
    padding-top: 50px;
    gap: 25px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    border-radius: 15px 0 0 15px;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 12px 20px;
    width: 80%;
    text-align: center;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
  }
}

/* --------------------------
   🎈 HERO SECTION - SIMPLE
---------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px; /* Space for fixed nav */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 40px;
  font-weight: 600;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  padding: 18px 45px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255,105,180,0.5);
  background: linear-gradient(45deg, var(--primary-red), var(--primary-blue));
}

/* --------------------------
   🎁 PRODUCT GRID - 4 IN A ROW
---------------------------*/
/* In your style.css file */

.products-grid {
    display: grid;
    /* This line is the most important for 4-wide: */
    grid-template-columns: repeat(4, 2fr);
    gap: 20px; /* Adjust spacing as needed */
    justify-content: center;
}
.Products-Box {
  width: 100%;
  background: linear-gradient(145deg, #ffffff, #fff0f8);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255,105,180,0.2);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}

.dark-mode .Products-Box {
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.Products-Box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255,105,180,0.4);
}

.Products-Box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.Products-Box:hover img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px 15px;
  background: rgba(255,255,255,0.9);
}

.dark-mode .product-info {
  background: rgba(42,42,42,0.9);
}

.product-name {
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
  font-size: 1.1rem;
}

/* --------------------------
   🔧 SERVICES GRID
---------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.dark-mode .service-card {
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(255,105,180,0.3);
  background: linear-gradient(145deg, #fff0f8, #ffffff);
}

.dark-mode .service-card:hover {
  background: linear-gradient(145deg, #3a2a3a, #2a2a2a);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2);
  color: var(--primary-blue);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--primary-blue);
  font-size: 1.3rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* --------------------------
   📞 CONTACT SECTION
---------------------------*/
.contact-section {
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  margin: 50px auto;
  width: 90%;
  max-width: 1200px;
}

.contact-container {
  position: relative;
  z-index: 2;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.contact-item {
  background: rgba(255,255,255,0.95);
  padding: 25px;
  border-radius: 20px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.dark-mode .contact-item {
  background: rgba(42,42,42,0.95);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-top: 5px;
}

.contact-item h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --------------------------
   📝 CUSTOM ORDER FORM
---------------------------*/
form[name="customOrder"] {
  background: rgba(255,255,255,0.95);
  border-radius: 25px;
  padding: 50px 40px;
  max-width: 600px;
  margin: 50px auto;
  box-shadow: 0 15px 35px rgba(255,105,180,0.2);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dark-mode form[name="customOrder"] {
  background: rgba(42,42,42,0.95);
}

form[name="customOrder"] h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

form[name="customOrder"] label {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: block;
}

form[name="customOrder"] input,
form[name="customOrder"] select,
form[name="customOrder"] textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 15px;
  border: 5px solid linear-gradient(45deg, var(--primary-blue), var(--primary-red));
  font-size: 1rem;
  font-family: "comic sans ", sans-serif;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 5px 15px rgba(255,105,180,0.1);
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.dark-mode form[name="customOrder"] input,
.dark-mode form[name="customOrder"] select,
.dark-mode form[name="customOrder"] textarea {
  background: rgba(30,30,30,0.9);
  color: var(--text-light);
}

form[name="customOrder"] input:focus,
form[name="customOrder"] select:focus,
form[name="customOrder"] textarea:focus {
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 0 20px rgba(255,105,180,0.4);
}

form[name="customOrder"] textarea { 
  resize: none; 
  min-height: 120px;
}

form[name="customOrder"] button {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  padding: 18px 0;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255,105,180,0.3);
  transition: all 0.3s ease;
}

form[name="customOrder"] button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,215,0,0.4);
}

.form-note {
  text-align: center;
  font-style: italic;
  color: var(--text-dark);
  margin-top: 20px;
  opacity: 0.8;
}

/* --------------------------
   🖼️ IMAGE MODAL
---------------------------*/
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(255,105,180,0.5);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2001;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.close-btn:hover {
  color: var(--primary-blue);
  transform: scale(1.2);
}

#modalCaption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  font-size: 1.2rem;
  background: rgba(0,0,0,0.7);
  padding: 10px 20px;
  border-radius: 25px;
}

/* --------------------------
   🎊 FOOTER
---------------------------*/
.footer {
  background: var(--footer-bg);
  color: var(--text-light);
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.footer-section p {
  line-height: 1.6;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-blue);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-blue);
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.credits {
  color: var(--primary-gold);
  font-weight: 600;
  margin-top: 10px;
}

/* --------------------------
   🎈 FLOATING BALLOON BACKGROUND
---------------------------*/
.balloon-wall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* behind content */
  pointer-events: none;
  background: radial-gradient(circle at bottom, #ffdee9, #b5fffc);
}

.balloon {
  position: absolute;
  bottom: -150px;
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: inset -10px -15px rgba(0,0,0,0.1);
  animation: floatSwaySpin linear infinite;
}

/* Combined float + sway + spin */
@keyframes floatSwaySpin {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-25vh) translateX(15px) rotate(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-60vh) translateX(-15px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-90vh) translateX(10px) rotate(270deg);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-130vh) translateX(0) rotate(360deg);
    opacity: 1;
  }
}
/* --------------------------
   🎊 CONFETTI
---------------------------*/
.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ff69b4; /* default, will randomize in JS */
  opacity: 0.9;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translateY(0) rotate(0deg);
  animation: confetti-fall 1s forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(150px) rotate(360deg) scale(0.5);
    opacity: 0;
  }
}
/* --------------------------
   🎥 VIDEO STYLES - ADD THIS SECTION
---------------------------*/
.video-entry {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30,144,255,0.1);
  transition: all 0.3s ease;
}

.dark-mode .video-entry {
  background: rgba(42,42,42,0.95);
}

.video-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30,144,255,0.2);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-entry p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.video-divider {
  border: 2px solid var(--primary-blue);
  margin: 50px 0;
  opacity: 0.5;
}

/* --------------------------
   📱 RESPONSIVE DESIGN - THIS SECTION SHOULD ALREADY EXIST
---------------------------*/
@media (max-width: 1200px) {
  /* Your existing responsive styles... */
}

/* --------------------------
   📱 RESPONSIVE DESIGN
---------------------------*/
@media (max-width: 1200px) {
  .products-grid,
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }
  
  .logo h1 {
    font-size: 1.8rem;
  }
  
  .nav-links {
    gap: 15px;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 6px 12px;
  }
  
  .section-heading {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .products-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .theme-toggle {
    right: 100px;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .semi-transparent-box-rgba {
    width: 95%;
    padding: 25px 15px;
  }
  
  .theme-toggle {
    right: 80px;
  }
}
