/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@400;600;700&family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

/* CARIBBEAN TURQUOISE THEME */
:root {
  --caribbean-teal: #40E0D0;
  --caribbean-dark: #20B2AA;
  --caribbean-light: #7FFFD4;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #1a1a1a;
}

/* Banner Section */
.banner {
  width: 100%;
  height: 320px;
  background: url('dial4mommyheader.png') center/cover no-repeat;
}

/* Navigation */
nav {
  background: var(--caribbean-teal);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(64, 224, 208, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

nav a {
  color: #000;
  text-decoration: none;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  transition: all 0.3s;
  padding: 10px 25px;
  border-radius: 30px;
  letter-spacing: 1px;
}

nav a:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Welcome Section */
.welcome {
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('images/photo-1483706600674-e0c87d3fe85b.jpeg') center/cover fixed;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--caribbean-teal);
}

.welcome h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--caribbean-teal);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.welcome h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--caribbean-light);
  margin-bottom: 30px;
}

.welcome p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.welcome u {
  text-decoration: underline;
  color: var(--caribbean-light);
}

/* ==== .info-bar-section ===== */ {
  background: #9e9e9e; /* GREY like operators section */
  padding: 20px 20px;
}

.info-bar {
  max-width: 800px;
  margin: 0 auto;
  background: #f0f0f0; /* Light grey box */
  border: 2px solid #000; /* Thinner black border */
  padding: 20px;
  border-radius: 10px;
  text-align: center; /* CENTER TEXT */
}

.info-bar p {
  margin: 12px 0;
  font-size: 1.1rem;
  color: #333;
  text-align: center; /* CENTER TEXT */
}

.info-bar strong {
  color: #000;
  font-size: 1.2rem;
}

.info-bar a {
  color: #40E0D0;
  text-decoration: underline;
  font-weight: bold;
}
/* Buttons */
.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.btn {
  display: inline-block;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-enter {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8e53 100%);
  color: #fff;
  box-shadow: 0 5px 20px rgba(255,107,157,0.4);
}

.btn-enter:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255,107,157,0.6);
}

/* Warning Box */
.warning-box {
  background: rgba(30, 30, 30, 0.95);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  border: 2px solid var(--caribbean-dark);
  text-align: left;
}

.warning-box h3 {
  color: var(--caribbean-teal);
  margin-bottom: 15px;
  font-size: 1.3rem;
  text-align: center;
}

/* Features Section - SQUARES */
.features {
  background: #2a2a2a;
  padding: 60px 20px;
}

.features h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #40E0D0;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
}

.feature-item {
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 333px; /* SQUARE */
}

.feature-item h6 {
  font-size: 1.3rem;
  color: #20B2AA;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}

.feature-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-img {
  height: 333px; /* SQUARE */
  width: 100%;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Section */
.cta {
  background: #424242;
  padding: 80px 20px;
  color: #fff;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: var(--caribbean-teal);
}

.cta-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.cta h4 {
  font-size: 1.3rem;
  margin: 30px 0 10px;
  color: var(--caribbean-light);
}

/* Badges Section */
.badges {
  background: #000;
  padding: 40px 20px;
  text-align: center;
}

.badges img {
  margin: 5px;
  vertical-align: middle;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.badges img:hover {
  opacity: 1;
}

.badges a {
  color: var(--caribbean-teal);
  text-decoration: underline;
  display: inline-block;
  margin: 10px;
}

/* Footer */
footer {
  background: #000;
  color: #999;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  border-top: 2px solid var(--caribbean-dark);
}

footer a {
  color: var(--caribbean-teal);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: var(--caribbean-light);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--caribbean-teal);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(64, 224, 208, 0.4);
  font-weight: bold;
}

.back-to-top:hover {
  opacity: 1;
  transform: translateY(-3px);
  background: var(--caribbean-light);
}

/* Responsive */
@media (max-width: 768px) {
  .banner {
    height: 200px;
  }
  
  /* Show all 3 nav items on mobile */
  .mobile-menu-btn {
    display: none;
  }
  
.nav-container {
  display: flex;
  flex-direction: row; /* HORIZONTAL */
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

nav a {
  font-size: 0.85rem; /* SMALLER */
  padding: 8px 12px;
}
  
  .welcome h1 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .feature-item {
    height: auto;
    min-height: 200px;
  }
  
  .feature-img {
    height: 400px;
    order: -1;
  }
}

/* ==================== MENU PAGE STYLES ==================== */

/* Menu Hero Section */
.menu-hero {
  background: linear-gradient(0deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
              url('images/photo-1600601622243-f32c30680b0b.jpeg') center/cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #b3e5fc;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.menu-hero p {
  color: #fff;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Rates Section */
.rates-section {
  background: #e0e0e0;
  padding: 60px 20px;
}

.rates-box {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  border: 3px solid #40E0D0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.rates-box h2 {
  text-align: center;
  color: #20B2AA;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 30px;
}

.rates-box p {
  text-align: center;
  font-size: 1.1rem;
  line-height: 2;
}

.rates-box .phone-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #20B2AA;
}

/* ==================== MENU PAGE - OPERATORS ==================== */

.operators-section {
  background: #9e9e9e;
  padding: 60px 20px;
}

.operators-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #40E0D0;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* FLEXBOX - clusters in center with small gaps */
.operators-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* CENTER CLUSTER */
  gap: 4px; /* SMALL GAP */
}

.operator-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #000; /* BLACK BORDER ON BOX */
  width: 240px; /* FIXED WIDTH */
  flex-shrink: 0;
}

.operator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border-color: #40E0D0;
}

.operator-header {
  background: #40E0D0;
  padding: 15px;
  text-align: center;
}

.operator-header h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.operator-img-link {
  display: block;
  text-decoration: none;
}

.operator-img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 1px solid #000;
}

.operator-info {
  padding: 15px;
}

/* SMALLER BUTTON - same text size */
.call-btn {
  display: block;
  width: 100%;
  padding: 7px 5px; /* LESS PADDING - smaller button */
  background: #20B2AA; /* DARKER TEAL */
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 7px;
  font-weight: bold;
  margin-bottom: 8px;
  transition: all 0.3s;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-size: 0.9rem; /* SAME TEXT SIZE */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* TEXT SHADOW for visibility */
}

.call-btn:hover {
  background: #fff;
  color: #000;
  border-color: #20B2AA;
  transform: scale(1.02);
}

.operator-features {
  list-style: none;
  padding: 0;
}

.operator-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
  font-size: 1.05rem;
  border-bottom: none;
}

.operator-features li:before {
  content: "♥";
  position: absolute;
  left: 0;
  color: #ff6b9d;
}

/* Responsive */
@media (max-width: 600px) {
  .operators-grid {
    gap: 8px; /* slightly more on mobile */
  }
}
/* About Section */
.about-section {
  background: linear-gradient(0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
              url('images/photo-1584143257538-919201cd4750.jpeg') center/cover;
  padding: 80px 20px;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h3 {
  font-size: 2.5rem;
  color: #40E0D0 !important; /* TURQUOISE - force it */
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.about-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #ffffff !important; /* WHITE - force it */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.about-content strong {
  color: #40E0D0;
}
