/*
Theme Name: mytheme
Theme URI: https://www.mm-adsman.in/
Author: MINTMAN AI TECHNOLOGIES PRIVATE LIMITED
Author URI: https://www.mm-adsman.in/
Description: A custom WordPress theme built from scratch using HTML, CSS, PHP, and JavaScript.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
*/

/* ===== Theme Default Styles ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

/* Transparent header background */
header {
    background: transparent;
    padding: 15px 0;
    text-align: center;
}

/* Container for header content */
header .container {
    max-width: 1140px; /* or your preferred max width */
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer style remains dark */
footer {
    background: #222;
    color: white;
    padding: 15px;
    text-align: center;
}

/* Main content padding */
main {
    padding: 20px;
}

/* Primary menu styles */
.primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center; /* center menu */
}

.primary-menu li a {
    color: #000; /* black text for menu on transparent header */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.primary-menu li a:hover {
    color: #0073e6; /* blue hover color */
    text-decoration: underline;
}

/* Header widget area styling */
#header-widget-area {
    margin-top: 10px;
}

/* ===== AUTH MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-box {
  background: #fff;
  width: 420px;
  max-width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 24px 28px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #444;
}

.tab-header {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  color: #666;
  font-size: 18px;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-bottom-color .15s;
}

.tab-btn.active {
  color: #000;
  border-bottom-color: #000;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.modal-box input,
.modal-box select {
  padding: 12px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-size: 15px;
  background: #fbfeff;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 12px;
}

/* Login & Signup buttons full width with original blue */
.auth-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #0073e6;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
}

.auth-btn:hover {
  background: #005bb5;
}

/* Remember Me row in login */
.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -4px 0 6px 0;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Forgot password link */
.forgot-link {
  font-size: 13px;
  color: #0073e6;
  text-decoration: none;
}
.forgot-link:hover { text-decoration: underline; }

@media (max-width:480px){
  .modal-box{ width: 92%; padding: 18px; }
  .tab-btn{ font-size: 16px; }
}

