/* Font Hierarchy & Theme Variables */
:root {
  --font-display: 'Anton', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Oversfit S Colors */
  --primary-color: #ff592b;
  --text-dark: #333;
  --text-light: #666;
  --background-color: #fafafa;
  --white: #ffffff;
  --border-color: #ddd;
  --card-background: #ffffff;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Us Section */
.about-us {
  padding: 80px 0;
  background: var(--background-color);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Typography */
.about-us h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.about-us h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.about-us h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-us p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.about-us p strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* First paragraph styling */
.about-us p:first-of-type {
  font-size: 1.3rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 35px;
  font-weight: 500;
}

/* List Styling */
.about-us ul {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.about-us li {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  line-height: 1.7;
}

.about-us li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
}

.about-us li strong {
  color: var(--text-dark);
  font-weight: 600;
  font-family: var(--font-heading);
}

/* Tagline Styling */
.tagline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: var(--card-background);
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--primary-color);
}

/* Hover Effects */
.about-us h1:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.tagline:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-medium);
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us {
    padding: 60px 0;
  }

  .container {
    padding: 0 15px;
  }

  .about-us h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }

  .about-us h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
  }

  .about-us p {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 20px;
  }

  .about-us p:first-of-type {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .about-us li {
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 25px;
  }

  .tagline {
    font-size: 1.1rem;
    padding: 20px;
    margin-top: 40px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 40px 0;
  }

  .about-us h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .about-us h2 {
    font-size: 1.3rem;
  }

  .about-us p,
  .about-us li {
    font-size: 0.95rem;
  }

  .tagline {
    font-size: 1rem;
    padding: 15px;
  }
}

/* Selection Styling */
::selection {
  background: var(--primary-color);
  color: white;
}

::-moz-selection {
  background: var(--primary-color);
  color: white;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Animation on Load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us h1,
.about-us p,
.about-us h2,
.about-us ul,
.tagline {
  animation: fadeInUp 0.8s ease forwards;
}

.about-us h1 { animation-delay: 0.1s; }
.about-us p:first-of-type { animation-delay: 0.2s; }
.about-us p:nth-of-type(2) { animation-delay: 0.3s; }
.about-us p:nth-of-type(3) { animation-delay: 0.4s; }
.about-us h2 { animation-delay: 0.5s; }
.about-us ul { animation-delay: 0.6s; }
.about-us p:nth-last-of-type(2) { animation-delay: 0.7s; }
.tagline { animation-delay: 0.8s; }
