/* Critical CSS - Above the fold styles only */
@charset "UTF-8";

:root {
  --primary: #ffe24c;
  --secondary: #2c2c2c;
  --black: #000;
  --white: #fff;
  --gray: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  line-height: 1.6;
  color: var(--secondary);
  background-color: #1c1d20;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", var(--font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  font-weight: 700;
}

main {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Header Critical Styles */
.navbar {
  background: var(--black);
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
}

.navbar-brand {
  max-width: 150px;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 100%;
  height: auto;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 1rem;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Hero Section Critical Styles */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Button Critical Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--black);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  opacity: 0.9;
}

/* Section Spacing */
section {
  padding: 3rem 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-link {
    margin: 0 0.5rem;
  }
}

/* Smooth Scroll Wrapper - Ensure proper layout */
#smooth-wrapper {
  width: 100%;
}

#smooth-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

/* Loading Optimization */
@media print {
  body {
    background: none;
  }
}
