/* Import component styles */
@import url('./components/header.css');
@import url('./components/footer.css');
@import url('./components/main-content.css');
@import url('./components/modals.css');

/* Global Resets and Defaults */
*,
::after,
::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  cursor: pointer;
  color: currentColor;
}

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

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 5vw, 40px);
  padding-right: clamp(16px, 5vw, 40px);
}

/* Utility Classes */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.fp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Button Styles */
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
}

.fp-btn--primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.fp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.fp-btn--secondary {
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

.fp-btn--secondary:hover {
  background: #ff6b35;
  color: white;
}

.fp-btn--large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Body and Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(
      135deg,
      rgba(15, 15, 35, 0.9) 0%,
      rgba(26, 26, 46, 0.9) 50%,
      rgba(22, 33, 62, 0.9) 100%
    ),
    url('/assets/images/main-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ff6b35;
}

p {
  margin-bottom: 1rem;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* contact form */

.fp-success {
  margin-top: 12px;
  padding: 10px 14px;
  background: #e6ffe6;
  border: 1px solid #3bb33b;
  color: #2d7a2d;
  border-radius: 6px;
  font-size: 14px;
}
