@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

:root {
  --font-primary: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --bg-dark: #1f1a17;
  --bg-accent: #4a2f26;
  --text-main: #ede6d9;
  --text-muted: #b8b2a8;
  --highlight: #a34727;
  --highlight-hover: #b68b6b;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.75;
  scroll-behavior: smooth;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--bg-accent);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 120px;
  width: auto;
}

.intro-logo {
  display: block;
  margin: 0 auto 0 auto;
  max-width: 400px;      /* Adjust for desired size */
  height: auto;
}

/* Navigation */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.site-nav a {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--highlight-hover);
}

/* Main Content */
main {
  padding: 2rem;
}

.intro,
.featured-beers,
.cta {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}

.intro h1 {
  font-family: var(--font-primary);
  font-size: 2.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.featured-beers h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.featured-beers ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.featured-beers li {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: var(--text-main);
}

/* Call to Action */
.cta-button {
  font-family: var(--font-primary);
  font-weight: 700;
  background-color: var(--highlight);
  color: var(--text-main);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 2rem;
  display: inline-block;
}

.cta-button:hover {
  background-color: var(--highlight-hover);
  color: var(--bg-dark);
}

/* Footer */
.site-footer {
  background-color: var(--bg-accent);
  text-align: center;
  padding: 1.5rem 1rem;
  font-family: var(--font-primary);
  color: var(--highlight-hover);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.featured-video video {
  height: auto;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.video-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
	.site-header {
	  display: flex;
	  justify-content: space-between;   /* logo left, burger right */
	  align-items: center;              /* vertical alignment */
	  flex-direction: row;
	  padding: 1rem 1rem;
	  width: 100%;
	}

	.site-nav {
	  display: flex;
	  /*justify-content: flex-end;  */     /* push menu-toggle to far right */
	  align-items: center;
	  /*width: auto;*/                     /* prevents it from spreading too wide */
	  /*gap: 1rem; */
	  
	}

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .featured-beers h2 {
    font-size: 1.5rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

	 .logo {
	  height: 60px;
	  margin: 0;
	}

  .intro-logo {
    max-width: 220px;
    margin-bottom: 1.5rem;
  }

  .video-wrap video {
    width: 100%;
    height: auto;
  }
	
  /*.menu-toggle {
	  display: flex;
	  flex-direction: column;
	  cursor: pointer;
	  padding: 0.5rem;
	  gap: 3px;
	  /*align-self: center;*//*
	  justify-content: center;
	  align-items: center;
	  margin-right: -10rem;
	  
	}*/
	.menu-toggle {
	  position: absolute;
	  top: calc(50% - 15px);
	  right: 1rem;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  gap: 3px;
	  z-index: 1001;
	}

  .menu-toggle span {
	  width: 24px;
	  height: 3px;
	  background-color: var(--text-main);
	  transition: 0.3s ease;
	}

  #navMenu {
	  display: none;
	  flex-direction: column;
	  align-items: flex-end;
	  gap: 1rem;
	  margin-top: 1rem;
	}

  #navMenu.active {
	  display: flex;
	}

}
