/* ============================================
   OPERATOR PAGE - STELLA (Complete Working)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
body {
  background: #fff !important;
  color: #333;
}

/* Site Banner */
.site-banner {
  text-align: center;
  background: #1a1a1a;
  padding: 5px 0;
}

.site-banner h1 {
  color: #26a69a !important; /* Force the teal color */
  font-size: 4rem !important; /* Bigger - was 3rem */
  margin: 0 auto;
  font-family: 'Playfair Display', serif; /* or your chosen font */
  font-weight: 700;
}
.banner-subtitle {
  color: #fff;
  font-size: 1.2rem;
}

/* Navigation*/
.main-nav {
  background: #26a69a !important;
  padding: 5px 0;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}
.main-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.nav-menu {
  display: flex !important;
  flex-direction: row;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline-block;
}

.nav-menu a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-family: 'Merriweather', serif;
  padding: 10px 15px;
  display: block;
}

.nav-menu a:hover {
  color: #333 !important;
}

.mobile-menu-toggle {
  display: none;
}

/* Hero Section */
.operator-hero {
  margin: 5px auto 0 !important;
  max-width: 1200px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  border: 2px solid #000;
  margin-bottom: 0;
}

.hero-image {
  min-height: 414px;
  height: 414px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* Shows top, crops bottom */
  display: block;
}

.hero-content {
  background: #2d2d2d !important;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 2px solid #000;
  min-height: 417px;
}

.operator-title {
  color: #fff !important;
  text-align: center;
  margin: 0 auto 20px;
  width: 100%;
  font-size: 2.2rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.availability-status {
  background: #f5f5f5;
  color: #333;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #757575;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.character-status {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}

/* Feature Boxes */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0 !important;
}

.feature-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 2px solid #000;
  border-top: none;
  min-height: 220px;
}

.feature-box:not(:last-child) {
  border-right: none;
}

.feature-box-1 { background: #00897b; }
.feature-box-2 { background: #26a69a; border-color: #757575; }
.feature-box-3 { background: #00897b; border-color: #757575; }
.feature-box-4 { background: #26a69a; border-color: #757575; }

.feature-box h2 {
  color: #000;
  font-weight: 700;
  text-shadow: 2px 1px 2px rgba(255,255,255,1);
  margin: 0;
  font-size: 1.4rem;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  align-self: center;
}

.feature-box p {
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
  align-self: center;
}

/* Tabs - No gap */
.operator-tabs {
  margin: 0 auto 30px !important;
  max-width: 1200px;
  background: #000000;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  justify-content: flex-start;
  background: #fff;
  padding: 10px 10px 0;
  border-bottom: 2px solid #26a69a;
}

.tab-btn {
  background: #36454F !important;
  border: 2px solid #757575;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  padding: 15px 25px;
  margin-right: 2px;
  text-transform: uppercase;
}

.tab-btn:hover {
  background: #00897b !important;
}

.tab-btn.active {
  background: #00897b !important;
  color: #fff;
}

.tab-panel {
  display: none;
  padding: 30px;
  background: #fff; /* Change from #f5f5f5 to #fff */
  color: #333;
}

.tab-panel.active {
  display: block;
}

/* About Tab */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.about-text p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-family: 'Open Sans', sans-serif;
}

.about-sidebar h3 {
  color: #00897b;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.fantasy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.fantasy-list li {
  color: #333;
  padding: 5px 0;
  font-family: 'Open Sans', sans-serif;
}

.check-icon {
  color: #009688;
  margin-right: 8px;
}

.about-image {
  border: 2px solid #000;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Rates Tab */
.rates-box {
  background: #fff;
  border: 6px double #757575;
  border-radius: 30px;
  padding: 30px;
  max-width: 688px;
  margin: 30px auto;
  text-align: center;
  color: #333;
}

.rates-box h2 {
  color: #c62828;
  text-shadow: 3px 2px 1px rgba(26,26,26,1);
  margin-bottom: 20px;
}

/* Gallery Tab */
#gallery h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

.carousel {
  width: 492px;
  margin: 0 auto 30px;
}

.carousel-main {
  position: relative;
  height: 437px;
  background: #000;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  height: 100%;
  text-align: center;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 437px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 15px;
  text-align: center;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(117,117,117,0.7);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.thumb {
  width: 100px;
  height: 100px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: transparent;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border-color: #26a69a;
}

/* Buttons - Box 2 color */
.btn-call {
  display: inline-block;
  background: #26a69a !important;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  border: 2px solid #000;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
}

.btn-call:hover {
  background: #00897b !important;
}

.btn-large {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 15px 40px;
}

/* Scripts & Footer */
.scripts-section {
  margin: 20px auto;
  max-width: 1100px;
  padding: 20px;
  background: #1a1a1a;
  color: #fff;
}

.site-footer {
  background: #000;
  color: #ccc;
  padding: 30px 0;
  text-align: center;
  margin-top: 40px;
}

.site-footer p {
  font-size: 0.875rem;
  margin: 0 auto;
  max-width: 800px;
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { border-left: none; border-top: 2px solid #000; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .carousel { width: 90%; }
}
@media (max-width: 900px) {
  .nav-menu {
    gap: 15px;
  }
  
  .nav-menu a {
    font-size: 0.85rem;
    padding: 8px 10px;
  }
}

@media (max-width: 700px) {
  .nav-menu {
    gap: 10px;
  }
  
  .nav-menu a {
    font-size: 0.7rem;
    padding: 6px 8px;
  }
}
@media (max-width: 767px) {
  .operator-title { font-size: 1.8rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .tab-buttons { flex-direction: column; }
  .tab-btn { border-radius: 0; margin: 0 0 2px; }
  .carousel { width: 100%; }
  .carousel-main { height: 300px; }
  .carousel-slide img { max-height: 300px; }
  .thumb { width: 60px; height: 60px; }
  
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #26a69a;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
  }
  
  .nav-menu.active { display: flex; }
}

@media (max-width: 575px) {
  .operator-title { font-size: 1.5rem; }
  .thumb { width: 50px; height: 50px; }
}