/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* CSS Variables for brand color palette */
:root {
  --bg-light: #F8F9FA;
  --text-dark: #212529;
  --text-black: #000000;
  --accent-blue: #007BFF;
  --accent-orange: #FF6B35;
  --accent-purple: #8B5CF6;
  --electric-blue-light: #4DA6FF;
  --electric-blue-dark: #0056B3;
}

/* Basic style reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16.8px; /* 5% larger: 16px to 16.8px */
}

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global body styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #F8F9FA;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global Typographic Hierarchy - MODERN CLAMP() APPROACH - 5% LARGER */
h1, h2, h3, h4, h5, h6 {
  text-align: left;
}

h1 { 
  font-size: clamp(2.625rem, 5.25vw, 4.725rem); /* 5% larger: 42px to 75.6px */
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2.625rem; /* 5% larger: 40px */
  line-height: 1.2;
}

h2 { 
  font-size: clamp(1.89rem, 4.2vw, 2.625rem); /* 5% larger: 30.24px to 42px */
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2.625rem; /* 5% larger: 40px */
  line-height: 1.2;
}

h3 { 
  font-size: clamp(1.26rem, 2.625vw, 1.575rem); /* 5% larger: 20.16px to 25.2px */
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.575rem; /* 5% larger: 30px */
  line-height: 1.3;
}

/* Global paragraph alignment */
p {
  text-align: left;
}

/* Global Container - Better 4K utilization - 5% LARGER */
.section-container {
  width: 95%;
  max-width: 1890px; /* 5% larger: 1800px to 1890px */
  margin: 0 auto;
  padding: 126px 0; /* 5% larger: 120px to 126px */
}

/* Global CTA Button Styles */
.cta-button {
  border-radius: 8.4px; /* 5% larger: 8px to 8.4px */
}

/* Responsive adjustments for larger screens */
@media (min-width: 1920px) {
  html {
    font-size: 18.9px; /* 5% larger: 18px to 18.9px */
  }
  
  .section-container {
    width: 98%;
    max-width: 2100px; /* 5% larger: 2000px to 2100px */
    padding: 157.5px 0; /* 5% larger: 150px to 157.5px */
  }
}

/* Enhanced Floating Menu Styles - ELECTRIC BLUE COLOR SCHEME */
#menu-icon {
  position: fixed;
  top: 31.5px; /* 5% larger: 30px to 31.5px */
  right: 31.5px; /* 5% larger: 30px to 31.5px */
  z-index: 1000;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--electric-blue-dark) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 73.5px; /* 5% larger: 70px to 73.5px */
  height: 73.5px; /* 5% larger: 70px to 73.5px */
  font-size: 29.4px; /* 5% larger: 28px to 29.4px */
  cursor: pointer;
  box-shadow: 0 6.3px 21px rgba(0, 123, 255, 0.4); /* Electric blue shadow */
  opacity: 0;
  transform: translateY(-105px); /* 5% larger: -100px to -105px */
  transition: all 0.3s ease;
}

#menu-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8.4px 26.25px rgba(0, 123, 255, 0.6); /* Electric blue shadow */
}

#menu-icon.visible {
  opacity: 1;
  transform: translateY(0);
}

#menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 33.33vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--electric-blue-dark) 0%, var(--accent-blue) 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

#menu-overlay.is-open {
  transform: translateX(0);
}

#menu-overlay a {
  color: white;
  text-decoration: none;
  font-size: 2.31rem; /* 5% larger: 2.2rem to 2.31rem */
  margin: 26.25px 0; /* 5% larger: 25px to 26.25px */
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 15.75px 26.25px; /* 5% larger: 15px 25px to 15.75px 26.25px */
  border-radius: 12.6px; /* 5% larger: 12px to 12.6px */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

#menu-overlay a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10.5px); /* 5% larger: 10px to 10.5px */
  box-shadow: 0 4.2px 15.75px rgba(0, 0, 0, 0.2); /* 5% larger shadows */
}

/* Page Transition Animations - 5% LARGER */
.page-transition {
  animation: fadeInUp 0.6s ease-out;
}

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

.section-animate {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-52.5px); /* 5% larger: -50px to -52.5px */
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card-animate {
  animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
