:root {
    --primary-blue: #003366;
    --light-blue: #f0f8ff;
    --accent-blue: #007BFF;
    --white: #ffffff;
    --black: #000000;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--primary-blue);
  }
  /* Remove duplicate nav styles - using .navbar instead */
  
  .btn{
    display: inline-block;
    padding: 10px 20px;
    background-color:#a90808;
    color:white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.btn:hover{
    background-color: var(--primary-blue);
}
.modal {
  display: none; 
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 20px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
  color:#a90808
}


.close-btn {
  color: #aaa;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}
.close-btn:hover {
  color: red;
}

form {
  display: flex;
  flex-direction: column;
}
label {
  margin-top: 10px;
  font-weight: bold;
}
input {
  padding: 10px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
input:focus {
  border-color: #d44a2e;
  outline: none;
}
.required {
  color: red;
}
.submit-btn {
  background: #d44a2e;
  color: white;
  border: none;
  padding: 12px;
  margin-top: 15px;
  border-radius: 5px;
  cursor: pointer;
}
.submit-btn:hover {
  background: #b63c23;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
header {
  padding: 2em;
  background: var(--light-blue);
  text-align: center;
}
.hero-section {
  background-image: url("images/20250722_1538_Blue and White Serenade_simple_compose_01k0scfa5bfw0tz0jvp94hdx2m.png"); 
  background-size: cover;
  background-position: center;
  padding: 4em 2em;
  border-radius: 10px;
  color: var(--white);
  height: 50vh;
  padding-top: 170px;
}


.hero-section h1{
  color:#a90808;
  position:absolute;
  top:250px;
  left:50%;
  transform:translateX(-50%);
  display:block;
}
h1 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  
}

p {
  margin: 3.5em 0 2em;
  font-size: 1em;
  color:black;

}

.cta {
  background: #a90808;
  color: var(--white);
  padding: 1em 2em;
  border: none;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
}
  
  .features, .testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
    padding: 2em;
    text-align: center;
  }
  
  .feature, .testimonial {
    flex: 1 1 200px;
    max-width: 250px;
   background-color:var(--light-blue);

    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
  }
  
  .feature h3 {
    color:var(--accent-blue);
  }
  
  footer {
    text-align: center;
    padding: 2em;
    background-color: var(rgba(255, 0, 0, 0.83));
    font-size: 0.9em;
    margin-top: 2em;
  }
  .video-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -80px; 
    margin-bottom: 50px;
    z-index: 2;
  }
  
  .video-wrapper iframe {
    width: 90%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  .navbar {
    background-color: #a90808 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 20px !important;
    color: white !important;
    position: relative !important;
    z-index: 1001 !important;
  }
  
  .logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
  }
  
  .nav-links {
    list-style: none !important;
    display: flex !important;
    gap: 20px !important;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    border-bottom: 2px solid white;
  }
  
  .menu-toggle {
    display: none !important;
    font-size: 26px !important;
    cursor: pointer !important;
    color: white !important;
  }
  

  
  .promo-header {
    background-color: #fff5ee; 
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  
  .promo-header .highlight {
    color: #e74c3c; 
    font-weight: bold;
    text-decoration: underline;
  }
  
  .spark-lines {
    position: absolute;
    left: 70px;
    top: 70px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .line {
    width: 15px;
    height: 3px;
    background-color: #e74c3c;
    transform: rotate(-30deg);
    border-radius: 2px;
  }
  
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px;
  }
  
  .video-card {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .video-card iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 6px;
  }
  
  .video-card h4 {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
  }
 
  @media screen and (max-width: 768px) {
    .menu-toggle {
      display: block !important;
    }
  
    .nav-links {
      display: none !important;
      flex-direction: column !important;
      background-color: #a90808 !important;
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      width: 100% !important;
      text-align: center !important;
      padding: 20px 0 !important;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
      z-index: 1000 !important;
      transition: all 0.3s ease !important;
      opacity: 0 !important;
      transform: translateY(-10px) !important;
    }

    .nav-links.active {
      display: flex !important;
      opacity: 1 !important;
      transform: translateY(0) !important;
    }
  
    .nav-links li {
      margin: 10px 0 !important;
    }
    
    .nav-links li a {
      padding: 10px 20px !important;
      display: block !important;
      transition: background-color 0.3s ease !important;
      color: white !important;
      text-decoration: none !important;
    }
    
    .nav-links li a:hover {
      background-color: rgba(255, 255, 255, 0.1) !important;
    }
  }
  

  .iframe-container {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    position: relative;
  }

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  max-height: 70vh;
  min-height: 400px;
}


.modal-body {
  max-height: 80vh;
  overflow-y: auto;
  padding: 15px;
}

/* Ensure modal is properly sized for iframe content */
.modal-dialog {
  max-width: 90vw;
  max-height: 90vh;
  margin: 20px auto;
}

.modal-content {
  max-height: 90vh;
  overflow: hidden;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .modal-dialog {
    max-width: 95vw;
    margin: 10px auto;
  }
  
  .iframe-container {
    max-height: 60vh;
  }
  
  .iframe-container iframe {
    max-height: 60vh;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .modal-dialog {
    max-width: 98vw;
    margin: 5px auto;
  }
  
  .iframe-container {
    max-height: 50vh;
  }
  
  .iframe-container iframe {
    max-height: 50vh;
    min-height: 250px;
  }
}
