:root {
  --text-color: #2E2E2E; 
  --headline-font: 'Playfair Display', serif; 
  --body-font: "Open Sans", sans-serif;
  --accent-color: #88c1cb;
  --accent-color2: #6B4F3A;
  --background-color: #F5EFE6;
}

html, body{
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    margin: 0; 
    padding-top: 0px; 
    color: var(--text-color);
    background-color: var(--background-color);
}

header {
    font-family: var(--headline-font);
    position: sticky;
    top: 0;
    z-index: 10; 
    background-color: var(--accent-color); 
    color: var(--text-color);          
    padding: 10px 20px;     
    display: flex;         
    justify-content: space-between;
    align-items: center;    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.navbar {
    color: var(--text-color);
    font-family: var(--body-font);
    padding: 10px 20px;
}

.nav-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-size: 20px;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block; 
}
footer{
    text-align: center; 
    padding: 20px; 
    background-color: var(--accent-color); 
    color: var(--text-color); 
    width: 100%; 
}
footer a{
    color: var(--text-color);
    text-decoration: none;
}
footer a:hover{
    color: blue;
}
.footerNav {
    color: var(--text-color);
    font-family: var(--body-font);
    padding: 10px 20px;
}

.footerNav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.footerNav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block; 
}
/* Base Styles */
body {
  margin: 0;
  font-family: var(--body-font);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--headline-font);
  margin-bottom: 1rem;
}

/* Hero Section */
.page-hero {
  height: 100vh; /* Example: Full viewport height */
  position: relative;
  overflow: hidden; /* Ensures video stays within container boundaries */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}
#background-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensures the video covers the entire area without distortion */
  z-index: -1; /* Pushes the video behind other content */
}
.hero-text {
  position: relative; /* Ensures content is positioned above the video (which has z-index: -1) */
  z-index: 1; /* Higher z-index than the video */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 6px;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section.light {
  background: #ffffff;
}

.section.narrow {
  max-width: 800px;
}

/* Columns */
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.column {
  flex: 1 1 300px;
  padding: 2rem;
  background: var(--background-color);
  border-radius: 6px;
}

/* Values List */
.values-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.values-list li {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 17px;
}

/* Responsive */
@media (max-width: 768px) {
  .columns {
    flex-direction: column;
  }

  .page-hero {
    height: 40vh;
  }
}
.baker-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: auto;
}

.baker-img {
    width: 250px;
    border-radius: 10px;
}

.baker-text {
    flex: 1;
}