body {
    font-family: Arial, sans-serif;
    background-color: white;
    height: 100%;
    width: 100%;
}
.navbar-brand {
    font-weight: bold;
    color: white;
}
nav{
    background-color: #AD6178;
}
.navbar-dark .navbar-nav .nav-link {
    color: white;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75);
}
.hero-section {
    background-color: #0d6efd;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}
.lesson-card {
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}
.lesson-card:hover {
    transform: translateY(-5px);
}
.card-title {
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
    text-align: center;
    font-size: clamp;
}
.card-text {
    color: black;
    margin-bottom: 15px;
    text-align: center;
    padding: 2px;
    font-size: clamp;
}
.card-body {
    display: flex;
    flex-direction: column;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
    font-weight: bold;
    color: #AD6178;
    border: 1px solid #AD6178;
    padding: 10px;
}
.functionleft {
    float: left;
    width: 50%;
    padding: 10px;
  }
.functionright {
    float: right;
    width: 50%;
    padding: 10px;
 }
  
  section::after {
    content: "";
    display: table;
    clear: both;
  }
  .function-card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border: none;
    transition: transform 0.2s;
    background-color: #F7DEE5;
}
.function-card:hover {
    transform: translateY(-3px);
}
.function-card-title {
    color: #BA3D5F;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.function-card-body {
    padding: 15px;
}
.function-card-text {
    font-size: 0.9rem;
    margin-bottom: 5px;
}      

.venues {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    }

.venue-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.venue-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.venue-info {
    padding: 20px;
}

.venue-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.venue-location {
    display: flex;
    align-items: center;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.venue-location i {
    margin-right: 5px;
}

.venue-price {
    font-size: 18px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 15px;
}

.venue-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #f39c12;
    margin-right: 10px;
}

.book-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #3498db;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-button:hover {
    background-color: #2980b9;
}
a {
    text-decoration: none;
    color: black;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .review-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .review-content {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
  }
  
  .review-content:before,
  .review-content:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
  }
  
  .review-content:before {
    top: -15px;
    left: -10px;
  }
  
  .review-content:after {
    bottom: -25px;
    right: -10px;
  }
  
  .reviewer-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
  .reviewer-details h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
  }
  
  .reviewer-details p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
  }

  .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 20px 0;
  }
  @media (max-width: 768px) {
      .reviews-grid {
          grid-template-columns: 1fr;
      }
  }
footer {
    background-color: #AD6178;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: black;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: white;
    font-size: 14px;
}

.img-cover {
    width: 100%;
    height: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}
.playfairdisplay{
    font-family: "Playfair Display", sans-serif
}