/* Reset + base */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  position: relative;
  line-height: 1.6;
}

.background-globe {
  background: url('images/globe-background.png') no-repeat center center / cover;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: brightness(0.7) contrast(1.1);
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.75);
  padding: 0.75rem 1rem 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header-logo {
  height: 85px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
nav ul li a.active,
nav ul li a:hover {
  color: #00ccff;
  border-bottom: 2px solid #00ccff;
}

/* Hero + Layout */
.hero {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  flex: 1;
}
.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: #00ccff;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.glass {
  background: rgba(0, 32, 64, 0.65);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #00ccff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #0099cc;
}
.btn.whatsapp { background: #25D366; color: white; }
.btn.instagram { background: #E1306C; color: white; }

/* Bio photo */
.bio-photo {
  max-width: 300px;
  width: 100%;
  border-radius: 50%;
  margin-top: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Pricing table container - NEW */
.pricing-table-container {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding: 0 1rem;
  margin-top: 2rem;  /* keeps vertical spacing consistent */
}

/* Pricing table */
.pricing-table {
  width: 100%;
  max-width: 700px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid #00ccff;
  border-radius: 8px;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  border: 1px solid #00ccff;
  padding: 1rem;
  text-align: center;
}
.pricing-table th {
  background: rgba(0, 204, 255, 0.2);
  color: #00ccff;
  font-size: 1.1rem;
}
.pricing-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  margin-top: 4rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
  justify-items: center;
}

.video-grid iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav { display: none; width: 100%; }
  nav.open { display: block; }
  nav ul {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
  }
  nav ul li { margin: 1rem 0; }
  .hero { padding: 1.5rem; margin: 2rem 1rem; }
}
