/* --- GLOBAL STYLES --- */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #fafafa;
  font-size: 16px;
}

/* --- HEADERS & TEXT --- */
header, section {
  text-align: center;
  padding: 60px 20px;
}

#portfolio {
  text-align: left;
  padding: 40px 0;
}


h1, h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  color: #0077cc;
  text-decoration: none;
}

/* --- PROJECT STYLING --- */
.project img,
.project video {
  width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.project h3 {
  margin: 10px 0 5px;
}

/* --- FOOTER --- */
footer {
  background: #703500;
  padding: 20px;
  font-size: 14px;
  color: white;
}

/* --- HEADER & NAVIGATION --- */
header {
  text-align: left; 
  background-color: #703500; 
  color: white;
  padding: 20px 40px;
}

.logo img {
  height: 90px;
}


.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin: 0 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 540;
  font-size: 20px;
}

.navbar a:hover {
  color: #f2f2f2;
}

/* --- Call to Action ---*/
#cta {
  background-color: #38322d;
  color: white;
  text-align: center;
  display: flex;               /* enable flex layout */
  flex-direction: column;      /* stack content vertically */
  justify-content: center;     /* center content vertically */
  align-items: center;         /* center content horizontally */
  min-height: 80px;           /* ensures section is tall enough */
  padding: 60px 20px;             /* only horizontal padding now */
}


#cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #703500;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s
}

.cta-button:hover {
  background-color: #642f01;
}

.header-container {
  display: flex;                 /* makes logo + nav sit side by side */
  align-items: center;           /* vertically center them */
  justify-content: space-between;/* logo left, nav right */
}

/* --- PORTFOLIO AUTO SCROLL --- */
#portfolio {
  text-align: center;
  padding: 60px 0;
  background-color: #fafafa;
}

.portfolio-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 20px;
  scroll-behavior: smooth;
  max-width: 90%;
  margin: 0 auto;
  scroll-snap-type: x mandatory; /* enables snap scrolling */
}

.project {
  flex: 0 0 auto;
  width: 400px;                   /* fixed width helps smooth scrolling */
  text-align: center;
}

.project img,
.project video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.portfolio-container::-webkit-scrollbar {
  height: 10px;
}

.portfolio-container::-webkit-scrollbar-thumb {
  background-color: #703500;  /* matches your brand brown */
  border-radius: 10px;
}

.portfolio-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}


.portfolio-container {
  scrollbar-color: #703500 #e0e0e0; /* thumb + track */
  scrollbar-width: thin;
}

