/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000;
  color: #ffd700; /* Golden */
  line-height: 1.6;
  margin: 0;
}

a {
  color: #ffd700;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background-color: #000;
  border-bottom: 3px solid #ffd700;
  box-shadow: 0 2px 8px #b8860b44;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd700;
  flex-grow: 1;
}

/* Navigation Links */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-grow: 3;
  justify-content: flex-end;
  padding-left: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-menu li a {
  font-weight: 600;
  padding: 8px 12px;
  display: block;
}

/* Banner Section */
.banner {
  background: url('banner.jpg') center center/cover no-repeat;
  height: 450px;
  margin: 20px auto;
  max-width: 1100px;
  border-radius: 10px;
  border: 3px solid #ffd700;
  transition: height 0.3s ease;
}

/* Layout Container */
.container {
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  gap: 20px;
  padding: 0 15px;
  flex-wrap: nowrap;
}

/* Main content */
main {
  flex: 3;
}

/* Sidebar */
aside {
  flex: 1;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px #b8860b88;
  max-width: 300px;
}

/* Sidebar Links */
.sidebar-links {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.sidebar-links li {
  margin-bottom: 12px;
}

.sidebar-links li a {
  font-weight: 600;
  display: block;
}

/* Sidebar images */
.sidebar-images img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px #b8860bcc;
  object-fit: cover;
  height: 120px;
}

/* Headings */
h1, h2, h3, h4, h5 {
  color: #ffd700;
  margin-bottom: 12px;
}

/* Featured Escorts */
.featured-escorts {
  margin-bottom: 40px;
}

.escort-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.escort-card {
  background: #222;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px #b8860b88;
}

.escort-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.escort-name {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.escort-info {
  font-size: 0.9rem;
  color: #ffd700cc;
  margin-bottom: 10px;
}

.btn-view-profile {
  display: inline-block;
  padding: 6px 14px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-view-profile:hover {
  background: #b8860b;
}

/* Rate Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  color: #ffd700;
}

th, td {
  border: 1px solid #ffd700;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #b8860b;
}

/* Buttons for Other City Escorts */
.city-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.city-button {
  background: #ffd700;
  color: #000;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 0 8px #b8860b88;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
}

.city-button:hover {
  background: #b8860b;
}

/* Contact Section */
.contact {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.contact label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 12px;
  border: none;
  border-radius: 4px;
  background: #222;
  color: #ffd700;
  font-size: 1rem;
}

.contact button {
  background: #ffd700;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.contact button:hover {
  background: #b8860b;
}

/* Footer */
footer {
  background: #000;
  color: #ffd700;
  text-align: center;
  padding: 15px 0;
  border-top: 3px solid #ffd700;
  font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
  /* Navbar container vertical stack */
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Navigation menu vertical full width */
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .nav-menu li a {
    padding: 10px 0;
    width: 100%;
    display: block;
    border-bottom: 4px solid #e3c00555;
  }

  /* Banner smaller height on mobile */
  .banner {
    height: 180px;
    max-width: 100%;
    margin: 10px auto 20px;
  }

  /* Container stacked vertically */
  .container {
    flex-direction: column;
    padding: 0 10px;
    gap: 15px;
  }

  /* Sidebar full width below main */
  aside {
    max-width: 100%;
    width: 100%;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    order: 2;  /* below main */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 10px;
  }

  /* Sidebar links horizontal pills */
  .sidebar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-left: 0;
    margin: 0 0 10px 0;
    justify-content: center;
  }

  .sidebar-links li {
    margin: 0;
  }

  .sidebar-links li a {
    font-weight: 600;
    background: #ffd700;
    color: #000;
    padding: 8px 14px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 0 8px #b8860b88;
    transition: background 0.3s ease;
    white-space: nowrap;
  }

  .sidebar-links li a:hover {
    background: #b8860b;
    color: #fff;
  }

  /* Sidebar images horizontal */
  .sidebar-images {
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  .sidebar-images img {
    height: 100px;
    width: 300px;
    border-radius: 6px;
    box-shadow: 0 0 10px #b8860bcc;
    object-fit: cover;
  }

  /* Main content full width */
  main {
    width: 100%;
    order: 1;
  }

  /* Escort images smaller on mobile */
  .escort-card img {
    height: 200px;
  }
}
