/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

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

/* Header */
header {
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a.active {
  color: white;
  text-decoration: underline;
  text-decoration-color: white;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.nav-links a:hover {
  color: white;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 80px 20px 20px;
}

.mobile-menu.show {
  display: block;
}

.mobile-menu-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 300px;
  margin: 0 auto;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 20px;
}

.mobile-nav-links a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: #667eea;
}

/* Footer */
footer {
  background: #2d3748;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-text {
  margin: 0;
}

.social-media-icons {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon img {
  height: 20px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1); /* Makes icons white */
}

/* Keep LinkedIn icon as is (already white) */
.social-icon img[alt="LinkedIn"] {
  filter: none;
}

/* Make YouTube icon visually larger */
.social-icon img[alt="YouTube"] {
  height: 24px;
}

.social-icon:hover img {
  transform: scale(1.1);
}

/* Firefox-specific fixes */
@-moz-document url-prefix() {
  .social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .social-icon img {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
  }
}

/* Hero Section */
.hero {
  padding: 80px 0 120px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.cta-button {
  background: #e6b800;
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Disclaimer */
.disclaimer {
  font-style: italic;
  font-size: 0.75rem;
  line-height: 1.4;
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .social-media-icons {
    gap: 20px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-icon img {
    height: 18px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    filter: brightness(0) invert(1); /* Makes icons white */
  }

  /* Keep LinkedIn icon as is (already white) */
  .social-icon img[alt="LinkedIn"] {
    filter: none;
  }

  /* Make YouTube icon visually larger on mobile */
  .social-icon img[alt="YouTube"] {
    height: 22px;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d3748;
  color: white;
  padding: 20px;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-text a {
  color: #90cdf4;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #48bb78;
  color: white;
}

.cookie-btn.accept:hover {
  background: #38a169;
}

.cookie-btn.decline {
  background: transparent;
  color: #cbd5e0;
  border: 1px solid #4a5568;
}

.cookie-btn.decline:hover {
  background: #4a5568;
  color: white;
}

.cookie-btn.settings {
  background: transparent;
  color: #90cdf4;
  border: 1px solid #90cdf4;
}

.cookie-btn.settings:hover {
  background: #90cdf4;
  color: #2d3748;
}

/* Cookie Banner Mobile Styles */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-btn {
    min-width: 100px;
  }
}
