@charset "UTF-8";
/* ===WORLD NET ENTERPRISES - main.css === */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* ==========================================
   HERO BANNER - Homepage Only (500px Earth)
   ========================================== */

.hero-banner {
  width: 100%;
  height: 350px;
  background-image: url('../images/header-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: none;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
  padding: 30px 60px 20px 60px;
}

.hero-logo-section {
  flex-shrink: 0;
  text-align: center;
  margin-top: 10px;
}

.hero-logo {
  width: 220px;
  height: 220px;
  display: block;
  margin: 1px auto 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
}

.hero-company-name {
  font-family: 'Segoe UI', Tahoma, Geneva;
  font-size: 2.2em;
  font-weight: 600;
  font-style: italic;
  margin: 0;
  letter-spacing: 2px;
  color: #ffffff;

  /* BEVEL + STRONG BLUE OUTLINE + GLOW */
  text-shadow:
    /* Inner bright bevel highlight */
    0px -1px 2px rgba(255, 255, 255, 0.90),
    0px 1px 2px rgba(255, 255, 255, 0.85),

    /* Crisp dark-blue outline */
    3px 3px 2px rgba(13, 58, 106, 1.0),
    -3px -3px 2px rgba(13, 58, 106, 1.0),
    3px -3px 2px rgba(13, 58, 106, 1.0),
    -3px 3px 2px rgba(13, 58, 106, 1.0),

    /* Slight outer glow for star-field readability */
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 20px rgba(255, 255, 255, 0.35),

    /* Deep shadow for depth */
    4px 6px 12px rgba(0, 0, 0, 0.85);
}


.hero-slogan-section {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}
.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 5em;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;

  text-shadow:
    /* Inner highlight (tiny bevel) */
    0px -1px 1px rgba(255, 255, 255, 0.85),
    0px 1px 1px rgba(255, 255, 255, 0.85),

    /* Stronger dark-blue outline (crisper & more defined) */
    3px 3px 2px rgba(13, 58, 106, 1.0),
    -3px -3px 2px rgba(13, 58, 106, 1.0),
    3px -3px 2px rgba(13, 58, 106, 1.0),
    -3px 3px 2px rgba(13, 58, 106, 1.0),

    /* Clean, subtle, controlled glow (helps on star clusters) */
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 22px rgba(255, 255, 255, 0.40),

    /* Anchor shadow for depth */
    4px 6px 12px rgba(0, 0, 0, 0.85);
}


/* ==========================================
   EARTH HEADER - Other Pages Only (250px)
   ========================================== */

.earth-header {
  width: 100%;
  height: 250px;
  background-image: url('../images/header-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.earth-header-content {
  max-width: none;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
  padding: 30px 60px 20px 60px;
}

.earth-logo-section {
  flex-shrink: 0;
  text-align: center;
  margin-top: 10px;
}

/* Prevent logo selection/dragging - Hero Banner (homepage) */
.logo-container a,
.hero-logo {
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevent logo selection/dragging - Earth Header (other pages) */
.earth-logo-section a,
.earth-logo {
  user-select: none;
  -webkit-user-drag: none;
}

.earth-logo {
  width: 160px;
  height: 160px;
  display: block;
  margin: 1px auto 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
}

.earth-company-name {
  font-family: 'Segoe UI', Tahoma, Geneva;
  font-size: 2.2em;
  font-weight: 600;
  font-style: italic;
  margin: 0;
  letter-spacing: 2px;
  color: #ffffff;

  /* BEVEL + STRONG BLUE OUTLINE + GLOW */
  text-shadow:
    /* Inner bright bevel highlight */
    0px -1px 2px rgba(255, 255, 255, 0.90),
    0px 1px 2px rgba(255, 255, 255, 0.85),

    /* Crisp dark-blue outline */
    3px 3px 2px rgba(13, 58, 106, 1.0),
    -3px -3px 2px rgba(13, 58, 106, 1.0),
    3px -3px 2px rgba(13, 58, 106, 1.0),
    -3px 3px 2px rgba(13, 58, 106, 1.0),

    /* Slight outer glow for star-field readability */
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 20px rgba(255, 255, 255, 0.35),

    /* Deep shadow for depth */
    4px 6px 12px rgba(0, 0, 0, 0.85);
}


.earth-slogan-section {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}

.earth-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 5em;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;

  text-shadow:
    /* Inner highlight (tiny bevel) */
    0px -1px 1px rgba(255, 255, 255, 0.85),
    0px 1px 1px rgba(255, 255, 255, 0.85),

    /* Stronger dark-blue outline (crisper & more defined) */
    3px 3px 2px rgba(13, 58, 106, 1.0),
    -3px -3px 2px rgba(13, 58, 106, 1.0),
    3px -3px 2px rgba(13, 58, 106, 1.0),
    -3px 3px 2px rgba(13, 58, 106, 1.0),

    /* Clean, subtle, controlled glow (helps on star clusters) */
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 22px rgba(255, 255, 255, 0.40),

    /* Anchor shadow for depth */
    4px 6px 12px rgba(0, 0, 0, 0.85);
}

/* ==========================================
   BLUE HEADER - DEPRECATED (kept for compatibility)
   ========================================== */

.header {
  background: linear-gradient(135deg, #1e5a9a 0%, #2980b9 100%);
  color: white;
  padding: 20px 20px 35px 20px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23f4f4f4"></path></svg>') no-repeat;
  background-size: cover;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.logo-section {
  flex-shrink: 0;
  text-align: center;
}

.logo-container {
  margin-bottom: 0;
}

.logo {
  width: 180px;
  height: 180px;
  display: block;
  margin: 0 auto;
}

.company-name {
  font-family: 'Segoe UI', Tahoma, Geneva;
  font-size: 1.6em;
  font-weight: 600;
  font-style: italic;
  margin: -4px 0 10px 0;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 
    2px 2px 0 #0d3a6a,
    -1px -1px 0 #0d3a6a,
    1px -1px 0 #0d3a6a,
    -1px 1px 0 #0d3a6a,
    3px 3px 6px rgba(0,0,0,0.5);
}

.header-text {
  flex: 1;
  text-align: center;
}

.tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 4.5em;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
  text-shadow: 
    2px 2px 0 #0d3a6a,
    -1px -1px 0 #0d3a6a,
    1px -1px 0 #0d3a6a,
    -1px 1px 0 #0d3a6a,
    3px 3px 8px rgba(0,0,0,0.6),
    0 0 20px rgba(255,255,255,0.3);
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.content-section {
  background: white;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
  color: #1e5a9a;
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 3px solid #2980b9;
  padding-bottom: 10px;
}

h3 {
  color: #2980b9;
  font-size: 1.5em;
  margin: 30px 0 15px 0;
}

p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
}

.highlight {
  background: #e3f2fd;
  padding: 20px;
  border-left: 4px solid #2980b9;
  margin: 20px 0;
  border-radius: 4px;
}

.highlight strong {
  color: #1e5a9a;
  font-size: 1.2em;
}

/* ==========================================
   LIGHTBOX STYLES
   ========================================== */

.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.lightbox:target {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
} 

.lightbox-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-link {
  cursor: pointer;
}

.lightbox-link:hover {
  opacity: 0.9;
}

/* ==========================================
   BLUE & GOLD SECTIONS
   ========================================== */

.blue-section {
  background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blue-section h2 {
  color: #1e5a9a;
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 3px solid #2980b9;
  padding-bottom: 10px;
}

.blue-section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
}

.gold-cta-section {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  padding: 60px 40px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  position: relative;
  border: 2px solid #b8941e;
}

.gold-cta-section h2 {
  color: #1a1a1a;
  font-size: 2em;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
  border: none;
}

.gold-cta-section .cta-intro {
  color: #1a1a1a;
  font-size: 1.3em;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: 290px;
  font-weight: 500;
}

.llpro-badge {
  float: right;
  width: 250px;
  height: auto;
  margin: 4px 0 16px 28px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* ==========================================
   BUTTONS
   ========================================== */

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  margin: 8px;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background: linear-gradient(135deg, #1e5a9a 0%, #2979b9 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(30, 90, 154, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 90, 154, 0.5);
}

.cta-button.secondary {
  background: white;
  color: #1e5a9a;
  border: 3px solid #1e5a9a;
}

.cta-button.secondary:hover {
  background: #1e5a9a;
  color: white;
}

.cta-button.gold-primary {
  background: #1a1a1a;
  color: #d4af37;
  border: 3px solid #1a1a1a;
}

.cta-button.gold-primary:hover {
  background: #000;
  color: #f4d03f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta-button.gold-secondary {
  background: white;
  color: #1a1a1a;
  border: 3px solid #1a1a1a;
}

.cta-button.gold-secondary:hover {
  background: #1a1a1a;
  color: #d4af37;
}

.cta-buttons-container {
  text-align: center;
  margin: 40px 0 30px 0;
}

.footer-tagline {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #1a1a1a;
  font-size: 1.1em;
}

/* ==========================================
   MISSION STATEMENT
   ========================================== */

.mission {
  background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
  padding: 20px 20px 50px 20px;
  border-radius: 8px;
  margin: 20px -10px -10px -10px;
}

.mission h3 {
  color: #1e5a9a;
  text-align: center;
  margin-bottom: 20px;
}

.mission p {
  text-align: center;
  font-size: 1.15em;
  font-style: italic;
  margin-bottom: 20px;
  color: #1e5a9a;
}

.mission ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

.mission li {
  padding: 10px 0;
  font-size: 1.05em;
  display: flex;
  align-items: flex-start;
}

.mission li img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 12px;
  margin-top: 2px;
  display: block;
}

.mission-ribbon {
  width: 90%;
  max-width: 700px;
  height: 8px;
  margin: 20px auto;
  background: linear-gradient(to bottom, #1e5a9a 0%, #2979b9 50%, #1e5a9a 100%);
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3), 
              inset 0 1px 0 rgba(255, 255, 255, 0.3), 
              inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.mission-ribbon.bottom {
  margin: 20px auto 10px auto;
}

/* ==========================================
   LIFELEDGER PRO CTA
   ========================================== */

.llpro-cta {
  background: linear-gradient(135deg, #1e5a9a 0%, #2980b9 100%);
  color: white;
  padding: 50px 40px;
  text-align: center;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.llpro-cta h2 {
  color: white;
  border: none;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.llpro-cta h3 {
  color: white;
  margin-top: 30px;
}

.llpro-cta ul {
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.1em;
  line-height: 2;
  list-style: none;
  padding: 0;
}

.llpro-cta li {
  margin-bottom: 10px;
}

.llpro-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.llpro-btn {
  display: inline-block;
  background: white;
  color: #1e5a9a;
  padding: 15px 40px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.llpro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  background: #f0f0f0;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
  background: #1e5a9a;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: 150px;
  margin-bottom: 100px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1em;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.copyright {
  margin-top: 20px;
  font-size: 0.9em;
  opacity: 0.8;
} 

/* ==========================================
   TABLET/MEDIUM SCREENS - 1200px to 769px
   ========================================== */
@media (max-width: 1200px) {
  .hero-tagline {
    font-size: 3.6em;
  }
  
  .earth-tagline {
    font-size: 3em;
  }
}

/* ==========================================
   TABLET/SMALL TO MEDIUM SCREENS - 850px to 769px
   ========================================== */
@media (max-width: 850px) {
  .hero-tagline {
    font-size: 3em;
  }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */
@media (max-width: 768px) {
  .hero-banner {
    height: 280px;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 5px;
    padding: 20px;
  }
  
  .hero-logo-section {
    margin-top: 0;
  }
  
  .hero-logo {
    width: 140px;
    height: 140px;
    margin-top: -8px;
  }
  
  .hero-company-name {
    font-size: 1.6em;
    margin-top: -3px;
  }
  
  .hero-slogan-section {
    margin-top: 0;
  }
  
  .hero-tagline {
    font-size: 2em;
    margin-top: 4px;
  }
  
  .hero-tagline br {
    display: none;
  }
  
  .earth-header {
    height: 203px;
  }
  
  .earth-header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .earth-logo {
    width: 120px;
    height: 120px;
    margin-top: -8px;
  }
  
  .earth-company-name {
    font-size: 1.4em;
    margin-top: -3px;
  }
  
  .earth-tagline {
    font-size: 1.7em;
    margin-top: 4px;
  }	
  
  .earth-tagline br {
    display: none;
  }
  
  .header {
    min-height: 220px;
    padding: 20px 20px 60px 20px;
  }
  
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .logo {
    width: 120px;
    height: 120px;
  }
  
  .company-name {
    font-size: 2em;
    letter-spacing: 1.5px;
  }
  
  .tagline {
    font-size: 2.8em;
    line-height: 1.2;
  }
  
  .content-section {
    padding: 25px;
  }
  
  h2 {
    font-size: 1.6em;
  }
  
  .llpro-cta h2 {
    font-size: 1.8em;
  }
  
  .llpro-badge {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    width: 200px;
  }
  
  .gold-cta-section h2 {
    font-size: 1.8em;
  }
  
  .footer-links a {
    display: block;
    margin: 10px 0;
  }
}