/* Custom Styles for Bakelite Couture */

/* Global Styles */
html,
body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
}

/* Color Variables */
:root {
  --pink: #d63384;
  --brown: #a4664f;
  --pink-light: rgba(214, 51, 132, 0.1);
  --brown-light: rgba(164, 102, 79, 0.1);
  --success-light: rgba(25, 135, 84, 0.1);
  --info-light: rgba(13, 202, 240, 0.1);
}

/* Typography */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
}

.tracking-wide {
  letter-spacing: 2px;
}

.text-pink {
  color: var(--pink) !important;
}

.text-brown {
  color: var(--brown) !important;
}

/* Hero Section Styles */
.hero-carousel {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#carouselExampleCaptions {
  height: 100%;
}

.carousel-item {
  height: 100vh;
  background-color: #fff;
  position: relative;
  background: pink;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-1 {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                    url('img/Pink\ Simple\ Cake\ and\ Cookie\ Promotion\ Banner\ Landscape.jpg');
}

.hero-bg-2 {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                    url('img/Untitled\ design.jpg');
}

.hero-bg-3 {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                    url('img/ud2.jpg');
}

.carousel-caption.text-top {
  top: 50%;
  bottom: auto;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.brand-name {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.brand-name span {
  color: #ff69b4;
}

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #f8f9fa;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
}

/* Button Styles */
.btn-pink {
  background-color: var(--pink);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-pink:hover {
  background-color: #c22577;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(214, 51, 132, 0.4);
}

.btn-outline-pink {
  border: 2px solid var(--pink);
  color: var(--pink);
  background: transparent;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-pink:hover {
  background-color: var(--pink);
  color: white;
  transform: translateY(-2px);
}

.btn-explore-cakes {
  background-color: var(--brown);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-explore-cakes:hover {
  background-color: #8c5443;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(164, 102, 79, 0.4);
}

.btn-outline-brown {
  border: 2px solid var(--brown);
  color: var(--brown);
  background: transparent;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-brown:hover {
  background-color: var(--brown);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background-color: white;
  color: var(--pink);
  border: none;
  font-weight: 600;
}

/* Navigation Styles */
.navbar-nav .nav-link {
  color: #333;
  transition: color 0.3s ease;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--pink);
}

.navbar-brand {
  color: var(--pink) !important;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--pink);
}

/* Product Cards */
.product-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}
.justify-content-center {
    justify-content: center !important;
    align-items: center;
    height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

/* Product Image Backgrounds */
.ice-cake-bg {
  background-image: url('img/ice-cake.jpg');
}

.dream-cake-bg {
  background-image: url('img/dream-cake.jpg');
}

.brownies-bg {
  background-image: url('img/brownies.jpg')
}

.cakesicle-bg {
  background-image: url('img/cakesicle.jpg');
}

.plain-cake-bg {
  background-image: url('img/plaincake.jpg');
}

.theme-cake-bg {
  background-image: url('img/happy.jpg');
}

.wedding-cake-bg {
  background-image: url('img/weddingcake2.jpg');
}

.birthday-cake-bg {
  background-image: url('img/birthday\ \(2\).jpg');
}

/* Badge Styles */
.bg-pink {
  background-color: var(--pink) !important;
}

.bg-brown {
  background-color: var(--brown) !important;
}

/* About Section */
.about-image-wrapper {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                    url('img/dream-cake.jpg');
  background-size: cover;
  background-position: center;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 120px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bg-pink-light {
  background-color: var(--pink-light);
}

.bg-brown-light {
  background-color: var(--brown-light);
}

.bg-success-light {
  background-color: var(--success-light);
}

.bg-info-light {
  background-color: var(--info-light);
}

/* Process Section */
.process-card {
  padding: 2rem 1rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--pink), var(--brown));
}

.process-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(214, 51, 132, 0.2);
  font-family: 'Playfair Display', serif;
}

.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 4rem;
  color: var(--pink);
  font-family: 'Playfair Display', serif;
  opacity: 0.3;
}

.testimonial-stars {
  font-size: 1.2rem;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23f8f9fa" cx="50" cy="50" r="50"/><circle fill="%23d63384" cx="50" cy="35" r="15"/><path fill="%23d63384" d="M30 70 Q50 55 70 70 Q50 85 30 70"/></svg>');
}

.author-image-2 {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23e8f5e8" cx="50" cy="50" r="50"/><circle fill="%234caf50" cx="50" cy="35" r="15"/><path fill="%234caf50" d="M30 70 Q50 55 70 70 Q50 85 30 70"/></svg>');
}

.author-image-3 {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23e3f2fd" cx="50" cy="50" r="50"/><circle fill="%232196f3" cx="50" cy="35" r="15"/><path fill="%232196f3" d="M30 70 Q50 55 70 70 Q50 85 30 70"/></svg>');
}

/* Gallery */
.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content h6 {
  font-size: 1.1rem;
}

/* Gallery Images */
.gallery-img-1 {
  background-image: url('img/g1.jpg');
}

.gallery-img-2 {
  background-image: url('img/g2.jpg');
}

.gallery-img-3 {
  background-image: url('img/g3.jpg');
}

.gallery-img-4 {
  background-image: url('img/g4.jpg');
}

.gallery-img-5 {
  background-image: url('img/g6.jpg');
}

.gallery-img-6 {
  background-image: url('img/g5.jpg');
}

.gallery-modal-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}

/* Contact Section */
.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.25);
}

.form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.form-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.25);
}

/* Newsletter Section */
.bg-pink {
  background: linear-gradient(135deg, var(--pink), #e91e63) !important;
}

.newsletter-form .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.newsletter-form .form-control {
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 1rem 2rem;
}

/* Footer */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--brown);
  color: white;
  transform: translateY(-3px);
}

.footer-links a:hover {
  color: var(--pink) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .brand-name {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-carousel {
    min-height: 80vh;
  }

  .carousel-item {
    height: 80vh;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .about-image-wrapper {
    height: 300px;
  }

  .process-card {
    padding: 1.5rem 1rem;
  }

  .gallery-card {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .brand-name {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

/* Animation Enhancements */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__delay-1s {
  animation-delay: 0.2s;
}

.animate__delay-2s {
  animation-delay: 0.4s;
}

.animate__delay-3s {
  animation-delay: 0.6s;
}

.animate__delay-4s {
  animation-delay: 0.8s;
}

/* Custom animations for scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}
footer a,
footer p,
footer li {
  color: #ffffff !important;
}

footer .text-muted {
  color: #cccccc !important;
}

footer a:hover {
  color: #d63384 !important; /* optional: pink hover */
}

footer .text-pink {
  color: #d63384 !important;
}
