/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  background: #8000;
}

.custom-header{
  background-color: #670000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav ul {
  display: flex;
  list-style: none;
}

.nav ul li {
  margin: 0 10px;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
}

.nav-link{
  font-size: 16px;
  color: #ccc;
  font-family: 'Baskerville', 'Georgia', serif;
}

.cta {
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
}

  
  .cta-btn:hover {
    background-color: #0056b3;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .hero-overlay {
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
  }
  
  .hero-overlay h1 {
    font-size: 3rem;
    font-family: 'Baskerville', 'Georgia', serif;
  }
  
  .hero-overlay p {
    font-size: 1.2rem;
  }
  
  .hero-overlay .cta-btn {
    margin-top: 20px;
  }
  
  /* About Section */
  .about {
    padding: 80px 0;
  }
  
  .about h2 {
    font-size: 2.5rem;
  }
  
  .slideshow {
    width: 100%;
    height: 300px;
    background: #ccc;
    border-radius: 10px;
  }

  .carousel {
    border-radius: 15px; /* Customize corner radius */
  }

  .carousel-inner img {
    height: 400px; /* Adjust height as needed */
    object-fit: cover; /* Ensure the image fills the area */
    border-radius: 15px;
  }
  
  .carousel-caption h5 {
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }
  
  .carousel-caption p {
    font-size: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  }
  
  
  /* Exhibitions Section */
  .exhibitions {
    padding: 80px 0;
  }
  
  .exhibitions h2 {
    font-size: 2.5rem;
  }
  
  .exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .exhibitions-grid .card {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .exhibitions-grid .card:hover {
    transform: scale(1.05);
  }
  
  /* Events Section */
  .events {
    padding: 80px 0;
  }
  
  .events-timeline {
    display: flex;
    flex-direction: column;
  }
  
  /* Virtual Tour Section */
  .virtual-tour {
    padding: 80px 0;
  }
  
  .virtual-tour-container {
    height: 400px;
    background-color: #ccc;
    border-radius: 10px;
  }
  
  /* Membership Section */
  .membership {
    padding: 80px 0;
  }
  
  .membership h2 {
    font-size: 2.5rem;
  }
  
  .membership-benefits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  /* Shop Section */
  .shop {
    padding: 80px 0;
  }
  
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  /* Footer Section */
  .footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
  }
  
  .footer h3 {
    color: #f1f1f1;
  }
  
  .footer ul {
    list-style: none;
  }
  
  .footer ul li {
    margin: 10px 0;
  }
  
  .footer ul li a {
    color: #f1f1f1;
    text-decoration: none;
  }
  
  .footer ul li a:hover {
    color: #007bff;
  }
  
  .copyright {
    text-align: center;
    padding: 20px 0;
    background-color: #222;
  }
  


  