/* Main Styles for Cakes by Varsha */

/* General Styles */

/* Add to css/style.css */

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.logo {
    font-family: 'Pacifico', cursive;
    color: #e84393;
    margin: 0;
    font-size: 1.8rem;
}



/* Card Styles */
.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}


.price {
    font-weight: bold;
    color: #e84393;
}

/* Button Styles */
.btn-primary {
    background-color: #e84393;
    border-color: #e84393;
}

.btn-primary:hover {
    background-color: #d63384;
    border-color: #d63384;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}

/* Footer */
/* Footer styling */
footer {
  background-color: var(--dark);
  color: white;
}

footer a {
  color: var(--accent) !important;
}

footer a:hover {
  color: white !important;
}

/* Section styling */
section {
  padding: 60px 0;
}

h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}
/* Social Icons */
.social-icons a {
    color: #e84393;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d63384;
}

footer .social-icons a {
    color: white;
    transition: opacity 0.3s ease;
}

footer .social-icons a:hover {
    opacity: 0.8;
}

/* Instagram Preview */
.instagram-preview {
    width: 100%;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.instagram-preview:hover {
    opacity: 0.8;
    cursor: pointer;
}

/* Form Styles */
.form-control:focus {
    border-color: #e84393;
    box-shadow: 0 0 0 0.25rem rgba(232, 67, 147, 0.25);
}


/* Add to your css/style.css file */

/* Update in your css/style.css file */
.hero {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
              url('https://images.unsplash.com/photo-1621303837174-89787a7d4729?ixlib=rb-4.0.3&auto=format&fit=crop&w=1280&q=80');
  background-size: cover;
  background-position: center;
  color: var(--dark, #343a40);
  padding: 120px 0;
  margin-bottom: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary, #e83e8c);
}

.hero .lead {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Custom Styles for Enquiry Form */
.needs-validation .form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.needs-validation .form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Cake Details Page */
.cake-image-gallery {
    margin-bottom: 20px;
}

.cake-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.cake-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cake-thumbnail.active {
    border-color: #e84393;
}

.cake-details-info {
    margin-bottom: 30px;
}

.cake-price-list {
    list-style: none;
    padding-left: 0;
}

.cake-price-list li {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cake-flavors {
    display: inline-block;
    background-color: #f8f9fa;
    padding: 5px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Loading spinner */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.logo {
    font-family: 'Pacifico', cursive;
    color: #e84393;
    margin: 0;
    font-size: 1.8rem;
}


/* Enhanced card styles */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Button styles */
.btn-primary {
    background-color: #e84393;
    border-color: #e84393;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #d83179;
  border-color: #d83179;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

/* Add to css/style.css */

/* Modern color scheme */

/* Updated color palette */
:root {
  --primary: #e83e8c;       /* Soft pink */
  --secondary: #6a4c93;     /* Deep purple */
  --accent: #ffc107;        /* Warm yellow */
  --light: #f8f9fa;         /* Off-white */
  --dark: #343a40;          /* Charcoal */
  --text: #495057;          /* Soft black */
  --background: #ffffff;    /* White */
}

/* Improved typography */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background-color: var(--background);
}

.logo {
  color: var(--primary);
}

.card-title {
  color: var(--primary);
}

.price {
  color: var(--secondary);
}

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

.btn-primary:hover {
  background-color: #d83179;
  border-color: #d83179;
}
/* Enhanced hero section */
/* Stylish cards */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.card-body {
  padding: 25px;
}


.price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 15px;
}

/* Attractive buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 30px;
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}
