/*
 * Core Styles - 1976uk Creative Theme
 * Typography, colors, base styles, and global elements
 * Version: 1.0.0
 */

/* ==========================================================================
   MODERN GOOGLE FONTS IMPORT - INTER + POPPINS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */

/* Universal Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Body & HTML Base */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

h1 {
  font-size: clamp(2.2em, 5vw, 3.5em);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8em, 4vw, 2.5em);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.4em, 3vw, 2em);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2em, 2.5vw, 1.5em);
  font-weight: 600;
}

/* Body Text */
p {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0 0 1em 0;
  color: #e8e8e8;
}

/* Links */
a {
  color: #4facfe;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00f2fe;
  text-decoration: underline;
}

/* ==========================================================================
   COLOR SYSTEM
   ========================================================================== */

:root {
  /* Primary Colors */
  --color-primary: #4facfe;
  --color-primary-hover: #00f2fe;
  --color-secondary: #667eea;
  
  /* Background Colors */
  --bg-primary: #f8f9fa;
  --bg-secondary: #e9ecef;
  --bg-tertiary: #dee2e6;
  --bg-quaternary: #ced4da;
  --bg-dark: #adb5bd;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #f0f0f0;
  --text-tertiary: #e8e8e8;
  --text-quaternary: #d1d5db;
  
  /* Status Colors */
  --color-success: #4ade80;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-hover: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   ACCESSIBILITY & SCREEN READER STYLES
   ========================================================================== */

/* Skip Link */
.skip-link {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 999999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 7px;
}

/* Screen Reader Text */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

/* ==========================================================================
   SITE TITLE COMPONENT
   ========================================================================== */

.site-title {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(2.5em, 6vw, 4em);
  color: #25242a;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
  line-height: 0.9;
  letter-spacing: -0.02em;
  backdrop-filter: blur(15px);
  padding: 15px 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(255, 255, 255, 0.15) 50%, 
    rgba(0, 0, 0, 0.3) 100%
  );
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.site-title:hover {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.5) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(0, 0, 0, 0.4) 100%
  );
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.site-title a {
  color: inherit !important;
  text-decoration: none !important;
}

.site-title .main-title {
  display: block;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0), 0 4px 16px rgba(0, 0, 0, 0);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.8));
}

.site-title .sub-title {
  display: block;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  opacity: 0.9;
  margin-top: -5px;
}

/* ==========================================================================
   UNIVERSAL HAMBURGER MENU
   ========================================================================== */

.universal-hamburger {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.universal-hamburger:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.universal-hamburger span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   ENHANCED UNIVERSAL MENU MODAL - Dashboard Style with Homepage Size
   ========================================================================== */

.universal-menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.universal-menu-content {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(255, 255, 255, 0.15) 50%, 
    rgba(0, 0, 0, 0.3) 100%
  );
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px;
  text-align: center;
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  margin: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s ease-out;
  position: relative;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.universal-menu-header {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.universal-menu-header h3 {
  color: #ffffff;
  font-size: 1.4em;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.universal-close-button {
  position: absolute;
  top: -5px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5em;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.universal-close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.universal-menu-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.menu-section {
  margin-bottom: 18px;
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1em;
  margin: 0 0 12px 0;
  font-weight: 500;
  text-align: left;
  padding-left: 10px;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.menu-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: inherit;
}

.menu-card-icon {
  font-size: 1.8em;
  margin-bottom: 8px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.menu-card h5 {
  color: #ffffff;
  font-size: 0.95em;
  margin: 0 0 4px 0;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.menu-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75em;
  margin: 0;
  line-height: 1.3;
}

/* ==========================================================================
   RESPONSIVE TYPOGRAPHY
   ========================================================================== */

@media (max-width: 768px) {
  .site-title {
    top: 20px;
    left: 20px;
    font-size: 1.5em;
  }
  
  .universal-hamburger {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  
  .universal-hamburger span {
    width: 16px;
  }

  /* Enhanced Universal Menu Mobile Styles */
  .universal-menu-content {
    max-width: 95%;
    padding: 18px;
    margin: 15px 10px;
    max-height: 90vh;
  }

  .universal-menu-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .universal-menu-header h3 {
    font-size: 1.1em;
  }

  .universal-close-button {
    width: 30px;
    height: 30px;
    font-size: 1.3em;
  }

  .universal-menu-body {
    gap: 12px;
  }

  .menu-section {
    margin-bottom: 15px;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
    gap: 10px;
  }

  .menu-card {
    padding: 12px 8px;
  }

  .menu-card-icon {
    font-size: 1.8em;
    margin-bottom: 8px;
  }

  .menu-card h5 {
    font-size: 0.9em;
  }

  .menu-card p {
    font-size: 0.75em;
  }

  .menu-section h4 {
    font-size: 1em;
    margin-bottom: 12px;
  }
}

/* ==========================================================================
   FOOTER POSITIONING
   WordPress copyright in bottom-left as requested
   ========================================================================== */

.site-footer {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(255, 255, 255, 0.15) 50%, 
    rgba(0, 0, 0, 0.3) 100%
  );
  backdrop-filter: blur(15px);
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75em;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.site-footer:hover {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.5) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(0, 0, 0, 0.4) 100%
  );
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.site-footer .site-info p {
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .site-footer {
    bottom: 15px;
    left: 15px;
    font-size: 0.7em;
    padding: 8px 12px;
  }
}

/* ==========================================================================
   GENTLE GRADIENT BACKGROUND - TEMPORARY REPLACEMENT FOR ANIMATED STRIPES
   ========================================================================== */

.gentle-gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, 
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #f5576c 75%,
    #4facfe 100%
  );
  opacity: 0.8;
}

/* ==========================================================================
   MAN OF STEEL GRADIENT - CONTACT PAGE BACKGROUND
   Deep crimson red to rich navy blue at 45 degrees with red at top
   ========================================================================== */

.man-of-steel-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(45deg, 
    #780206 0%,
    #061161 100%
  );
  opacity: 0.95;
}