/* Roboto Font Configuration */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wdth,wght@82.3,406&display=swap");

/* Handwritten Font for Highlighted Text */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&display=swap');

/* Roboto Font Class */
.roboto-custom {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 406;
  font-style: normal;
  font-variation-settings: "wdth" 82.3;
}

/* Apply Roboto as default body font */
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 406;
  font-style: normal;
  font-variation-settings: "wdth" 82.3;
}

/* Override any existing font families */
* {
  font-family: inherit;
}

/* Ensure form elements inherit the font */
input, textarea, select, button {
  font-family: inherit;
  font-optical-sizing: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-variation-settings: inherit;
}

/* Handwritten style for highlighted text */
.handwritten-highlight {
  font-family: 'Kalam', cursive;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Hero section horizontal layout styles */
.hero-horizontal-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding-top: 2rem;
}

.hero-slogan {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: bold;
  color: white;
  margin-bottom: 3rem;
  line-height: 1.2;
  max-width: 1200px;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero-video-container {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 3rem;
}

.hero-description {
  max-width: 800px;
  font-size: 1.25rem;
  color: white;
  line-height: 1.6;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-horizontal-layout {
    padding-top: 1rem;
  }
  
  .hero-slogan {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
    align-items: center;
  }
  
  .hero-buttons button {
    width: 80%;
    max-width: 300px;
  }
  
  .hero-video-container {
    margin-bottom: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}
