/* ================================ Global Styles ================================ */
body {
    margin: 0;
    font-family: 'Merriweather', serif;
    background: #f8f8f8;
    color: #222;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    text-align: left;
}

h3 {
    font-size: 1.3rem;
    margin: 10px 0 8px;
    text-align: left;
}

p {
    margin-bottom: 15px;
    text-align: left;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    background: #add8e6;
    color: black;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: lightslategray;
}

.btn.alt {
    background: #add8e6;
}

.btn.alt:hover {
    background: lightslategray;
}

/* ================================ Navbar Styles ================================ */
.site-header {
    background-color: #fff;
    border-bottom: 3px solid #3cbcc3;
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    position: relative;
}

.site-header .logo img {
    height: 70px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-family: 'Merriweather', serif;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s, font-weight 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #3cbcc3;
    font-weight: 600;
}

/* ================================
   Hamburger Menu
================================ */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #000;
    margin: 4px 0;
    border-radius: 3px;
}

/* ================================
   HERO FIX (full image, no overlay)
================================ */
#hero {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
}

#hero-bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

#hero-overlay {
    display: none; /* removes black overlay */
}

#hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    margin-top: -50px; /* optional adjustment */
}

/* Highlight colour */
#hero-content h1 span {
    color: #3cbcc3;
}

/* Scroll indicator animation */
#scroll-indicator {
    margin-top: 40px;
    font-size: 18px;
    animation: bounce 1.6s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ================================
   Reveal Animations
================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ================================ Tablet & Mobile (max-width: 1024px) ================================ */
@media (max-width: 1024px) {
    .site-header .wrap {
        padding: 15px 30px;
        flex-direction: row;
    }

    .site-header .logo img {
        height: 26px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        z-index: 999;
    }

    .main-nav a {
        width: 100%;
        text-align: center;
        padding: 14px;
        border-bottom: 1px solid #eee;
        font-size: 17px;
    }

    .main-nav.show {
        display: flex;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 15px;
    }

    .btn {
        padding: 9px 18px;
        font-size: 15px;
    }
}

/* ================================ Phones (max-width: 768px) ================================ */
@media (max-width: 768px) {
    .site-header .logo img {
        height: 24px;
    }

    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.1rem; }
    p { font-size: 14px; }
    .btn { width: 100%; padding: 8px 16px; font-size: 14px; }
}

/* ================================ Extra Small Phones (max-width: 480px) ================================ */
@media (max-width: 480px) {
    .site-header .wrap { padding: 8px 15px; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1rem; }
    p { font-size: 13px; }
    .btn { padding: 7px 14px; font-size: 13px; }
}

/* ================================ Dropdown (Media & Uitreik) ================================ */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Main dropdown link */
.nav-dropdown > a {
    cursor: pointer;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 240px;
    display: none;
    flex-direction: column;
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 10px 0;
}

/* Dropdown links */
.dropdown-menu a {
    padding: 12px 20px;
    color: #000;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #3cbcc3;
    color: #fff;
}

/* Desktop hover */
@media (min-width: 1025px) {
    .nav-dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* ================================ Mobile Dropdown ================================ */
@media (max-width: 1024px) {

    .nav-dropdown {
        width: 100%;
        flex-direction: column;
    }

    .dropdown-menu {
        position: relative;
        transform: none;
        box-shadow: none;
        width: 100%;
        background: #f9f9f9;
        padding: 0;
    }

    .dropdown-menu a {
        text-align: center;
        font-size: 16px;
    }

    .nav-dropdown.active .dropdown-menu {
        display: flex;
    }
}


/* ==================================================
   BANKING PAGE ROOT
================================================== */

.bank-root {
  min-height: calc(100vh - 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  background: #ffffff;
}
/* ==================================================
   ALIVE BANK CARD
================================================== */

.bank-card {
  width: 100%;
  max-width: 680px;
  padding: 45px;
  border-radius: 30px;
  background: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  color: black;
  box-shadow: 0 25px 45px rgba(0,0,0,0.5);
  animation: breathe 12s infinite ease-in-out;
}

@keyframes breathe {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.01); }
  100% { transform: scale(1); }
}

/* ==================================================
   RED GLOW BORDER
================================================== */

.bank-card::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 34px;
  background: linear-gradient(
    120deg,
    #b00020,
    lightslategray,
    #b00020
  );
  background-size: 300% 300%;
  z-index: -1;
  animation: borderGlow 16s infinite linear;
}

@keyframes borderGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* ==================================================
   CONTENT STYLING
================================================== */

.bank-card h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.bank-sub {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 35px;
  color: white;
}

/* ==================================================
   BANK INFO ROWS
================================================== */

.bank-info {
  text-align: left;
  margin-bottom: 35px;
  font-size: 18px;
  color: white
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.label {
  font-weight: 700;
  color: white;
}

.value {
  font-weight: 500;
  text-align: right;
  color: white;
}

/* ==================================================
   COPY BUTTON
================================================== */

.copy-btn {
  width: 100%;
  padding: 18px;
  margin-top: 25px;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  background: black;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.copy-btn:hover {
  background: #8c0019;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(176,0,32,0.5);
}

/* ==================================================
   COPY CONFIRMATION
================================================== */

.copied {
  display: none;
  margin-top: 20px;
  font-size: 16px;
  opacity: 0;
  transition: 0.4s;
  color: #b00020;
}

.copied.show {
  display: block;
  opacity: 1;
}

/* ==================================================
   MOBILE RESPONSIVE
================================================== */

@media (max-width: 768px) {
  .bank-card {
    padding: 30px 25px;
  }

  .bank-card h2 {
    font-size: 28px;
  }

  .bank-sub {
    font-size: 16px;
  }

  .bank-info {
    font-size: 16px;
  }
}



/* ================================ Contact Page Styles ================================ */
.contact-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 20px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-form,
.contact-map {
    flex: 1 1 480px;
    min-height: 500px;
    box-sizing: border-box;
}

.contact-form {
    background: grey;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-form h2 {
    margin-bottom: 2px;
    color: white;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    margin-top: 20px;
    padding: 12px;
    background: #b7b7b7;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: red;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}
/* TEXT COLOR */
.contact-form {
    color: white;
}

.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px; /* 👈 space under icons */
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.social-icon.tiktok {
  background: #000000;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.social-icon.phone {
  background: #25d366; /* clean call-friendly green */
}
@media (max-width: 768px) {
    .contact-form {
        order: 1; /* form first */
    }

    .contact-map {
        order: 2; /* map under form */
    }
}




/* ================= ABOUT PAGE ================= */
:root {
  --black: #0b0b0b;
  --dark-grey: #1a1a1a;
  --grey: #555555;
  --red: #c62828;
  --white: #ffffff;
}

/* GLOBAL */
body {
  background: var(--white);
  color: var(--black);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ================= HERO ================= */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: none;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease-out;
  will-change: transform;
}

.about-hero-overlay {
  display: none !important;
}

.about-hero-content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 2;
  max-width: 650px;
}

.about-small-title {
  letter-spacing: 4px;
  color: var(--red);
  font-size: 14px;
  text-transform: uppercase;
}

.about-hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-top: 10px;
}

/* ================= SECTIONS ================= */
.about-section {
  padding: 110px 12%;
  text-align: center;
}

.about-section h2 {
  color: var(--red);
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-section p {
  max-width: 850px;
  margin: 0 auto 20px;
  line-height: 1.8;
  color: var(--grey);
}

/* ================= VALUES ================= */
.about-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 100px;
}

.value-card {
  background: #f5f5f5;
  padding: 32px;
  border-radius: 20px;
  width: 260px;
  color: var(--black);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
  text-align: center;
}

.value-card:hover {
  background: var(--dark-grey);
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ================= MISSION ================= */
.mission {
  background: #f2f2f2;
}

.about-section.mission p {
  color: var(--black) !important;
}

/* ================= STORY ================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 120px 10%;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
}

.story-text ul {
  margin: 30px 0;
  line-height: 2;
  color: var(--grey);
  padding-left: 20px;
}

/* ================= BUTTON ================= */
.about-btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--red);
  color: var(--white);
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: var(--dark-grey);
  color: var(--white);
}

/* ================= CORE VALUES GRID ================= */
.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.core-grid div {
  padding: 26px;
  border: 1px solid #ccc;
  border-radius: 18px;
  background: #fafafa;
  color: var(--black);
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}

.core-grid div:hover {
  background: var(--dark-grey);
  color: var(--white);
}

/* ================= SCROLL ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .about-hero-content {
    bottom: 60px;
    left: 40px;
  }

  .about-hero h1 {
    font-size: 50px;
  }
}

@media (max-width: 900px) {
  .about-hero-content {
    left: 20px;
    bottom: 60px;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-section {
    padding: 80px 7%;
  }

  .about-values {
    flex-direction: column;
    align-items: center;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 500px) {
  .about-hero h1 {
    font-size: 28px;
  }

  .about-small-title {
    font-size: 12px;
  }

  .story-text ul {
    margin: 20px 0;
  }
}

/* ================= Video page ================= */
:root {
  --black:#000;
  --dark:#141414;
  --grey:#b3b3b3;
  --red:#e50914;
  --white:#fff;
}

/* PAGE */
#video-page {
  background: var(--black);
  padding: 40px;
  color: var(--white);
}

#video-page-title {
  font-size: 32px;
  margin-bottom: 25px;
}

/* CARD */
.video-card {
  background: var(--dark);
  border-radius: 14px;
  padding: 20px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 20px;
}

/* MAIN PLAYER */
.video-left iframe {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  border: none;
}

/* RIGHT PANEL */
.video-right h2 {
  margin-bottom: 6px;
}

.video-right p {
  color: var(--grey);
  margin-bottom: 15px;
}

.episodes-btn {
  background: var(--red);
  border: none;
  color: var(--white);
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* EPISODES */
.episodes {
  display: none;
  margin-top: 15px;
  max-height: 380px;
  overflow-y: auto;
}

.episodes.show {
  display: block;
}

.episode {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.episode:hover {
  background: rgba(255,255,255,0.05);
}

.episode iframe {
  width: 140px;
  height: 80px;
  border-radius: 6px;
  border: none;
}

.episode-info h4 {
  font-size: 14px;
}

.episode-info p {
  font-size: 12px;
  color: var(--grey);
}

/* ACTIVE EPISODE */
.episode.active {
  border-left: 4px solid var(--red);
  padding-left: 8px;
  background: rgba(229,9,20,0.08);
}

/* PROGRESS BAR */
.progress {
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 2px;
  margin-top: 6px;
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--red);
}

/* MOBILE */
@media (max-width: 768px){
  .video-card {
    grid-template-columns: 1fr;
  }

  .video-left iframe {
    height: 240px;
  }
}


/* ================= Home page/index ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: #fff;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* ================= SCROLL SNAP ================= */
.snap { scroll-snap-align: start; }

/* ================= HERO ================= */
#hero { position: relative; height: 100vh; overflow: hidden; }
#hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

/* ================= HERO CONTENT ================= */
#hero-content { position: relative; z-index: 3; max-width: 650px; padding: 160px 80px; }
#hero-content h1 { font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
#hero-content h1 span { color: #d6b36a; }
#hero-content p { font-size: 16px; line-height: 1.7; opacity: 0.9; }

#hero-name { margin-top: 60px; }
#hero-name h2 { font-size: 42px; font-weight: 300; letter-spacing: 6px; }
#hero-name span { display: block; margin-top: 10px; font-size: 14px; letter-spacing: 2px; color: #d6b36a; }

#scroll-indicator { margin-top: 60px; font-size: 12px; letter-spacing: 3px; opacity: 0.6; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0);}50%{transform:translateY(10px);} }

/* ================= SERVICES ================= */
.more-text { display: none; margin-top: 15px; font-size: 14px; line-height: 1.6; }
.service.active .more-text { display: block; }

.read-more-btn {
  margin-top: 18px;
  padding: 10px 18px;
  background-color: #d62828;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.read-more-btn:hover { background-color: #b71c1c; transform: translateY(-2px); }

#services {
  min-height: 100vh;
  background: #0c0c0c;
  padding: 120px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.service {
  background: #111;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}
.service:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 30px 80px rgba(214,179,106,0.25);
  color: #d6b36a;
}

/* ================= TEXT REVEAL ================= */
.reveal { opacity:0; transform:translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity:1; transform:translateY(0); }
.delay { transition-delay:0.2s; }
.delay-2 { transition-delay:0.4s; }
.delay-3 { transition-delay:0.6s; }

/* Featured Photos Section */
.featured-photos {
  text-align: center; /* centers the heading */
}

.featured-photos .photo-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.person img { width: 200px; border-radius: 15px; }
.person h3 { margin-top: 15px; font-size: 18px; }
.person p { margin-top: 5px; font-size: 14px; }
/* ================= BRANDS ================= */
.brands-wrapper { position: relative; overflow: hidden; padding: 20px 0; }
.brands-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.brand-logo { height: 60px; width: auto; flex-shrink: 0; }
/* ================= MOBILE ================= */
@media (max-width:768px) {
  #hero-content { padding:140px 30px; }
  #hero-content h1 { font-size:36px; }
  #hero-name h2 { font-size:28px; letter-spacing:4px; }
  #services { padding:100px 30px; }
}

/* ================= Gallery ================= */
.gallery-hero {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/RME1.jpg') center/cover no-repeat;
  z-index: -1;
  transition: transform 0.2s ease-out;
}

/* Optional dark overlay if you want text to pop */
.gallery-hero::after {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.3);
  z-index:0;
}



.brands-section {
  padding: 50px 20px;
  background: #fafafa;
  text-align: center;
}

.brands-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #333;
}

.brands-wrapper {
  overflow: hidden;
}

.brands-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand-logo {
  height: 80px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-logo {
    height: 60px;
    margin: 0 15px;
  }
}



/* ================= RITMES PAGE ================= */
body{
    margin:0;
    font-family:Arial, sans-serif;
    background:black;
    color:white;
    line-height:1.8;
}

/* HERO */
.hero{
    height:100vh;
    background: url("../../images/RitmiesSSS.png") center/cover no-repeat;
    display:flex;
    justify-content:left;
    align-items:center;
    text-align:center;
}


h1{
    font-size:3.5rem;
    color:red;
}

h2{
    color:red;
    margin-bottom:20px;
}

h3{
    color:red;
}

.section{
    padding:100px 10%;
}

.white-bg{
    background:white;
    color:black;
}

.dark{
    background:#111;
}

/* Cards grid */
.cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.card{
    background:#1a1a1a;
    color:white;
    padding:25px;
    border-radius:10px;
    transition:0.4s;
    cursor:pointer;
}

.white-bg .card{
    background:#f5f5f5;
    color:black;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px red;
}

.card h3{
    margin-bottom:15px;
}

.card p, .card ul{
    line-height:1.6;
}

.contact-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:red;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s;
}

.contact-btn:hover{
    background:#a00;
}

ul{
    padding-left:20px;
}

/* Reveal animation */
.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ================= DIE 5 RITMES ================= */
/* Container for Die 5 Ritmes cards + stacked images */
.ritmes-container{
    display:flex;
    gap:40px;
    align-items:flex-start; /* aligns top of first image with first card */
    justify-content:space-between;
    margin-top:40px;
}

.ritmes-container .cards-grid{
    flex:2; /* cards take more space */
}

.ritmes-container .ritmes-image{
    flex:1;
    display:flex;
    flex-direction:column; /* stack images vertically */
    gap:20px; /* spacing between images */
    justify-content:flex-start;
}

.ritmes-container .ritmes-image img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    transition:0.5s;
}

.ritmes-container .ritmes-image img:hover{
    transform:scale(1.05);
}

/* ================= BESKIKBAARHEID ================= */
/* Container for Beskikbaarheid section with image */
.beskikbaarheid-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:space-between;
    margin-top:40px;
}

.beskikbaarheid-text{
    flex:1;
}

.beskikbaarheid-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.beskikbaarheid-image img{
    max-width:100%;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    transition:0.5s;
}

.beskikbaarheid-image img:hover{
    transform:scale(1.05);
}

/* ================= MOBIELE BUITE-UITSAAI & MEDIA DIENSTE ================= */
/* Container for Mobiele Buite-Uitsaai & Media Dienste (cards + image) */
.mobiele-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:space-between;
    margin-top:40px;
}

.mobiele-container .cards-grid{
    flex:1;
}

.mobiele-container .mobiele-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.mobiele-container .mobiele-image img{
    max-width:100%;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    transition:0.5s;
}

.mobiele-container .mobiele-image img:hover{
    transform:scale(1.05);
}

/* ================= ’N ROEPING ================= */
/* Container for ’n Roeping section with image */
.roeping-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:space-between;
    margin-top:40px;
}

.roeping-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.roeping-image img{
    max-width:100%;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    transition:0.5s;
}

.roeping-image img:hover{
    transform:scale(1.05);
}

.roeping-text{
    flex:1;
    color:white;
}

/* ================= KONTAK ONS ================= */
.kontak-container{
    background:#111; /* same black as Beskikbaarheid */
    padding:100px 10%;
    color:white;
    text-align:center;
}

.kontak-container h2{
    color:red;
}

.kontak-container p, 
.kontak-container ul{
    color:white;
}

.kontak-container .contact-btn{
    background:red;
    margin-top:20px;
}

.kontak-container .contact-btn:hover{
    background:#a00;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    h1{
        font-size:2.5rem;
    }
    .section{
        padding:60px 5%;
    }
    .ritmes-container,
    .beskikbaarheid-container,
    .mobiele-container,
    .roeping-container{
        flex-direction:column;
    }
    .ritmes-container .ritmes-image,
    .beskikbaarheid-image,
    .mobiele-image,
    .roeping-image{
        margin-top:30px;
    }
}



.featured-photos {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.featured-photos .photo-container {
  display: flex;
  gap: 5rem;
}

.featured-photos .person {
  text-align: center; /* centers text under image */
}

.featured-photos .person img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
/* ==================================================
   BANKING PAGE ROOT
================================================== */
.bank-root {
  min-height: calc(100vh - 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  background: #ffffff;
}
/* ==================================================
   ALIVE BANK CARD
================================================== */
.bank-card {
  width: 100%;
  max-width: 680px;
  padding: 45px;
  border-radius: 30px;
  background: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  color: black;
  box-shadow: 0 25px 45px rgba(0,0,0,0.5);
  animation: breathe 12s infinite ease-in-out;
}
@keyframes breathe {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.01); }
  100% { transform: scale(1); }
}
/* ==================================================
   RED GLOW BORDER
================================================== */
.bank-card::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 34px;
  background: linear-gradient(
    120deg,
    #b00020,
    lightslategray,
    #b00020
  );
  background-size: 300% 300%;
  z-index: -1;
  animation: borderGlow 16s infinite linear;
}
@keyframes borderGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* ==================================================
   CONTENT STYLING
================================================== */
.bank-card h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}
.bank-sub {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 35px;
  color: white;
}
/* ==================================================
   BANK INFO ROWS
================================================== */
.bank-info {
  text-align: left;
  margin-bottom: 35px;
  font-size: 18px;
  color: white;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.label {
  font-weight: 700;
  color: white;
}
.value {
  font-weight: 500;
  text-align: right;
  color: white;
}
/* ==================================================
   COPY BUTTON
================================================== */
.copy-btn {
  width: 100%;
  padding: 18px;
  margin-top: 25px;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  background: black;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}
.copy-btn:hover {
  background: #8c0019;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(176,0,32,0.5);
}
/* ==================================================
   COPY CONFIRMATION
================================================== */
.copied {
  display: none;
  margin-top: 20px;
  font-size: 16px;
  opacity: 0;
  transition: 0.4s;
  color: #b00020;
}
.copied.show {
  display: block;
  opacity: 1;
}
/* ==================================================
   MOBILE RESPONSIVE
================================================== */
@media (max-width: 768px) {
  .bank-card {
    padding: 30px 25px;
  }
  .bank-card h2 {
    font-size: 28px;
  }
  .bank-sub {
    font-size: 16px;
  }
  .bank-info {
    font-size: 16px;
  }
}
/* ================================ Contact Page Styles ================================ */
.contact-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 20px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.contact-form,
.contact-map {
    flex: 1 1 480px;
    min-height: 500px;
    box-sizing: border-box;
}
.contact-form {
    background: grey;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.contact-form h2 {
    margin-bottom: 2px;
    color: white;
}
.contact-form label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form button {
    margin-top: 20px;
    padding: 12px;
    background: #b7b7b7;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact-form button:hover {
    background: red;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}
/* TEXT COLOR */
.contact-form {
    color: white;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px; /* 👈 space under icons */
}
.social-icon.facebook {
  background: #1877f2;
}
.social-icon.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.social-icon.tiktok {
  background: #000000;
}
.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.social-icon.phone {
  background: #25d366; /* clean call-friendly green */
}
@media (max-width: 768px) {
    .contact-form {
        order: 1; /* form first */
    }
    .contact-map {
        order: 2; /* map under form */
    }
}
/* ================= ABOUT PAGE ================= */
:root {
  --black: #0b0b0b;
  --dark-grey: #1a1a1a;
  --grey: #555555;
  --red: #c62828;
  --white: #ffffff;
}
/* GLOBAL */
body {
  background: var(--white);
  color: var(--black);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
/* ================= HERO ================= */
/* make hero behave like home page hero */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  overflow: hidden;
  background: none; /* remove background cropping */
}
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease-out;
  will-change: transform;
}
/* remove any dark overlay */
.about-hero-overlay {
  display: none !important;
}
/* hero content */
.about-hero-content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 2;
  max-width: 650px;
}
.about-small-title {
  letter-spacing: 4px;
  color: var(--red);
  font-size: 14px;
  text-transform: uppercase;
}
.about-hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-top: 10px;
}
/* ================= SECTIONS ================= */
.about-section {
  padding: 110px 12%;
  text-align: center;
}
.about-section h2 {
  color: var(--red);
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
}
.about-section p {
  max-width: 850px;
  margin: 0 auto 20px;
  line-height: 1.8;
  color: var(--grey);
}
/* ================= VALUES ================= */
.about-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 100px;
}
.value-card {
  background: #f5f5f5;
  padding: 32px;
  border-radius: 20px;
  width: 260px;
  color: var(--black);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
  text-align: center;
}
.value-card:hover {
  background: var(--dark-grey);
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
/* ================= MISSION ================= */
.mission {
  background: #f2f2f2;
}
/* ================= STORY ================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 120px 10%;
  align-items: center;
}
.story-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
}
.story-text ul {
  margin: 30px 0;
  line-height: 2;
  color: var(--grey);
  padding-left: 20px;
}
/* ================= BUTTON ================= */
.about-btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--red);
  color: var(--white);
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.about-btn:hover {
  background: var(--dark-grey);
  color: var(--white);
}
/* ================= CORE VALUES GRID ================= */
.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.core-grid div {
  padding: 26px;
  border: 1px solid #ccc;
  border-radius: 18px;
  background: #fafafa;
  color: var(--black);
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}
.core-grid div:hover {
  background: var(--dark-grey);
  color: var(--white);
}
/* ================= SCROLL ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .about-hero-content {
    bottom: 60px;
    left: 40px;
  }
  .about-hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 900px) {
  .about-hero-content {
    left: 20px;
    bottom: 60px;
  }
  .about-hero h1 {
    font-size: 38px;
  }
  .about-section {
    padding: 80px 7%;
  }
  .about-values {
    flex-direction: column;
    align-items: center;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 500px) {
  .about-hero h1 {
    font-size: 28px;
  }
  .about-small-title {
    font-size: 12px;
  }
  .story-text ul {
    margin: 20px 0;
  }
}
/* ================= Video page ================= */
:root {
  --black:#000;
  --dark:#141414;
  --grey:#b3b3b3;
  --red:#e50914;
  --white:#fff;
}
/* PAGE */
#video-page {
  background: var(--black);
  padding: 40px;
  color: var(--white);
}
#video-page-title {
  font-size: 32px;
  margin-bottom: 25px;
}
/* CARD */
.video-card {
  background: var(--dark);
  border-radius: 14px;
  padding: 20px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 20px;
}
/* MAIN PLAYER */
.video-left iframe {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  border: none;
}
/* RIGHT PANEL */
.video-right h2 {
  margin-bottom: 6px;
}
.video-right p {
  color: var(--grey);
  margin-bottom: 15px;
}
.episodes-btn {
  background: var(--red);
  border: none;
  color: var(--white);
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}
/* EPISODES */
.episodes {
  display: none;
  margin-top: 15px;
  max-height: 380px;
  overflow-y: auto;
}
.episodes.show {
  display: block;
}
.episode {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.episode:hover {
  background: rgba(255,255,255,0.05);
}
.episode iframe {
  width: 140px;
  height: 80px;
  border-radius: 6px;
  border: none;
}
.episode-info h4 {
  font-size: 14px;
}
.episode-info p {
  font-size: 12px;
  color: var(--grey);
}
/* ACTIVE EPISODE */
.episode.active {
  border-left: 4px solid var(--red);
  padding-left: 8px;
  background: rgba(229,9,20,0.08);
}
/* PROGRESS BAR */
.progress {
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 2px;
  margin-top: 6px;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--red);
}
/* MOBILE */
@media (max-width: 768px){
  .video-card {
    grid-template-columns: 1fr;
  }
  .video-left iframe {
    height: 240px;
  }
}

/* ================= Home page/index ================= */
/* =================@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap');================= */

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* ================= SCROLL SNAP ================= */
.snap {
  scroll-snap-align: start;
}

/* ================= CURSOR GLOW ================= */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(214, 179, 106, 0.25),
    transparent 70%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* ================= HERO ================= */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

#hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 15%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

/* ================= HERO CONTENT ================= */
#hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 160px 80px;
}

#hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

#hero-content h1 span {
  color: #d6b36a;
}

#hero-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ================= NAME ================= */
#hero-name {
  margin-top: 60px;
}

#hero-name h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 6px;
}

#hero-name span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #d6b36a;
}

/* ================= SCROLL INDICATOR ================= */
#scroll-indicator {
  margin-top: 60px;
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.6;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ================= SERVICES ================= */
.more-text {
  display: none;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.service.active .more-text {
  display: block;
}

.read-more-btn {
  margin-top: 18px;
  padding: 10px 18px;
  background-color: #d62828;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
  background-color: #b71c1c;
  transform: translateY(-2px);
}

#services {
  min-height: 100vh;
  background: #0c0c0c;
  padding: 120px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.service {
  background: #111;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}

.service:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 30px 80px rgba(214, 179, 106, 0.25);
  color: #d6b36a;
}

/* ================= TEXT REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ================= MOBILE CINEMATIC ================= */
@media (max-width: 768px) {
  #hero-content {
    padding: 140px 30px;
  }

  #hero-content h1 {
    font-size: 36px;
  }

  #hero-name h2 {
    font-size: 28px;
    letter-spacing: 4px;
  }

  #services {
    padding: 100px 30px;
  }

  #cursor-glow {
    display: none;
  }
}

/* ================= Gallery ================= */
.gallery-hero {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/RME1.jpg') center/cover no-repeat;
  z-index: -1;
  transition: transform 0.2s ease-out;
}

.gallery-hero::after {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.3);
  z-index:0;
}

.brands-section {
  padding: 50px 20px;
  background: #fafafa;
  text-align: center;
}

.brands-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #333;
}

.brands-wrapper {
  overflow: hidden;
}

.brands-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand-logo {
  height: 80px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 60px;
    margin: 0 15px;
  }
}

/* ================= RITMES PAGE ================= */
body{
    margin:0;
    font-family:Arial, sans-serif;
    background:black;
    color:white;
    line-height:1.8;
}

/* HERO */
.hero{
    height:100vh;
    background: url("../../images/RitmiesSSS.png") center/cover no-repeat;
    display:flex;
    justify-content:left;
    align-items:center;
    text-align:center;
}

h1{
    font-size:3.5rem;
    color:red;
}

h2{
    color:red;
    margin-bottom:20px;
}

h3{
    color:red;
}

.section{
    padding:100px 10%;
}

.white-bg{
    background:white;
    color:black;
}

.dark{
    background:#111;
}

/* Cards grid */
.cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.card{
    background:#1a1a1a;
    color:white;
    padding:25px;
    border-radius:10px;
    transition:0.4s;
    cursor:pointer;
}

.white-bg .card{
    background:#f5f5f5;
    color:black;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px red;
}

.card h3{
    margin-bottom:15px;
}

.card p, .card ul{
    line-height:1.6;
}

.contact-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:red;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s;
}

.contact-btn:hover{
    background:#a00;
}

ul{
    padding-left:20px;
}

/* Reveal animation */
.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ================= DIE 5 RITMES ================= */
.ritmes-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:space-between;
    margin-top:40px;
}

.ritmes-container .cards-grid{
    flex:2;
}

.ritmes-container .ritmes-image{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:20px;
    justify-content:flex-start;
}

.ritmes-container .ritmes-image img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    transition:0.5s;
}

.ritmes-container .ritmes-image img:hover{
    transform:scale(1.05);
}

/* ================= BESKIKBAARHEID ================= */
.beskikbaarheid-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:space-between;
    margin-top:40px;
}

.beskikbaarheid-text{
    flex:1;
}

.beskikbaarheid-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.beskikbaarheid-image img{
    max-width:100%;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    transition:0.5s;
}

.beskikbaarheid-image img:hover{
    transform:scale(1.05);
}

/* ================= MOBIELE BUITE-UITSAAI & MEDIA DIENSTE ================= */
.mobiele-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:space-between;
    margin-top:40px;
}

.mobiele-container .cards-grid{
    flex:1;
}

.mobiele-container .mobiele-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.mobiele-container .mobiele-image img{
    max-width:100%;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    transition:0.5s;
}

.mobiele-container .mobiele-image img:hover{
    transform:scale(1.05);
}

/* ================= ’N ROEPING ================= */
.roeping-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:space-between;
    margin-top:40px;
}

.roeping-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.roeping-image img{
    max-width:100%;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    transition:0.5s;
}

.roeping-image img:hover{
    transform:scale(1.05);
}

.roeping-text{
    flex:1;
    color:white;
}

/* ================= KONTAK ONS ================= */
.kontak-container{
    background:#111;
    padding:100px 10%;
    color:white;
    text-align:center;
}

.kontak-container h2{
    color:red;
}

.kontak-container p, 
.kontak-container ul{
    color:white;
}

.kontak-container .contact-btn{
    background:red;
    margin-top:20px;
}

.kontak-container .contact-btn:hover{
    background:#a00;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    h1{
        font-size:2.5rem;
    }
    .section{
        padding:60px 5%;
    }
    .ritmes-container,
    .beskikbaarheid-container,
    .mobiele-container,
    .roeping-container{
        flex-direction:column;
    }
    .ritmes-container .ritmes-image,
    .beskikbaarheid-image,
    .mobiele-image,
    .roeping-image{
        margin-top:30px;
    }
}

/* ================= FEATURED PHOTOS ================= */
.featured-photos {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.featured-photos .photo-container {
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.featured-photos .person {
  text-align: center;
}

.featured-photos .person img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

@media(max-width:768px){
  .featured-photos .person img {
    width: 180px;
    height: 180px;
  }
  .featured-photos .photo-container {
    gap: 2rem;
  }
}