/* ========================
   HEADER / NAVBAR
   ======================== */

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: 500;
}


/* Navigation Bar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.login-btn {
    color: var(--primary-color);
    margin-right: 15px;
    font-weight: 500;
}

.signup-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color: #c0392b;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 576px) {
    .nav-wrapper {
        padding: 10px 0;
    }
    
    .logo img {
        height: 30px;
    }
}


a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

/* Header Section */
.header {
    text-align: center;
    padding: 60px 0 40px;
}

.tagline {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}

/* ========================
   FOOTER
   ======================== */

.footer {
  background: #fff;
  border-top: 1px solid #e1e5ea;
  padding: 2rem 0 1rem;
  color: #555;
  font-size: 0.9rem;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #4a90e2;
}

.footer-phone {
  font-weight: bold;
  color: #333;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.language-selector {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #555;
  font-size: 0.9rem;
}

.language-selector i {
  font-size: 0.8rem;
}

.footer-bottom .copyright {
  font-size: 0.8rem;
  color: #888;
}

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 768px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e1e5ea;
  }
  .footer-columns {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
