/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
     margin: 0;
  color: #333;
  line-height: 1.6;
}

/* Layout Containers */
.container {
    max-width:90%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.logo a {
  font-size: 2rem;
  text-decoration: none;
  color: #c14d4d;
  font-weight: bold;
}


/* Hero Section */
.hero {
 
  background-size: cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .btn {
  background: #c14d4d;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #a33232;
}

/* Featured Cakes */
.featured-cakes {
  padding: 60px 20px;
  text-align: center;
}

.featured-cakes h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #c14d4d;
}

.cakes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/*.cake-card {*/
/*  display:flex;*/
/*  flex-direction:column;*/
/*  justify-content:space-between;*/
/*  background: #fff;*/
/*  border: 1px solid #eee;*/
/*  padding: 20px;*/
/*  width: 260px;*/
/*  text-align: center;*/
/*  transition: transform 0.2s ease;*/
/*}*/

.cake-card:hover {
  transform: translateY(-5px);
}


.btn-small {
  display: inline-block;
  padding: 8px 16px;
  background: #c14d4d;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.btn-small:hover {
  background: #a33232;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #c14d4d;
}

.testimonials blockquote {
  font-style: italic;
  background: #f5f5f5;
  margin: 20px auto;
  padding: 20px;
  max-width: 700px;
  border-left: 5px solid #c14d4d;
}







.btn-outline {
  border: 2px solid #c14d4d;
  padding: 10px 20px;
  color: #c14d4d;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #c14d4d;
  color: white;
}

/* Footer */
.site-footer {
  background: #f8e9e9;
  text-align: center;
  padding: 20px 0;
  color: #a33232;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
  .featured-cakes {
      padding: 60px 0px;
      text-align: center;
    }
    .cake-card{
        padding:10px;
    }
    .container {
        max-width:100%;
      margin:0;
    }
}




.confirmed-order {
    background-color: #e0ffe0 !important;
}

