@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Modern:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Niconne&family=Playwrite+US+Modern:wght@100..400&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* NAVBAR */
.navbar{
    background-color:#0b2a5b;
}
.toggle-heading{
    color: white;
}
.nav-link.nav-button{
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin: 3px;
}
.nav-link.nav-button:hover{
    text-decoration: underline;
}
.nav-link.nav-button.active{
    color: goldenrod;
}
.nav-link.nav-button-2{
    color: white;
    font-weight: 500;
    border: 3px solid goldenrod;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    background-color: goldenrod;
}
.nav-link.nav-button-2:hover{
    color: goldenrod;
    border: 3px solid goldenrod;
    background-color: white;
}
.navbar-logo{
    color: white;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
}
.brand span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f5c46b;
}



.logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 20px;
}


.hero-content p {
  font-size: 18px;
  color: goldenrod;
  letter-spacing: 2px;
}
.offcanvas-body{
    color: #0b2a5b;
}
.offcanvas-toggle{
    background-color: #0b2a5b;
}

/* FOOTER */
.site-footer {
  background-color: #ffffff;     /* white background */
  color: #0b2a5b;                /* professional blue */
  padding: 10px 0;               /* top & bottom padding */
  margin-top: 80px;              /* space from body content */
  border-top: 1px solid #e5e5e5; /* subtle separator */
}

.site-footer small {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}
.navbar-toggler-icon{
  filter: invert(72%) sepia(50%) saturate(600%) hue-rotate(5deg);
}
.offcanvas.show .nav-link{
    color: #0b2a5b;
}
.offcanvas.show .offcanvas-title {
  color:white;
}
.dance-heading {
  padding-top: 100px;
}
.dance-heading-line {
  color: goldenrod;
  font-family: "Niconne", cursive;
  font-weight: 500;
  /* Better mobile/Playbook font size */
  font-size: clamp(1.8rem, 6vw, 2.5rem); 
  text-align: center;
}
.dance-heading-main {
  background: linear-gradient(
    135deg,
    #0b2a5b 10%,
    #f7e7a8 30%,
    #d4af37 45%,
    #fff1b8 55%,
    #b8962e 65%,
    #0b2a5b 90%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 2.8rem);
  text-align: center;
  letter-spacing: 0.8px;
  text-transform: capitalize;
}
/* --- BOOKING CARDS CSS --- */

/* Main Card Styling */
.booking-card {
    background: #ffffff;
    border-radius: 30px; /* Modern rounded look */
    border: none;
    border-top: 8px solid #daa520; /* Golden accent top border */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.booking-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(11, 42, 91, 0.15) !important;
}

/* Icon & Heading Styling */
.text-highlight {
    color: #0b2a5b;
    margin-bottom: 15px;
    display: inline-block;
}

.booking-card h2 {
    color: #0b2a5b;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

/* Input Fields & Icons Styling */
.input-group {
    margin-bottom: 5px;
}

.input-group-text {
    background-color: #f8f9fa; /* Subtle gray for icon box */
    border: 1px solid #e9ecef;
    border-right: none;
    color: #daa520; /* Icons in Goldenrod */
    border-radius: 12px 0 0 12px !important;
}

.form-control, .form-select {
    border: 1px solid #e9ecef;
    border-left: none;
    padding: 12px 15px;
    border-radius: 0 12px 12px 0 !important;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

/* Blue Focus Effect */
.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: #0b2a5b;
    background-color: #fff;
}

/* Labels */
.form-label {
    margin-left: 5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

/* Submit Buttons */
.btn-submit {
    background: linear-gradient(135deg, #0b2a5b 0%, #163e7a 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(11, 42, 91, 0.2);
}

.btn-submit:hover {
    background: #daa520; /* Switches to Gold on hover */
    color:white;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3);
}

/* Custom Date Picker Icon Color */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(12%) sepia(50%) saturate(4000%) hue-rotate(200deg);
}

/* Responsive spacing for small screens */
@media (max-width: 768px) {
    .booking-card {
        margin-bottom: 20px;
        padding: 25px !important;
    }
}