@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&family=Orbitron:wght@400&display=swap');

/* === Root Variables === */
:root {
  --primary-color: #F8B4C8;
  --secondary-color: #F06292;
  --accent-blue: #5DADE2;
  --accent-yellow: #FDD835;
  --accent-green: #58D68D;
  --accent-orange: #F39C12;
  --accent-light-blue: #A2D9F7;
  --text-color: #6D6D6D;
  --bg-color: #FFFFFF;
  --light-gray-bg: #FDF6F8;
  --dark-brown: #5D4037;
}

/* === Global Styles === */
* {
   margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Header === */
header {
  background: var(--light-gray-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  white-space: nowrap;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.8);
}

.logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: var(--secondary-color);
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--text-color);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-link {
  font-size: 1rem;
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* === Hero Section === */
.hero {
  background: linear-gradient(135deg, var(--primary-color), #FFB6C1);
  color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-text, .hero-image {
  flex: 1;
  min-width: 280px;
}

.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-align: center;
  animation: bounceIn 1s ease-out;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-align: center;
}

.brand-message {
  text-align: center;
  margin: 1.5rem 0;
}

.brand-highlight {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--accent-yellow);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.decorative-elements {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  align-items: center;
}

.star {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  animation: twinkle 2s infinite;
}

.circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  animation: pulse 1.5s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.hero-image-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image-img:hover {
  transform: scale(1.05);
}

/* === Floating Elements === */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.float-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

.float-circle.pink {
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  top: 15%;
  left: 20%;
}

.float-circle.blue {
  width: 15px;
  height: 15px;
  background: var(--accent-blue);
  top: 35%;
  left: 75%;
  animation-delay: 1s;
}

.float-circle.yellow {
  width: 25px;
  height: 25px;
  background: var(--accent-yellow);
  top: 65%;
  left: 30%;
  animation-delay: 2s;
}

.float-circle.green {
  width: 18px;
  height: 18px;
  background: var(--accent-green);
  top: 50%;
  left: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  width: 100%;
}

.btn .btn-decoration {
  font-size: 1.2rem;
  transition: color 0.3s ease;
    margin-left: 12px;
}

.btn-primary {
  background: var(--secondary-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #D81B60;
  transform: scale(1.05);
}

.btn-soft {
  background: var(--bg-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 2px 6px rgba(240, 98, 146, 0.1);
}

.btn-soft:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-soft:hover .btn-decoration {
  color: white;
}

.btn-whatsapp {
  background: var(--accent-green);
  color: white;
  font-size: 0.9rem;
}

.btn-call {
  background: var(--accent-orange);
  color: white;
}

.btn-submit {
    color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: rgba(235, 224, 228, 0.2) 0px 4px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    transition: 0.3s;
    gap: 0.5rem;
}

.btn-submit:hover {
  background: #D81B60;
  transform: scale(1.05);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}


/* === Carousel Section === */
.cakes-carousel {
    padding: 4rem 0;
    background: var(--light-gray-bg);
    text-align: center;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 300;
}

.carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    padding: 0.9375rem 0.625rem;
    box-shadow: 0 2px 8px rgba(248, 180, 200, 0.15);
    border-radius: 10px;
    background: var(--bg-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-right: 1rem;
    flex-shrink: 0;
    flex-grow: 0;
    width: calc(25% - 0.75rem);
    min-width: 250px; 
    box-sizing: border-box;
}

.carousel-item:last-child {
    margin-right: 0;
}

.carousel-item:hover {
    box-shadow: 0 4px 16px rgba(240, 98, 146, 0.2);
    transform: translateY(-3px);
}

.carousel-image {
    width: 100%;
    height: 265px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease; 
}

.carousel-item:hover .carousel-image {
    transform: scale(1.05);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 50%;
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10; 
}

.carousel-control:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(248, 180, 200, 0.4);
}

.carousel-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(200, 200, 200, 0.5);
}

.carousel-control.prev {
    left: 1.25rem;
}

.carousel-control.next {
    right: 1.25rem;
}

.carousel-indicators {
    display: none;
}

/* === Price Table === */
.price-table {
  margin: 3rem auto 2rem;
  max-width: 500px;
  background: var(--bg-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.price-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
}

.price-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(248, 180, 200, 0.3);
}

.price-table td:first-child {
  color: var(--text-color);
  font-weight: 400;
}

.price-table td:last-child {
  color: var(--secondary-color);
  font-weight: 600;
  text-align: right;
}

.price-table tr:last-child td {
  border-bottom: none;
}

/* === Products Section === */
.featured-products {
  padding: 3rem 0;
  background: var(--light-gray-bg);
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-icon-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-icon-img:hover {
  transform: scale(1.1);
}

.product-card h4 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-color);
}

.product-decoration {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.pink { background: var(--secondary-color); }
.dot.blue { background: var(--accent-blue); }
.dot.yellow { background: var(--accent-yellow); }
.dot.green { background: var(--accent-green); }

/* === Festive Occasions Section === */
.festive-occasions {
  padding: 4rem 0;
  background: var(--light-gray-bg);
  text-align: center;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.occasion-card {
  background: var(--bg-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.occasion-card:hover {
  transform: scale(1.05);
}

.occasion-card.highlighted {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, var(--primary-color), #FFF);
}

.occasion-image-img {
 width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.occasion-card:hover .occasion-image-img {
  transform: scale(1.1);
}

.occasion-card h4 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.occasion-card p {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* === Services Section === */
.services {
  padding: 4rem 0;
  background: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.service-icon.transport { background: linear-gradient(45deg, var(--accent-blue), #1976D2); }
.service-icon.gift { background: linear-gradient(45deg, var(--secondary-color), #E91E63); }
.service-icon.quality { background: linear-gradient(45deg, var(--accent-green), #388E3C); }
.service-icon.time { background: linear-gradient(45deg, var(--accent-orange), #F57C00); }

.service-icon.transport::before { content: '🚚'; }
.service-icon.gift::before { content: '🎁'; }
.service-icon.quality::before { content: '⭐'; }
.service-icon.time::before { content: '⏰'; }

.service-card h4 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* === About Section === */
.about-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--primary-color), #FFB6C1);
  color: white;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-text, .about-image {
  flex: 1;
  min-width: 280px;
}

.about-text h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
}

.decorative-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, var(--accent-yellow), var(--accent-orange));
  border-radius: 2px;
  margin: 1rem 0;
}

.about-image-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.about-image-img:hover {
  transform: scale(1.05);
}

/* === Footer === */
footer {
  padding: 3rem 0 1rem;
  background: var(--bg-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer-section {
  min-width: 220px;
}

.footer-section h4 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer-decoration {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1rem;
}

.heart, .cake-emoji {
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.contact-info p {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.whatsapp-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.whatsapp-link:hover {
  color: #20B058;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#contact-form input,
#contact-form textarea {
  padding: 0.625rem;
  border: 1px solid #CCC;
  border-radius: 5px;
  font-size: 0.9rem;
}

#contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

#form-status {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-top: 0.5rem;
  text-align: center;
}

.copyright {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-color);
}

.copyright p[style*="Orbitron"] {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: #888;
}

.copyright a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--secondary-color);
}

.footer-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-top: 0.5rem;
}

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  background: #25D366;
  padding: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  display: block;
}


/* === Responsive Design === */
@media (max-width: 1024px) {
  .carousel-item {
    width: calc(33.333% - 0.6667rem); 
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: grid;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light-gray-bg);
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu li {
    margin: 0.5rem 0;
  }

  .hero-content, .about-content, .products-grid, .services-grid, .footer-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero-text, .hero-image, .about-text, .about-image, .footer-section {
    min-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .brand-highlight {
    font-size: 1.8rem;
  }

  .carousel-item {
    width: calc(50% - 0.625rem);
  }

  .carousel-control {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
  }

  .carousel-control.prev {
    left: 0.625rem;
  }

  .carousel-control.next {
    right: 0.625rem;
  }

   .carousel-image {
        height: 330px; 
    }

  .footer-section {
    text-align: center;
  }

  .occasion-image-img {
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.625rem;
  }

  .logo {
    font-size: 1.8rem;
  }

  .logo-subtitle {
    font-size: 0.7rem;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
    margin: 4px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .brand-highlight {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .carousel-item {
    width: 100%; 
    margin-right: 0;
  }

  .product-card, .service-card {
    padding: 1rem;
  }

  .product-icon-img {
    width: 60px;
    height: 60px;
  }

  .product-card h4, .service-card h4 {
    font-size: 1.5rem;
  }

  .about-text h3 {
    font-size: 2rem;
  }

  .btn-primary, .btn-whatsapp, .btn-submit {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }

  .footer-section h4 {
    font-size: 1.5rem;
  }

  .footer-section p, .contact-info p {
    font-size: 0.8rem;
  }

  .copyright, .copyright p[style*="Orbitron"] {
    font-size: 0.8rem;
  }

  .footer-brand {
    font-size: 1rem;
  }
}