/*----Remmedia Webontwerp 2026----*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --yellow: #bc9346;
  --yellow-light: #ffe9a3;
  --bg: #fffaf0;
  --text: #3b2a1a;
  --accent-red:  #bc9346;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.38);
  --radius: 14px;
  --transition: 0.2s ease;
  --container-width: 1200px;
  --font-main: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  margin: 0 0 0.5em;
  color:#111;
  font-family: "Lexend", sans-serif;
  text-transform:none;
}

p {
  margin: 0 0 1em;
}


.btn {
  display: inline-block;
  padding: 0.8em 1.8em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
  background: #bc9346;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: #bc9346;
}

.btn-outline-dark {
  border-color: #bc9346;
  color: #bc9346;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #bc9346;
  color: #fff;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #111;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 0;
  min-height: 90px;
}

.logo-left-floating {
  position: absolute;
  left: 0;
  top: 10px;
  transform: ;
  width: 150px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.25));
  transition: opacity .25s ease;
}

.logo-sticky {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  opacity: 0;
  transition: opacity .25s ease;
}

.scrolled .logo-left-floating {
  opacity: 0;
}

.scrolled .logo-sticky {
  opacity: 1;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  margin-right: 60px;              
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}
/* Hero */

.hero {
  background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.05)), url("images/beats_impressie_binnen01.jpg");
  background-size:cover;
  background-position:center center;
  padding: 260px 0 220px;
}
.herovacatures {
  background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.05)), url("images/foto_crew_shirt2.jpg");
  background-size:cover;
  background-position:center center;
  padding: 260px 0 220px;
}
.hero-overons {background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.05)), url("images/foto_tren_beats03.jpg");
  background-size:cover;
  background-position:center center;
  padding: 260px 0 220px;}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color:#fff;
}

.hero h1 {
  font-size: 2.8rem;
  font-family:"Lexend", sans-serif;
  font-weight:800;
  line-height: 1.2;
  margin-bottom: 0.6em;
  color:#fff;
}
.hero p, .hero-overons p, .herovacatures  p {
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero h1, .hero-overons h1, .herovacatures  h1 {
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-desc {
  max-width: 420px;
  font-size: 1.2rem;
  color:#fff;
}

.hero-image {
  display: flex;
  justify-content: center;
}

/* Over ons */

.about {
  padding: 120px 0;
  background: #bc9346;
}
.container p a {color:#fff;text-decoration:underline;}
.container p a:hover {color:#fff;text-decoration:none;}
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  background: url("images/beats_impressie_binnen04.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #4b2c16;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.vacature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  background: url("images/foto_tren_beats03.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #4b2c16;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.overons-image{width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  background: url("images/beats_impressie_binnen01.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #4b2c16;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.about-text p {
  font-size: 1rem;
  color:#fff;
}
.about-text h2 {
  font-size: 2rem;
  font-family:"Lexend", sans-serif;
  color:#fff;
}
/* banner */

.beats-banner {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.05)), url("images/foto_tren_beats03.jpg") center/cover no-repeat;
  min-height: 520px;
  padding:80px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle2 img {width: 300px;height: 300px;}

.beats-overlay {
  background: none;
  padding: 30px 20px;
  width: 100%;
  text-align: center;
}

.beats-overlay h2 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  font-family:"Lexend", sans-serif;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Ingrediënten */

.ingredients {
  padding: 70px 0;
  background:#111;
  background:url("images/krijtbrod_achtergrond.png")center/cover no-repeat;
}

.ingredients h2 {
  text-align: center;
  margin-bottom: 40px;
  color:#fff;
  font-family:"Caveat Brush", cursive;
  font-size:3rem;
  font-weight:normal;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ingredient-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px 26px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.ingredient-card p a {color:#3b2a1a;text-decoration:underline!important;}
.ingredient-card p a:hover {color:#3b2a1a;text-decoration:none!important;}

.icon-circle img {
  width: 100px;
  height: 100px;
  margin:0 auto;
  display: flex;
  margin-bottom: 12px;
}

.ingredients {
  position: relative;
  overflow: visible;
}

.floating-ingredients {
  position: absolute;
  inset: -80px 0; 
  pointer-events: none;
  z-index: 1;
}

.ingredient {
  position: absolute;
  width: 280px;
  opacity: 1;
  transform: translateY(var(--float-offset, 0px));
  transition: transform 0.1s linear;
}

.ingredient-1 {
  top: 10%;
  left: 10px;
}

.ingredient-2 {
  top: -100px;
  right: 50px;
}

.ingredient-3 {
  bottom: 10px;
  left: 20%;
}


@keyframes float {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/*solicitatie formulier*/
.sollicitatie {
  padding: 60px 20px;
  background: #f7f7f7;
}

.sollicitatie h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.sollicitatie p {
  margin-bottom: 30px;
  color: #555;
}

.sollicitatie-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: flex;
  gap: 20px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field.full {
  width: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input, select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
}

textarea {
  min-height: 140px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #fff;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 18px;
}

@media (max-width: 1650px) {
.ingredient-1{left: -50px;}
}
@media (max-width: 1411px) {
.ingredient {width: 180px;}
.ingredient-1 {bottom: 0;left: -80px;}
}
@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }
  .ingredient {
   display:none;visibility:hidden;
}
}
@media (max-width: 1200px) {
  .ingredient {
    width: 150px;
  }
  .ingredient-1 {
   display:none;visibility:hidden;
}
}

/* Menu promo */

.menu-promo {
  padding: 100px 0 0px;
  background: #fff;
}

.menu-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.menu-text p {
  font-size: 0.95rem;
}

.menu-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.menu-foto-beats {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  background: url("images/foto_hamburger_staand.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-soft);
  position: relative;
  margin-left: auto;
}

.menu-foto-beats .label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent-red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* fotos */
.foto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  margin-top:100px;
}

.foto-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0px;
}

@media (max-width: 1240px) {

.logo-left-floating, .logo-sticky {margin-left:20px!important;}

}

@media (max-width: 900px) {
  .foto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 500px) {
  .foto-grid {
    grid-template-columns: repeat(4, 1fr)
  }
  .foto-grid img {height:110px;}
  .menu-foto-beats {display:none;visibility:hidden;}
}

/* Footer */

.footer {
  background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.25)), url("images/krijtbrod_achtergrond.png") center/cover no-repeat;
  color: #fff;
  padding-top: 40px;

}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px 30px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;          /* pas aan naar jouw kleur */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #000;               /* iconkleur */
  transition: 0.3s;
}

.social-circle:hover {
  background: #e0e0e0;      
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 12px 10px 16px;
  font-size: 0.8rem;
  color: #e9e9e9;
  font-size:12px;
}
.footer-bottom a {color:#e9e9e9;}

@media (max-width: 900px) {
  .header-inner {
    gap: 14px;
  }

  .nav {
    display: none; 
  }

  .hero-inner,
  .about-inner,
  .menu-inner {
    grid-template-columns: 1fr;
    padding-top:90px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-image,
  .menu-foto-beats {
    margin: 0 auto;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {

  .about {padding: 60px 0;}
  .hero {background-position:left center!important;}
  .hero-text.homepage {margin-top:60px;}
  .header-inner {
    justify-content: space-between;
    padding: 14px 16px;
  }

  .nav-toggle {
    display: block;
    margin-left:120px;
  }

 .nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* centreert t.o.v. scherm */
  width: 100vw;                /* volledige schermbreedte */
  background: #111;
  flex-direction: column;
  gap: 0;
  display: none;
  z-index: 100;
}

.nav.open {
  display: flex;
}

.nav a {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

  .logo-left-floating,
  .logo-sticky {
    width: 120px;
    margin-left:20px;
  }
}

@media (max-width: 600px) {
 .hero {padding: 120px 0 80px;}
 .herovacatures, .hero-overons {padding: 150px 0 80px;}
 .btn {
    padding: 0.7em 1.4em;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}