/* --------- Fonts --------- */
@font-face {
  font-family: 'Wanderwood';
  /* src: url('assets/fonts/Wanderwood.otf') format('opentype'); */
  src: url('assets/fonts/Wanderwood.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* --------- Base Styles --------- */
:root {
  --brand-orange: #F09B20;
  --brand-dark: #15211d;
  --brand-red: #e1362b;
  --brand-lightorange: #f2e4c1;
  --brand-lightgreen: #b9c69b;
  --text-color: #333;
  --bg-light: #fafafa;
  --transition: 0.3s ease;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-light);
}

h1, h2, h3, h4 {
  font-family: 'Wanderwood', sans-serif;
  color: var(--text-color);
  line-height: 1.2;
}

p {
  line-height: 1.2;
  color: #555;
}
.container {
  padding: 0em 40px;
  max-width: 1100px;
  margin: auto;
}

/* --------- Header / Navigation --------- */
header {
  background: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

/* Base styles */
/* Base styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
}

.logo {
  font-weight: bold;
  font-size: 1.5em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
  transition: color var(--transition);
}

nav li:hover a {
  color: var(--brand-orange);
}

/* Hamburger styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 4px;
  background: var(--text-color);
  border-radius: 2px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    width: 100%;
    top: 104px;
    left: 0px;
    background: white;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}



/* --------- Banner / Hero --------- */
.banner,
.about-banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--brand-orange);
  color: #fff;
  text-align: left;
  padding: 40px 0px 0px 0px;
  margin-bottom: 0px;
}
.banner-title {
}

.banner h1,
.about-banner h1 {
  font-size: 3em;
  width: 60vw;
  max-width: 700px;
  margin-bottom: 10px;
}

.banner p,
.about-banner p {
  font-size: 1.2em;
  width: 70vw;
  max-width: 700px;
  margin: 0px;
  margin-bottom: 100px;
  
}

.checker {
    position: relative;
    width: 100%;
    height: 105px;
    background: url(assets/images/checker.png);
    margin-top: 100px;
    padding: 0;
  }
  .checker_yellow {
    position: relative;
    width: 100%;
    height: 105px;
    background: url(assets/images/checker_yellow.png);
    padding: 0;
  }

  .checker-foot {
    margin-top: 0px;
    height: 70px;
    margin-bottom: 70px;
  }

/* --------- Marquee --------- */
#scrolling-banner {
  margin-top: 10px;
}

.scroll-line {
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
  font-size: 1.2em;
  padding: 4px 0;
}

.scroll-track, .scroll-track2 {
  display: inline-flex;
}

.scroll-track span,
.scroll-track2 span {
  display: inline-block;
  font-family: 'Wanderwood', sans-serif;
}

.scroll-right .scroll-track {
  animation: marqueeRight 25s linear infinite;
}

.scroll-right .scroll-track2 {
  animation: marqueeRight 15s linear infinite;
}

.scroll-left .scroll-track {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

@keyframes marqueeLeft {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* --------- Team Section --------- */
.team {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.member {
  background: #fff;
  flex: 1 1 300px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.member img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.member-content {
  padding: 1.8rem;
}

.member-content h3 {
  margin-top: 0;
  font-size: 1.6rem;
}

.member-content h4 {
  color: var(--brand-orange);
  margin-bottom: 1rem;
}
@media (max-width: 543px) {
.member {
  background: #fff;
  flex: 1 1 100%;
}}

/* --- About Story Section --- */
.about-story {
  max-width: 900px;
  margin: 6rem auto;
  padding: 0 2rem;
  line-height: 1.8;
  font-size: 1.15rem;
  color: var(--text-color);
  text-align: left;
  position: relative;
}

.about-story::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ff6b3d;
  border-radius: 2px;
  opacity: 0.8;
}

.about-story p {
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.about-story p:hover {
  color: #111;
}

.about-story .tagline {
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
  color: #ff6b3d;
  margin-top: 3rem;
  letter-spacing: 0.5px;
}

/* Subtle animation with AOS */
[data-aos="fade-up"] {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about-story {
    font-size: 1.05rem;
    margin: 4rem 1.5rem;
    text-align: left;
  }

  .about-story::before {
    width: 60px;
    height: 3px;
  }

  .about-story .tagline {
    font-size: 1.15rem;
  }
}

/* --------- Portfolio Gallery --------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img, .gallery iframe {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.folio-hero {

}
.folio-hidden {
  display: none;
}

/* -------- Lightbox -------- */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  flex-direction: column;
  z-index: 2000;
  overflow: hidden;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2100;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  background: #fff;
  /* border-radius: 12px; */
  /* overflow: hidden; */
  overflow: auto;
  max-height: 100vh;
}

.lb-title {
  font-size: 3rem;
  font-weight: 700;
  padding: 60px 40px 0px 40px;
  background: var(--brand-orange);
  color: var(--text-color);
  margin: 0px;
}

.lb-scope {
  padding: 0px 40px 20px 40px;
  font-size: 1rem;
  background-color: var(--brand-orange);
}

.lb-images {
  /* overflow-y: auto; */
  padding: 20px;
  background: #f5f5f5;
}

.lb-images img,
.lb-images iframe,
.lb-images embed {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Scrollbar for desktop */
.lb-images::-webkit-scrollbar {
  width: 10px;
}

.lb-images::-webkit-scrollbar-track {
  background: #eee;
}

.lb-images::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .lightbox-inner {
    margin: 0px;
    max-height: 100vh;
  }

  .lb-title {
    font-size: 2.3rem;
    /* padding: 15px; */
  }

  .lb-scope {
    font-size: 1rem;
    /* padding: 10px 15px; */
  }

  .lb-images {
    padding: 15px;
  }
}

/* --------- Forms / Contact --------- */
#info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 3rem;
}

form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

form h2 {
  font-size: 1.8rem;
  color: var(--text-color);
}

input[type="text"],
input[type="email"] {
  padding: 0.9rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: var(--brand-orange);
  outline: none;
}

input[type="submit"] {
  background-color: var(--brand-orange);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color var(--transition);
}

input[type="submit"]:hover {
  background-color: #d17d1d;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
}
textarea {
  padding: 0.9rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color var(--transition);
  resize: vertical; /* allows user to resize if desired */
  min-height: 3em;  /* ensures about 3 lines tall */
  font-family: inherit; /* match other inputs */
}

textarea:focus {
  border-color: var(--brand-orange);
  outline: none;
}

/* --------- CTA Section --------- */
.cta-section h2 {
    color: #fff;
    margin: 0px 40px 5px 40px;
}
.cta-section p {
    margin: 0px 40px 40px 40px;
    color: #b0b0b0;
}

.cta-section {
  text-align: center;
  background: var(--brand-dark);
  color: #fff;
  padding: 0px 0px 100px 0px;
}

.cta-section a {
position: relative;
  background: var(--brand-orange);
  color: #fafafa;
  top: 1rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin: 0px 40px;
  transition: background-color var(--transition);
}

.cta-section a:hover {
  background-color: #d17d1d;
}

/* --------- Responsive Design --------- */
@media (max-width: 900px) {
  .team {
    flex-direction: column;
    align-items: center;
  }

  .member img {
    height: 260px;
  }

  .product-section {
    flex-direction: column;
  }

  .product-hero,
  .product-offering {
    width: 100%;
    position: relative;
  }
}

/* index styling */
  .about-brandwich {
  padding: 4em 2em 6em 2em;
  background: #fff;
  color: var(--text-color);
  text-align: center;
  margin-top: 300px;
}

.about-brandwich .container {
  max-width: 1100px;
  margin: 0 auto;
}

.headline {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 1.5em;
}

.about-brandwich p {
  max-width: 800px;
  margin: 0.75em auto;
  line-height: 1.7;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5em;
  margin: 4em 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service {
  background: #303030;
  color: #fafafa !important;
  border-radius: 1.25em;
  padding: 2.5em 1.5em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service h3 {
  font-size: 1.5rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #fafafa;
}

.service p {
  color: #fafafa;
  font-size: 1rem;
}

/* ICONS */
.service .icon {
  font-size: 2.2rem;
  color: #e84c3d;
  background: #f7f7f7;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service:hover .icon {
  background: #e84c3d;
  color: #fff;
  transform: scale(1.1);
}

/* PHILOSOPHY SECTION */
.philosophy {
  background-color: #f4e7c6e0;
  padding: 40px;
  border-radius: 10px;
}

.philosophy h2 {
  margin-bottom: 0px;
  text-align: center;
}

.philosophy h3 {
  text-align: center;
}

.philosophy p {
  color: var(--text-color);
  text-align: center;
  margin-top: 5px;
}

.icon-large {
  font-size: 3rem;
  color: #e84c3d;
  margin-bottom: 1em;
  display: flex;
  justify-content: center;
}
#phil-bg {
  background: url(assets/images/cafe2.jpg);
  background-size: cover;
  width: 100%;
  box-sizing: border-box;
  padding: 80px;
}
@media (max-width: 550px) {
  #phil-bg {
    padding: 0px;
    }
  form {
    gap: .5rem;
    background-color: transparent;
    padding: 0rem;
  }
  }

/* Subtle animation */
@media (prefers-reduced-motion: no-preference) {
  .service {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
  }

  .service:nth-child(2) { animation-delay: 0.2s; }
  .service:nth-child(3) { animation-delay: 0.4s; }
  .service:nth-child(4) { animation-delay: 0.6s; }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

