/* ================================
   🔹 Global Styles
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: rgba(213, 152, 10, 0.8);
  color: #50004b;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* {
  box-sizing: inherit;
}

/* ================================
   🔹 Header
================================ */
header.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  padding: 1rem 1.5rem; /* 16px 24px */
  border-bottom: 0.0625rem solid #e0e0e0; /* 1px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05); /* 2px 10px */
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 4.375rem; /* 70px */
  width: 4.375rem;
  object-fit: contain;
}

/* ================================
   🔹 Desktop Navigation
================================ */
.main-nav,
.header-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem; /* 20px */
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.main-nav a,
.login-link {
  text-decoration: none;
  color: #50004b;
  font-weight: 500;
  font-size: 1rem; /* 16px */
}
.join-expert {
  background: #50004b;
  color: #fff;
  padding: 0.625rem 1rem; /* 10px 16px */
  border-radius: 0.3125rem; /* 5px */
  text-decoration: none;
}
nav.main-nav ul li a {
  text-decoration: none;
  color: #50004b;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

nav.main-nav ul li a:hover {
  color: #333;
}

/* ================================
   🔹 Dropdown
================================ */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  min-width: 160px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 10px;
}

.dropdown-menu li a {
  display: block;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* ================================
   🔹 Auth Buttons (Desktop)
================================ */
.auth-buttons, .header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-btn, .login-link {
  color: #50004b;
  border: 2px solid #50004b;
  background: transparent;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

.login-btn:hover, .login-link:hover {
  background: #d5980a;
  color: #fff;
}

.signup-btn, .join-expert {
  background: #50004b;
  color: white;
  border: 2px solid #50004b;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

.signup-btn:hover, .join-expert:hover {
  background: #d5980a;
  transform: scale(1.05);
}

.join-expert i {
  margin-right: 8px;
}

/* ================================
   🔹 Mobile Menu (Updated & Clean)
================================ */
.mobile-menu-toggle {
  display: none;
  font-size: 1.625rem; /* 26px */
  cursor: pointer;
  color: #50004b;
  margin-left: auto;
}

/* Mobile nav container */
.mobile-nav {
  display: none;
  position: fixed;
  top: 5rem; /* 80px, matches header */
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  flex-direction: column;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

.mobile-nav.show {
  display: flex;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav ul li {
  border-bottom: 1px solid #ddd;
}

.mobile-nav ul li a {
  display: block;
  padding: 1rem 1.25rem; /* 16px 20px */
  text-decoration: none;
  color: #50004b;
  font-weight: 500;
  font-size: 1rem;
}

.mobile-nav ul li a:hover {
  background-color: #f0f0f0;
}

/* Only show on mobile */
@media (max-width: 768px) {
  .main-nav,
  .header-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-nav.show {
    display: flex;
  }

  body {
    padding-top: 5.625rem; /* 90px to accommodate header */
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}


/* ================================
   🔹 Responsive Adjustments
================================ */
/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .main-nav,
  .header-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-nav.show {
    display: block;
  }

  body {
    padding-top: 5.625rem; /* 90px for header space */
  }
}

/* ================================
   🔹 Hero Section
================================ */
.hero {
  margin-top: 10px; /* Create space below fixed header */
  background: #50004b;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
/* ================================
   🔹 Search Box (Updated)
================================ */
.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 1000px;
  width: 100%;
  margin-top: 20px;
}

.search-box input,
.search-box select {
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 5px;
  flex: 1;
  min-width: 150px;
  max-width: 350px;
}
.search-box button {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  font-weight: bold;
  background-color: #fff;
  color: #50004b;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-box input,
.search-box select {
  flex: 1;
  min-width: 200px;
}

.search-box button:hover {
  background-color: #d5980a;
  color: white;
}

/* 🔸 Responsive: Stack elements on small screens */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 24px;
    margin-bottom: 15px;
    padding-top: 10px;
  }

  .search-box {
    flex-direction: column;
    width: 100%;
    padding: 0 10px;
  }

  .search-box input,
  .search-box select,
  .search-box button {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 50px;
  }
}


/* ================================
   🔹 Discover Section (Mobile-Centered)
================================ */
.discover {
  padding: 60px 20px;
  background-color: #d5980a;
  text-align: center;
}

.discover h2 {
  font-size: 28px;
  color: #111;
  margin-bottom: 30px;
}

.discover-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.discover-item {
  width: 140px;
  text-align: center;
}

@media (max-width: 480px) {
  .discover-item {
    width: 100%;
  }
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  margin: 0 auto 10px;
}

.icon-box i {
  font-size: 24px;
}

.discover-item p {
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

/* ================================
   🔹 Footer with Horizontal Columns
================================ */
.footer {
  background: linear-gradient(135deg, #50004b, #3a0034);
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
  color: white;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 30%;
  min-width: 100px;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: bold;
  color: #d5980a;
  margin-bottom: 15px;
  border-bottom: 1px solid #d5980a;
  padding-bottom: 5px;
  max-width: 150px;
  }

.footer-column a {
  color: #eee;
  text-decoration: none;
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #d5980a;
}

.footer-contact {
  font-size: 14px;
}

.contact-btn {
  background-color: #d5980a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-top: 12px;
  transition: all 0.3s;
  align-items: center;
  margin-left:200px;
  }

.contact-btn:hover {
  background-color: #fff;
  color: #50004b;
  border: 2px solid #50004b;
}

.social-icons {
  margin-top: 16px;
}

.social-icons a {
  color: white;
  font-size: 18px;
  margin-right: 14px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #d5980a;
  transform: scale(1.2);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.language-selector img {
  width: 20px;
}

.language-selector select {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  background-color: #fff;
  color: #50004b;
  font-weight: bold;
  cursor: pointer;
}

/* 🔸 Mobile: Stack Vertically */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column h3 {
    border-bottom: none;
  }
}

/* ================================
   🔹 Modal & Tabs
================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 60px;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 25px;
  cursor: pointer;
}

.close:hover {
  color: black;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 20px;
  background-color: #50004b;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}

.tab-button:hover {
  background-color: #d5980a;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

h2, h3 {
  color: #50004b;
}

ol {
  padding-left: 20px;
}
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; /* 👈 ensures it appears below the header */
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999; /* ✅ less than header, but visible */
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.mobile-nav.show {
  display: flex;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  border-bottom: 1px solid #ddd;
}

.mobile-nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #50004b;
  font-weight: bold;
}

.mobile-nav ul li a:hover {
  background-color: #f0f0f0;
}

/* Only show on mobile */
@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 22px;
    padding-top: 20px;
    text-align: center;
  }

  .search-box {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .search-box input,
  .search-box select,
  .search-box button {
    width: 100%;
    box-sizing: border-box;
  }
}
/* Default (Desktop) */
.poster-container {
  background-color: #50004b;
  padding: 10px;
  color: white;
  font-family: Arial, sans-serif;
}

.poster-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.poster-image {
  flex: 1 1 1px;
}

.poster-image img {
  width: 120%;
  max-width: 500px;
  border-radius: 12px;
}

.poster-text {
  flex: 1 1 400px;
  padding-left: 80px;
}

.poster-text h2 {
  color: #d5980a;
  font-size: 28px;
  margin-bottom: 15px;
}

.poster-text p {
  font-size: 16px;
  line-height: 1.6;
}

/* Mobile View */
@media (max-width: 768px) {
  .poster-inner {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .poster-image img {
    width: 85%;
    max-width: 100%;
    margin: auto;
  }

  .poster-text {
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 0px;
  }

  .poster-text h2 {
    font-size: 22px;
  }

  .poster-text p {
    font-size: 15px;
  }
}



/* Desktop View */
.poster-container-2 {
  background-color: #50004b;
  color: white;
  font-family: Arial, sans-serif;
  padding: 10px;
}

.poster-inner-2 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: row-reverse;
}

.poster-image-2 {
  flex: 1 1 1px;
}

.poster-image-2 img {
  width: 120%;
  max-width: 500px;
  border-radius: 12px;
}

.poster-text-2 {
  flex: 1 1 400px;
}

.poster-text-2 h2 {
  color: #d5980a;
  font-size: 28px;
  margin-bottom: 15px;
}

.poster-text-2 p {
  font-size: 16px;
  line-height: 1.6;
}

/* Mobile View */
@media (max-width: 768px) {
  .poster-inner-2 {
    flex-direction: column;
    text-align: center;
      }

  .poster-image-2 img {
    width: 85%;
    max-width: 100%;
    padding-top: 0px;
  }

  .poster-text-2 h2 {
    font-size: 22px;
  }

  .poster-text-2 p {
    font-size: 15px;
  }
}

/* Footer Base Styles */
.gsl-footer {
  background-color: #d5980a;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

/* Footer Links */
.gsl-footer a {
  color: #50004b;
  text-decoration: none;
  margin: 0 5px;
}

.gsl-footer a:hover {
  text-decoration: underline;
}

/* Mobile View */
@media (max-width: 600px) {
  .gsl-footer {
    font-size: 14px;
    padding: 15px 5px;
  }

  .gsl-footer p {
    margin: 8px 0;
  }

  .gsl-footer a {
    display: inline-block;
    margin: 4px 6px;
  }
}




