/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600&family=Poppins:wght@300;400;700&display=swap');



body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #f9f9f9;
}

/* Header Styling */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border-radius: 8px;
    z-index: 1000;
    padding: 0;
    list-style: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
    min-width: 160px;
}

.dropdown-content li a {
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-content li a:hover {
    background-color: #ff6347;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal-content {
    background-color: #1a1a1a;
    color: #f0f0f0;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.15);
    text-align: center;
}

.modal-content h2 {
    color: #ff6347;
    margin-bottom: 20px;
}

.modal-content p {
    color: #000;
}

.modal-content label {
    display: block;
    font-size: 16px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 5px;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"],
.modal-content input[type="password"],
.form-input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #555;
    background-color: #333;
    color: #f0f0f0;
    font-size: 16px;
}

.modal-content button {
    padding: 12px 25px;
    background: linear-gradient(135deg, #f9d342, #ff6347);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    margin-top: 20px;
    width: 100%;
}

.modal-content button:hover {
    background: linear-gradient(135deg, #ff6347, #f9d342);
    transform: scale(1.05);
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6347;
}

/* BASE NAV STYLES */
.navbar {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 20px;
    position: relative;
}

.logo {
    order: 2;
    margin: 0 auto;
}

.logo img {
    height: 60px;
}

.desktop-nav {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-left {
    order: 1;
    margin-right: 40px;
}

.nav-right {
    order: 3;
    margin-left: 40px;
}

.desktop-nav li a {
    color: white;
    text-decoration: none;
}

/* HAMBURGER MENU */
.hamburger { display: none; font-size: 30px; background: none; border: none; color: white; cursor: pointer; z-index: 1001; }

.mobile-menu {
  display: none;
  background-color: #000;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 1px solid #444;
  z-index: 1000;
}
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu ul li { border-bottom: 1px solid #444; padding: 10px 20px; }
.mobile-menu ul li a { color: white; text-decoration: none; }
.mobile-menu.show { display: block; }

/* MOBILE HEADER -- Go back to 100% width, 10px on first padding and remove .line1 and 2 below if its weird and remove the margin-left: -30px. */
.mobile-header {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 90%;
  background-color: #000;
  padding: 0px 0;
}
.mobile-header .mobile-brand {
  font-family: 'Dancing Script', cursive;
  color: #f9d342;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}
.logo-hamburger {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-hamburger .mobile-logo img { height: 80px; }
.logo-hamburger .hamburger { margin-left: 12px; }

@media (max-width: 768px) {
  .desktop-nav, .logo.desktop-logo { display: none; }
  .mobile-header { display: flex; }
  .hamburger { display: block; }
}
@media (min-width: 769px) {
  .mobile-header, .mobile-menu { display: none; }
}