/*
 * This is a manifest file that'll be compiled into application.css.
 */

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

html {
  scroll-padding-top: 155px;
}

body {
  font-family: 'Cooper Hewitt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #000;
  background: linear-gradient(90deg, #89d957, #c9e256);
  min-height: 100vh;
}

/* Alert styles */
.alert {
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 600;
}

.alert-success {
  background: rgba(137, 217, 87, 0.9);
  color: #000;
}

.alert-error {
  background: rgba(255, 145, 77, 0.9);
  color: #fff;
}

/* Header/Navigation */
.navbar {
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 240px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ff914d;
}

.contact-btn {
  background: #ff914d !important;
  color: #fff !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #e67e42 !important;
}

/* Main content */
main {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.brands {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
}

.brands span {
  color: #ff914d;
}

/* Sections */
.section {
  backdrop-filter: blur(10px);
  margin: 2rem 0;
  border-radius: 12px;
}

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

.section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  /* padding: 2rem; */
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ff914d;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  display: inline-block;
  white-space: nowrap;
}

.service-item p {
  font-size: 1rem;
  text-align: left;
}

/* Contact section */

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-info {
  text-align: left;
}

.contact-info p {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 400;
}

.location-info {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
}

.location-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ff914d;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  display: inline-block;
  white-space: nowrap;
}

.location-info p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Form styles */
.contact-form {
  /* padding: 2rem; */
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-family: 'Cooper Hewitt', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff914d;
}

.submit-btn {
  background: #ff914d;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Cooper Hewitt', sans-serif;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #e67e42;
}

/* reCAPTCHA notice */
.recaptcha-notice {
  margin-top: 1rem;
  text-align: center;
}

.recaptcha-notice small {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

.recaptcha-notice a {
  color: #ff914d;
  text-decoration: none;
}

.recaptcha-notice a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-tag {
  height: 30px;
  width: auto;
}

/* Responsive design */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  main {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .logo-image {
    height: 70px;
    max-width: 250px;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content h3 {
    font-size: 1.2rem;
  }

  .brands {
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .hero {
    padding: 2rem 2rem 4rem;
  }

  .section {
    width: 95%;
    padding: 10px;
    margin-left: 5px;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .container {
    overflow-x: hidden;
    box-sizing: border-box;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 10px;
  }
  
  .contact-form {
    padding: 10px;
  }

  .contact-info {
    text-align: center;
  }
  
  .contact-info p {
    text-align: center;
  }
  
  .location-info {
    text-align: center;
    padding: 0px;
  }
  
  .location-info p {
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item p {
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
  }

  .service-item h3 {
    margin-top: 5px;
  }
}

/* Responsive design */
@media (min-width: 769px) {
  .service-item {
    padding: 10px;
  }

  .contact-form {
    padding: 20px;
    margin-bottom: 20px;
  }
}