/* Global styles for Aura Digital Media */

:root {
  --color-primary: #000000;
  /* Black for strong contrast */
  --color-primary-rgb: 0, 0, 0;
  --color-secondary: #ffffff;
  /* White */
  --color-secondary-rgb: 255, 255, 255;
  --color-accent: #aa4bb8;
  /* Updated Purple */
  --color-accent-rgb: 170, 75, 184;
  --color-accent-hover: #cc84dc;
  /* Lighter Purple for hover */
  --color-light: #f8f9fa;
  --color-dark: #121212;
  /* Darker black for better contrast */
  --font-primary: 'Poppins', sans-serif;
  --section-padding: 100px;
  --border-radius-card: 24px;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Removes bottom space */
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  line-height: 1.6;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  /* Sharper text */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.1;
  /* Tighter line height for headings */
  letter-spacing: -0.02em;
  /* Modern tight spacing */
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  /* Slightly larger body text */
}

/* Utility Classes */
.section-title {
  font-size: 3.5rem;
  /* Significant increase */
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-padding {
  padding: var(--section-padding) 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Helper classes */
@media (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-show {
    display: none !important;
  }
}