/* styles.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Montserrat:wght@700&display=swap');

/* Apply fonts */
body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

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

/* Navbar link styles */
nav a {
  font-weight: 500;
}

/* Hero Section Customizations */
#hero {
  /* Optional: If you want a background image instead of gradient */
  /* background-image: url('assets/images/hero-bg.jpg'); */
  /* background-size: cover; */
  /* background-position: center; */
}

/* Mobile Menu Transition */
#nav-links {
  transition: max-height 0.3s ease-in-out;
}
