@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');


.navbar-nav .nav-item .nav-link{
  color: white;
  font-weight: 400
}
.nav-link{
  position: relative;
}
.nav-link::after{
  content: '';
  opacity: 0;
  height: 2px;
  width: 100%;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.4s linear;
}
.nav-link:hover::after{
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left;
}
.nav-item a{
  margin: 5px;;
}
.navbar{
  background-image: linear-gradient(135deg, #1E293B, #3B82F6);
}
marquee{
  border: 2px;
  background-image: linear-gradient(to right,#004080 , #1E293B);
  line-height: 40px;
  color: white;
  font-size: 1rem;
}
.container {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border: 1px solid #D1D5DB;
}

.container:hover {
    transform: scale(1.02);
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.header img {
    width: 60px;
    margin-right: 15px;
}

h2 {
    color: #1E293B;
    border-bottom: 2px solid #3B82F6;
    padding-bottom: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

.info-section,
.venue,
.map {
    margin-top: 20px;
    padding: 15px;
    background: #F9FAFB;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #D1D5DB;
}

.info-section h3,
.venue h3,
.map h3 {
    color: #3B82F6;
}

.input-group {
    margin: 15px 0;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #3B82F6;
    border-radius: 6px;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    box-shadow: 0 0 8px #3B82F6;
}

.btn .btn-primary{
    background-color: #3B82F6;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: 0.3s;
}

.btn.btn-primary:hover {
    background-color: #60A5FA;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    background: #E2E8F0;
    margin: 8px 0;
    padding: 8px;
    border-radius: 6px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

.contact-section {
    background: #1E293B;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
  }
  .contact-section .social-icons a {
    color: white;
    font-size: 2rem;
    margin: 0 10px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #3B82F6;
  }
  .email-form {
    display: inline-block;
    margin-top: 10px;
  }
  
  .email-form input[type="email"] {
    padding: 12px;
    border-radius: 8px;
    width: 250px;
    font-size: 16px;
    margin-right: 10px;
  }
  
  .email-form button {
    padding: 12px 20px;
    background-color: #3B82F6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .email-form button:hover {
    background-color: #2563EB;
  }
  
  .contact-section a {
    color: white;
    text-decoration: underline;
  }
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 10px;
    }
}