@font-face {
  font-family: 'Quicksand';
  src: url('assets/fonts/Quicksand.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'MonCheri';
  src: url('assets/fonts/tan-mon-cheri.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Angleton';
  src: url('assets/fonts/TAN-Angleton-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CormorantGaramond';
  src: url('assets/fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Quicksand', serif;
  color: #222;
}
.fixed-top {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

/* Top Bar */
.top-bar {
  background-color: #c9b89b;
  color: white;
  text-align: center;
  font-size: 14px;
  padding: 0.5rem;
}
.top-bar span {
  font-weight: bold;
}
.top-bar button {
  margin-left: 10px;
  padding: 5px 10px;
  background: white;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
}
.navbar .logo {
  font-weight: 600;
  font-size: 24px;
  font-family: 'CormorantGaramond', serif;
}
.navbar nav a {
  margin: 0 0.75rem;
  text-decoration: none;
  color: #222;
  font-size: 14px;
}

/* Hamburger Menu Button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}
.hamburger div {
  height: 3px;
  background: #222;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 90vh;
}
.hero-image {
  flex: 2;
  background: url('assets/images/profile_pic.jpeg') no-repeat center center/cover;
  min-height: 400px;
}
.hero-text {
  flex: 1;
  background-color: #e7dfd4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin: 0;
  font-family: 'CormorantGaramond', serif;
  font-weight: 600;
}
.hero-text h2 {
  font-size: 1.5rem;
  font-family: 'CormorantGaramond', serif;
  font-weight: 400;
  margin: 1rem 0;
}
.hero-text p {
  max-width: 400px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero-text button {
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  background: white;
  border: 1px solid #222;
  border-radius: 30px;
  cursor: pointer;
  width: fit-content;
}
h1, .logo {
  font-family: 'CormorantGaramond', serif;
  font-weight: 600;
}
h2 {
  font-family: 'CormorantGaramond', serif;
  font-weight: 500;
}
h3, h4, h5, h6 {
  font-family: 'CormorantGaramond', serif;
  font-weight: 500;
}

/* Form Section */
.form-section {
  background-color: #f6f4f2;
  padding: 4rem 2rem;
  text-align: center;
}
.form-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-family: 'CormorantGaramond', serif;
}
.form-section p {
  font-size: 1.1rem;
}
.signup-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.signup-form input {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.signup-form button {
  padding: 0.75rem;
  background-color: #c9b89b;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

/* Responsive styles */
@media (max-width: 600px) {
  /* Stack hero image and text vertically */
  .hero {
    flex-direction: column;
  }
  .hero-image,
  .hero-text {
    flex: unset;
  }

  /* Navbar changes */
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  /* Hide nav links by default */
  .navbar nav {
    display: none;
    flex-direction: column;
  }
  .navbar nav.active {
    display: flex;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Navbar links style on mobile */
  .navbar nav a {
    padding: 0.5rem 0;
    margin: 0;
  }
}
