/* Import base and component styles */
@import url('base.css');
@import url('components.css');
@import url('pages.css');

/* ===================================
   MAIN CSS - Alliance Vastgoed
   =================================== */

/* CSS Custom Properties for dynamic viewport height */
:root {
  --vh: 1vh;
}

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

html {
  background-color: #222;
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  width: 0;
}

body {
  overflow-y: auto;
  overflow-x: visible;
  width: 100%;
  position: relative;
  color: #fefefe;
  background-color: #fefefe;
}

body.menu-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

h1 {
  font-weight: 200;
}

main {
  width: 100%;
  position: relative;
  color: #fefefe;
  background-color: #fefefe;
  overflow: visible;
}

section {
  width: 100%;
  position: relative;
  overflow: visible;
}

.hero-section {
  height: calc(var(--vh, 1vh) * 100);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  animation: scroll-bounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: color 0.3s ease;
}

.scroll-indicator:hover {
  color: rgba(255, 255, 255, 1);
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes scroll-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.overlay>div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.overlay>div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}

.overlay>div.active {
  opacity: 1;
}

.overlay>div>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transform: scale(1);
  transition: transform 6s linear;
}

.overlay>div.active>img {
  transform: scale(1.1);
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 30px;
}

header .logo {
  text-decoration: none;
  color: #fefefe;
}

header .logo h1 {
  color: #fefefe;
}

header .logo:visited {
  text-decoration: none;
  color: #fefefe;
}

header .menu {
  display: flex;
  align-items: center;
}

header .menu .burger {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2001;
  position: relative;
  cursor: pointer;
  z-index: 10001;
}

header .menu .burger .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fefefe;
  transition: all 0.3s cubic-bezier(.4, 2, .6, 1);
}

header .menu .burger .line:nth-child(1) {
  top: 4px;
}

header .menu .burger .line:nth-child(2) {
  top: 13px;
}

header .menu .burger .line:nth-child(3) {
  top: 22px;
}

header .menu .burger.active .line:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
  background-color: #fefefe !important;
}

header .menu .burger.active .line:nth-child(2) {
  opacity: 0;
  background-color: #fefefe !important;
}

header .menu .burger.active .line:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
  background-color: #fefefe !important;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #000;
  z-index: 10000;
  transition: left 0.4s ease-in-out;
  display: flex;
}

.menu-overlay.active {
  left: 0;
}

.menu-overlay * {
  color: #fefefe;
}

.menu-image-container {
  width: 40%;
  height: 100%;
}

.menu-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.menu-content {
  height: 100%;
  padding-left: 3vw;
  padding-top: 8vh;
}

.menu-services-container h1 {
  font-size: 50px;
  font-weight: 200;
  letter-spacing: 2px;
  margin-bottom: 40px;
  cursor: pointer;
  color: transparent;
  background-repeat: no-repeat;
  background-size: 0% 0%;
  background-position: left;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fefefe;
  background-clip: text;
  transition: background-size 0.5s cubic-bezier(.4, 2, .6, 1);
}

.menu-services-container h1:hover {
  background-size: 100% 100%;
}

/* Ensure hover color change applies even when components.css isn't loaded */
.menu-service-link h1 {
  transition: color 200ms ease-in-out, -webkit-text-fill-color 200ms ease-in-out;
}
.menu-service-link:hover h1 {
  color: var(--color-accent);
  -webkit-text-fill-color: var(--color-accent);
}

.search-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  overflow-x: unset;
  width: 400px;
  border-bottom: 1px solid #fefefe;
  position: relative;
}

.search-container form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.search-container textarea {
  background-color: transparent;
  border: none;
  color: #fefefe;
  font-size: 16px;
  height: 35px;
  width: 100%;
  font-weight: 300;
  letter-spacing: 1px;
  padding-top: 8px;
  resize: none;
  overflow: hidden;
}

.search-container textarea:focus {
  outline: none;
}

.search-container img {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.search-container img:hover {
  opacity: 0.8;
}

/* Zoeksuggesties styling */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 8px;
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-suggestions.show {
  display: block;
}

.search-suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.search-suggestion-item.selected {
  background-color: rgba(255, 193, 2, 0.2);
}

.search-suggestion-text {
  color: #fefefe;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.search-suggestion-type {
  color: #ffc102;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

.search-suggestion-item strong {
  color: #ffc102;
  font-weight: 600;
}

/* Styling voor "geen resultaten" bericht */
.search-suggestion-item.no-results {
  cursor: default;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.05);
}

.search-suggestion-item.no-results:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.search-suggestion-item.no-results .search-suggestion-text {
  color: #999;
  font-style: italic;
}

.menu-content ul a {
  font-size: 20px;
  text-decoration: none;
}

.display-description-container {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 2;
  overflow: unset;
}

.display-description {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 10px;
  text-align: left;
  z-index: 2;
  overflow: hidden;
  height: 24px;
  /* Give it a fixed height */
}

.display-description h1 {
  position: relative;
  top: 100%;
  transition: top 0.5s ease-in-out;
  margin: 0;
  font-size: 24px;
  font-weight: 300;
}

.display-description.active h1 {
  top: 0 !important;
}

/* Hero CTA styles removed - no hero-cta elements found in HTML */

.cta-button {
  display: inline-flex;
  align-items: center;
  background: #ffc102;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #dd9900;
  color: #fff;
  text-decoration: none;
}

/* Pagination buttons */
.pagination-btn {
  display: inline-block;
  cursor: pointer;
}

.pagination-number {
  display: inline-block;
  cursor: pointer;
}

.counter-container {
  letter-spacing: 8px;

}

.indicator-container {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  z-index: 2;
}

.indicator {
  width: 180px;
  height: 2px;
  background-color: #fefefe;
}

.indicator-line {
  width: 0%;
  height: 2px;
  background-color: #ffc102;
  transition: width 6s linear;
}

.next-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.services-section {
  margin: 0 auto;
  padding-bottom: 15vh;
  min-height: 100vh;
  position: relative;
  overflow: visible;
  height: auto;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1400px;
  padding-inline: 20px;
  margin: 0 auto;
  padding: 10vh 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  overflow: visible;
}

.services-header-left {
  flex: 1;
}

.services-subtitle {
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-left: 6px;
  display: block;
}

.services-header-left h1 {
  font-size: 64px;
  font-weight: 300;
  color: #2F1B14;
  line-height: 1.1;
  margin: 0;
}

.services-header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.services-header-right p {
  font-size: 18px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0;
}

.services-header-buttons {
  display: flex;
  gap: 20px;
}
.services-header-left {
  overflow: visible;
}
.service-header-btn {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 8px 16px 0 0;
  border-radius: 4px;
}

.service-header-btn:hover {
  color: #2F1B14;
}

.stacking-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40vh;
  position: relative;
  overflow: visible;
}

.stacking-card {
  width: 100%;
  height: 450px !important;
  max-width: 850px;
  max-height: 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden !important;
  position: sticky;
  top: var(--stacking-top, 20vh);
  left: 0;
  border: 1px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.stacking-card:nth-child(1) {
  margin-bottom: 160px;
}

#card-2 {
  top: calc(var(--stacking-top, 20vh) + 80px);
  z-index: 1;
  margin-bottom: 80px;
}

#card-3 {
  top: calc(var(--stacking-top, 20vh) + 160px);
  margin-bottom: 0;
  z-index: 2;
}

.stacking-card .image-holder {
  width: 100%;
  height: 100% !important;
  overflow: hidden !important;
  position: relative;
}

.stacking-card .image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.stacking-card .image-holder img.zoomed {
  transform: scale(1.1);
}

.stacking-card .title-holder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 20px 30px;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.5) 50%, 
    transparent 100%);
  z-index: 10;
}

.stacking-card .title-holder h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.2;
}

.stacking-card .text-holder {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.9) 0%, 
    rgba(0, 0, 0, 0.7) 50%, 
    rgba(0, 0, 0, 0.01) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stacking-card .text-holder p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.stacking-card .cta-link {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  align-self: flex-start;
}

.stacking-card .cta-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration-thickness: 2px;
}



@media (max-width: 1200px) {
  .services-header {
    flex-direction: column;
    gap: 40px;
  }
  
  .services-header-left h1 {
    font-size: 48px;
  }
  
  .stacking-card {
    max-width: 700px;
    max-height: 400px;
    height: 400px !important;
  }
  
  .stacking-card .title-holder h1 {
    font-size: 28px;
  }
  
  .stacking-card .text-holder p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
    padding-bottom: 25vh;
  }
  
  .services-header {
    padding-top: 10vh;
    gap: 30px;
  }
  
  .services-header-left h1 {
    font-size: 36px;
  }
  
  .services-header-right p {
    font-size: 16px;
  }
  
  .services-header-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .services-cards-container {
    gap: 30vh;
  }
  
  .stacking-card {
    max-width: 600px;
    max-height: 350px;
    height: 350px !important;
  }
  
  .stacking-card .title-holder {
    padding: 30px 20px 15px 20px;
  }
  
  .stacking-card .title-holder h1 {
    font-size: 24px;
  }
  
  .stacking-card .text-holder {
    padding: 20px;
  }
  
  .stacking-card .text-holder p {
    font-size: 14px;
    margin: 0;
  }
  
  .stacking-card .cta-link {
    font-size: 13px;
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 15px;
    padding-bottom: 20vh;
  }
  
  .services-header {
    padding-top: 10vh;
    gap: 20px;
  }
  
  .services-header-left h1 {
    font-size: 28px;
  }
  
  .services-header-right p {
    font-size: 14px;
  }
  
  .services-cards-container {
    gap: 25vh;
    padding: 0 15px;
  }
  
  .stacking-card {
    max-width: 100%;
    max-height: 300px;
    height: 300px !important;
  }
  
  .stacking-card .title-holder {
    padding: 15px;
  }
  
  .stacking-card .title-holder h1 {
    font-size: 16px;
  }
  
  .stacking-card .text-holder {
    padding: 15px;
  }
  
  .stacking-card .text-holder p {
    font-size: 11px;
    margin-bottom: 10px;
  }
  
  .stacking-card .cta-link {
    font-size: 11px;
  }
}

.updates-section {
  display: flex;
  background-color: #000;
  padding: 30px;
  padding-block: 100px;
}

.updates-header {
  width: calc((100vw - 60px) / 3);
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.updates-header>div>h1 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 50px;
  letter-spacing: 3px;
}

.updates-header>div>a {
  font-size: 18px;
  font-weight: 400;
  color: #fefefe;
  letter-spacing: 1px;
}

.updates-header .contact-button {
  width: fit-content;
}

.updates-header .contact-button p {
  font-size: 18px;
  font-weight: 400;
  color: #fefefe;
  letter-spacing: 1px;
}


.updates-holder {
  width: calc((90vw - 60px) * 2 / 3);
  aspect-ratio: 1/1;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #ccc;
}

.updates-holder>a>div {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.2s ease-in-out;
}

.updates-holder>a:nth-child(1)>div,
.updates-holder>a:nth-child(2)>div {
  border-bottom: 1px solid #ccc;
}

.updates-holder>a:nth-child(2)>div,
.updates-holder>a:nth-child(4)>div {
  border-left: 1px solid #ccc;
}

.updates-holder>a>div:hover {
  background-color: #ffc102;
}

.updates-holder a>div>h2 {
  font-size: 44px;
  font-weight: 400;
}

.updates-holder a>div>h1 {
  font-size: 50px;
  font-weight: 400;
}

.updates-holder a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  transition: all 0.3s ease;
}

.updates-holder a:hover > div {
  background-color: #ffc102;
}

.sectors-section * {
  color: #000;
}

.sectors-header {
  padding-left: 30px;
  padding-top: 100px;
  padding-bottom: 20px;
}

.sectors-header h1 {
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

.sectors-holder {
  display: flex;
  width: 100%;
  max-width: 100vw;
  overflow-x: auto; /* Allow horizontal scroll on desktop */
}

.sectors-holder .sector {
  height: 80vh;
  flex: 1 1 0;
  border-right: 1px solid #ccc;
  transition: flex-grow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-width: 300px; /* Ensure minimum width for sectors */
}

.sectors-holder .sector:hover {
  flex-grow: 2;
}

.sectors-holder .sector-image-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.sectors-holder .sector:hover .sector-image-holder {
  opacity: 0.15;
}

.sectors-holder .sector-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sectors-holder .sector-description {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5vw 1.5vw 5vw 1.5vw;
  overflow: hidden;
}

.sectors-holder .sector h2 {
  font-size: 30px;
  color: #000;
  font-weight: 400;
  transition: font-size 0.3s ease-in-out, color 0.3s ease-in-out;
}

.sectors-holder .sector:hover h2 {
  font-size: 3.5vw;
  color: #ffc102;
}

.sectors-holder .sector p,
.sectors-holder .sector a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
  opacity: 0;
  margin-block: 60px;
  padding-right: 30px;
}

.sectors-holder .sector>div>a {
  text-decoration: underline;
}

.sectors-holder .sector>div>div>a {
  opacity: 1;
}

.sectors-holder .sector:hover p,
.sectors-holder .sector:hover a {
  transition: opacity 0.3s ease-in-out;
  transition-delay: 0.2s;
  opacity: 1;
}

/* Early responsive breakpoints for sectors to prevent content stretching */
@media (max-width: 1400px) {
  .sectors-holder .sector h2 {
    font-size: 24px;
  }
  
  .sectors-holder .sector:hover h2 {
    font-size: 2.5vw;
  }
  
  .sectors-holder .sector p,
  .sectors-holder .sector a {
    font-size: 14px;
    margin-block: 40px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  .sectors-holder {
    display: block;
  }

  .sectors-holder .sector {
    height: auto;
    padding-top: 30px;
    padding-left: 20px;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  
  .sectors-holder .sector-description {
    height: auto;
    padding: 20px 10px 20px 10px;
    min-height: auto;
    overflow: visible;
  }
  
  .sectors-holder .sector-image-holder {
    opacity: 0.15;
  }
  
  .sectors-holder .sector h2 {
    font-size: 24px;
  }
  
  .sectors-holder .sector:hover h2 {
    font-size: 28px;
  }
  
  .sectors-holder .sector p,
  .sectors-holder .sector a {
    font-size: 14px;
    margin-block: 20px;
    padding-right: 20px;
    opacity: 1;
  }
}

.footer-section {
  background-color: #000;
  color: #fefefe;
  padding: 80px 30px 40px 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.footer-left p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #ccc;
  max-width: 400px;
  margin-bottom: 30px;
}

.contact-button {
  background: transparent;
  border: 1px solid #fefefe;
  color: #fefefe;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
}

.contact-button:hover {
  background-color: #ffc102;
  border-color: #ffc102;
}

.footer-middle {
  display: flex;
  gap: 60px;
}

.footer-services,
.footer-sectors {
  min-width: 150px;
}

.footer-services h3,
.footer-sectors h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-services ul,
.footer-sectors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li,
.footer-sectors li {
  margin-bottom: 12px;
}

.footer-services a,
.footer-sectors a {
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-services a:hover,
.footer-sectors a:hover {
  color: #ffc102;
}

.footer-right {
  display: flex;
  gap: 60px;
}

.footer-contact,
.footer-address,
.footer-social {
  min-width: 150px;
}

.footer-contact h3,
.footer-address h3,
.footer-social h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-contact p,
.footer-address p {
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 8px;
  line-height: 1.4;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.social-link:hover {
  color: #ffc102;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 60px;
  padding-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-legal a:hover {
  color: #ffc102;
}

/* Responsive design for footer */
@media (max-width: 1200px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-middle {
    gap: 40px;
  }
  
  .footer-right {
    gap: 40px;
  }
}

@media (max-width: 1000px) {  
  .footer-middle {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-section {
    padding: 60px 20px 30px 20px;
  }
}

.projects-overview-section {
  min-height: calc(var(--vh, 1vh) * 100);
}

.projects-overview-section * {
  color: #000;
}

.filter-btn {
  display: inline-block;
  cursor: pointer;
}

.project-grid-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.project-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-grid-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.project-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-grid-card:hover .project-grid-image img {
  transform: scale(1.05);
}

.project-grid-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.project-grid-content {
  padding: 25px;
}

.project-grid-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.3;
}

.project-grid-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.project-location {
  display: inline-block;
  background: #f0f0f0;
  color: #666;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.no-projects {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.no-projects h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
}

.no-projects p {
  color: #666;
  margin-bottom: 25px;
}

.clear-filter-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ffc102;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s ease;
  cursor: pointer;
}

.clear-filter-btn:hover {
  background: #155a8a;
}

.projects-overview-intro {
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 30px;
}

.projects-overview-intro h1 {
  font-size: 120px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

.projects-overview-intro p {
  font-size: 18px;
  font-weight: 400;
}

.projects-overview-intro .contact-button {
  width: fit-content;
  margin-top: 50px;
  border: 1px solid #000;
}

.projects-overview-intro .contact-button:hover {
  background-color: #ffc102;
  border-color: #ffc102;
}

.projects-overview-intro .contact-button span {
  transition: color 0.2s ease-in-out;
}

.projects-overview-intro .contact-button:hover span {
  color: #fefefe;
}

/* Carousel styles removed - no carousel elements found in HTML */

@media (max-width: 1590px) {
  .updates-holder a>div>h2 {
    word-break: break-all;
  }
}

/* Responsive design voor projectsoverview */
@media (max-width: 1200px) {
  .projects-overview-section {
    flex-direction: column;
    min-height: auto;
    max-height: none;
  }
  
  .projects-overview-intro {
    position: relative;
    height: auto;
    padding: 60px 30px;
    min-height: 50vh;
  }
  
  .projects-overview-intro h1 {
    font-size: 80px;
  }
  
  /* Filter sectie responsive */
  .filter-section {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 40px auto;
    padding: 0 30px;
  }
  
  /* Projecten grid responsive */
  .projects-grid {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 1200px;
    max-height: none;
    overflow-y: visible;
    margin: 0 auto;
  }
  
  /* Carousel styles removed - no carousel elements found in HTML */

  .updates-header>div>h1 {
    font-size: 34px;
  }

  .updates-holder>a>div>h2 {
    font-size: 34px;
  }

  .updates-holder>a>div>h1 {
    font-size: 34px;
  }
}

/* Carousel styles removed - no carousel elements found in HTML */

@media (max-width: 480px) {
  /* Carousel styles removed - no carousel elements found in HTML */
}

/* Burger menu color change when menu is active */
.projects-overview-section .menu-overlay.active~header .burger .line,
.projects-overview-section .menu-overlay.active+header .burger .line,
.projects-overview-section .menu-overlay.active~* header .burger .line,
.projects-overview-section .menu-overlay.active~header .burger .line,
body.menu-open .projects-overview-section header .burger .line,
.projects-overview-section header.menu-active .burger .line,
.menu-overlay.active~header .burger .line,
.menu-overlay.active+header .burger .line,
.menu-overlay.active~* header .burger .line,
body.menu-open header .burger .line,
header.menu-active .burger .line {
  background-color: #fefefe !important;
}

.projects-overview-section .menu-overlay.active+header .logo,
.projects-overview-section .menu-overlay.active~* header .logo,
.projects-overview-section .menu-overlay.active~header .logo,
body.menu-open .projects-overview-section header .logo,
.projects-overview-section header.menu-active .logo {
  opacity: 0;
}

.projects-overview-section .menu-overlay.active+header .logo img,
.projects-overview-section .menu-overlay.active~* header .logo img,
.projects-overview-section .menu-overlay.active~header .logo img,
body.menu-open .projects-overview-section header .logo img,
.projects-overview-section header.menu-active .logo img {
  opacity: 1;
}

.project-hero-image {
  width: 100vw;
  height: 50vh;
  object-fit: cover;
}

.project-hero-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
}

.project-hero-band>div {
  padding: 30px;
}

.project-hero-band-left {
  display: flex;
  gap: 10vw;
}

.project-hero-band h3 {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-hero-band p {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 8px;
}

.location-holder {
  background-color: #ffc102;
}

.main-container {
  max-width: 1250px;
  margin: 0 auto;
  padding-inline: 20px;
}

.main-container p {
  color: #000;
  max-width: 800px;
  margin-block: 100px;
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 16px;
}

.project-details-container {
  border-bottom: 1px solid #ddd;
  padding-bottom: 60px;
}

.project-details-cards-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.project-details-card {
  flex: 1 1 0;
}

.project-details-card * {
  color: #000;
}

.project-details-card h1 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-details-card p {
  margin-block: 20px;
  line-height: 1.6;
}

.project-details-card .horizontal-line {
  width: 50px;
  height: 3px;
  background-color: #ffc102;
  margin-block: 20px;
}

.project-collection-container {
  padding-block: 60px;
}

.project-collection-container h1 {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 60px;
}

.project-collection-images-holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  max-height: 1200px;
}

.project-collection-image-holder {
  aspect-ratio: unset;
  overflow: hidden;
}

.project-collection-image-holder:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
}

.project-collection-image-holder:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 2 / 4;
}

.project-collection-image-holder:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 4 / 6;
}

.project-collection-image-holder:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 4 / 7;
}


.project-collection-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive design for main sections */
@media (max-width: 992px) {
  .display-description-container {
    bottom: 70px;
    left: 10px;
  }

  .display-description {
    margin-left: 10px;
    margin-bottom: 10px;
    height: 20px;
  }

  .display-description h1 {
    font-size: 18px;
  }

  .indicator-container {
    padding: 10px;
    gap: 10px;
    right: unset;
    left: 10px;
    bottom: 10px;
  }

  .indicator {
    width: 100px;
  }

  .next-button {
    width: 40px;
    height: 40px;
  }



  .updates-section {
    flex-direction: column;
    padding: 18px 0 0 0;
    gap: 0;
  }

  .updates-header {
    width: 100%;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 24px 0 24px;
  }

  .updates-header>div>h1 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .updates-header>div>a {
    font-size: 15px;
  }

  .updates-header .contact-button {
    width: 100%;
    margin: 10px 0 0 0;
    padding: 12px 0;
    border-radius: 8px 8px 0 0;
    font-size: 15px;
    background: #1c6ca9;
    color: #fff;
    border: none;
  }

  .updates-header .contact-button {
    display: none;
  }

  .updates-holder {
    width: 100%;
    grid-template-columns: 1fr;
    aspect-ratio: unset;
    gap: 14px;
    border: none;
    padding: 0 22px 22px 22px;
  }

  .updates-holder>a>div {
    background: #111;
    border: none !important;
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 0;
    padding: 16px 14px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .updates-holder>a>div>h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
  }

  .updates-holder>a>div>h1 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
  }

  .sectors-header {
    padding-left: 10px;
    padding-top: 40px;
  }

  .sectors-header h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .sectors-holder .sector {
    height: auto;
    padding-top: 20px;
    padding-left: 10px;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  .sectors-holder .sector-image-holder {
    opacity: 0.15;
  }
  .sectors-holder .sector h2 {
    font-size: 22px;
  }

  .sectors-holder .sector:hover h2 {
    font-size: 32px;
  }

  .sectors-holder .sector p,
  .sectors-holder .sector a {
    font-size: 14px;
    margin-block: 20px;
    padding-right: 10px;
    opacity: 1;
  }



  /* Updates holder link styling for responsive */
  .updates-holder a {
    height: 100%;
  }

  .updates-holder a:hover > div {
    background-color: #ffc102;
  }
}

/* --- Merged @media (max-width: 600px) --- */
@media (max-width: 600px) {
  .display-description h1 {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .indicator {
    width: 60px;
  }

  .next-button {
    width: 28px;
    height: 28px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-indicator svg {
    width: 20px;
    height: 20px;
  }





  .updates-header>a>div>h1 {
    font-size: 26px;
  }

  .updates-holder>a>div>h1 {
    font-size: 16px;
  }

  .sectors-header h1 {
    font-size: 26px;
  }

  .sectors-holder .sector h2 {
    font-size: 22px;
  }

  .sectors-holder .sector p,
  .sectors-holder .sector a {
    font-size: 10px;
    margin-block: 10px;
    padding-right: 0;
  }



  .menu-content {
    padding: 18px 4vw 0 4vw;
  }

  .menu-services-container h1 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 14px;
  }

  .menu-content ul a {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0;
  }

  .menu-content .contact-button {
    font-size: 13px;
    padding: 10px;
    margin-top: 16px;
  }

  .menu-content .contact-button span {
    font-size: 12px;
    font-weight: 600;
  }

  .menu-overlay .close {
    font-size: 26px;
    top: 10px;
    right: 10px;
  }

  header {
    flex-direction: row;
    padding: 12px 16px;
  }

  header .logo {
    gap: 4px;
    max-width: 60vw;
    display: flex;
  }

  header .logo img {
    display: flex;
  }

  header .logo h1 {
    font-size: 26px !important;
    line-height: 1.05;
    font-weight: 400 !important;
    word-break: break-word;
    white-space: normal;
    letter-spacing: 0.2px;
  }

  header .menu .burger {
    width: 24px;
    height: 24px;
  }



  .sector-desc-full {
    display: none;
  }

  .sector-desc-short {
    display: block;
  }
}

/* --- Merged @media (max-width: 992px) --- */
@media (max-width: 992px) {
  .display-description-container {
    bottom: 140px;
    left: 10px;
  }

  .display-description {
    margin-left: 10px;
    margin-bottom: 10px;
    height: 20px;
  }

  .display-description h1 {
    font-size: 18px;
  }

  .indicator-container {
    padding: 10px;
    gap: 10px;
    right: unset;
    left: 10px;
    bottom: 80px;
  }

  .indicator {
    width: 100px;
  }

  .next-button {
    width: 40px;
    height: 40px;
  }



  .updates-section {
    flex-direction: column;
    padding: 18px 0 0 0;
    gap: 0;
  }

  .updates-header {
    width: 100%;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 24px 0 24px;
  }

  .updates-header>div>h1 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .updates-header>div>a {
    font-size: 15px;
  }

  .updates-header .contact-button {
    width: 100%;
    margin: 10px 0 0 0;
    padding: 12px 0;
    border-radius: 8px 8px 0 0;
    font-size: 15px;
    background: #1c6ca9;
    color: #fff;
    border: none;
    display: none;
  }

  .updates-holder {
    width: 100%;
    grid-template-columns: 1fr;
    aspect-ratio: unset;
    gap: 14px;
    border: none;
    padding: 0 22px 22px 22px;
  }

  .updates-holder>a>div {
    background: #111;
    border: none !important;
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 0;
    padding: 16px 14px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .updates-holder>a>div>h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
  }

  .updates-holder>a>div>h1 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
  }

  .sectors-header {
    padding-inline: 24px;
    padding-top: 40px;
  }

  .sectors-header h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .sectors-holder .sector {
    height: auto;
    padding-block: 20px;
    padding-inline: 24px;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }

  .sectors-holder .sector h2 {
    font-size: 22px;
  }

  .sectors-holder .sector:hover h2 {
    font-size: 32px;
  }

  .sectors-holder .sector p,
  .sectors-holder .sector a {
    font-size: 14px;
    margin-block: 20px;
    padding-right: 10px;
    opacity: 1;
  }



  .responsive-br {
    display: none;
  }



  .menu-overlay {
    left: 100vw;
    transition: left 0.4s ease;
  }

  .menu-overlay.active {
    left: 0;
  }

  .menu-image-container {
    display: none;
  }

  .menu-content {
    width: 100%;
    padding: 32px 8vw 0 8vw;
    min-height: 100svh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .menu-services-container h1 {
    font-size: 32px;
    margin-bottom: 24px;
    letter-spacing: 1px;
  }

  .search-container {
    width: 80%;
    margin-top: 32px;
    position: relative;
  }
  
  .search-suggestions {
    width: 100%;
    max-height: 250px;
  }

  .menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .menu-content ul a {
    font-size: 18px;
    padding: 10px 0;
  }

  .menu-content .contact-button {
    width: 100%;
    margin-top: 24px;
    font-size: 16px;
    padding: 10px 24px;
    width: fit-content;
    border-radius: 8px;
    background: #ffc102;
    color: #fff;
    border: none;
  }

  .menu-content .contact-button:hover {
    background: #155a8a;
  }

  .menu-content .contact-button p {
    color: #fff;
  }

  .menu-overlay .close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 32px;
    z-index: 2100;
    color: #fff;
    cursor: pointer;
  }

  header {
    flex-direction: row;
    padding: 16px 30px;
  }

  header .logo {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    max-width: 70vw;
  }

  header .logo img {
    height: 38px;
    width: auto;
    max-width: 48px;
    display: flex;
  }

  header .logo h1 {
    font-size: 22px;
    line-height: 1.1;
    word-break: break-word;
    white-space: normal;
    font-weight: 400;
  }
}



@media (max-width: 600px) {
  
}

/* Responsive sector description text for mobile/desktop */
.sector-desc-full {
  display: block;
}

.sector-desc-short {
  display: none;
}

/* Duplicate 600px media query removed - consolidated above */

/* Blur-up effect styles */
.blur-up-wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.blur-up {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.blur-up.loaded {
  opacity: 1;
}

/* Progressive blur-up effect */
.progressive-blur {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px);
  transition: filter 0.5s cubic-bezier(.4, 2, .6, 1), opacity 0.5s cubic-bezier(.4, 2, .6, 1);
  opacity: 1;
  display: block;
}

.progressive-blur.loaded {
  filter: blur(0);
  opacity: 1;
}

/* Responsive design voor project pagina */
@media (max-width: 1200px) {
  .project-hero-band-left {
    gap: 5vw;
  }
  
  .project-hero-band>div {
    padding: 20px;
  }
  
  .project-details-cards-container {
    gap: 40px;
  }
  
  .main-container p {
    margin-block: 60px;
  }
}

@media (max-width: 768px) {
  header {
    padding-inline: 20px;
  }
  .project-hero-image {
    height: 40vh;
  }
  
  .project-hero-band {
    flex-direction: column;
    gap: 0;
  }
  
  .project-hero-band-left {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .project-hero-band>div {
    padding: 15px 20px;
    text-align: center;
  }

  .category-holder {
    padding-block: 35px;
  }
  
  .location-holder {
    width: 100%;
  }
  
  .project-details-cards-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .project-details-card {
    flex: none;
  }
  
  .project-collection-images-holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .main-container {
    padding-inline: 15px;
  }
  
  .main-container p {
    margin-block: 40px;
    font-size: 14px;
  }
  
  .project-collection-container h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  header {
    padding-inline: 15px;
  }
  header .logo h1 {
    font-size: 22px !important;
  }
  .project-hero-image {
    height: 30vh;
  }
  
  .project-hero-band h3 {
    font-size: 14px;
  }
  
  .project-hero-band p {
    font-size: 12px;
  }
  
  .project-hero-band>div {
    padding: 10px 15px;
  }
  
  .project-details-card h1 {
    font-size: 20px;
  }
  
  .project-details-card p {
    font-size: 14px;
  }
  
  .project-collection-images-holder {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .project-collection-image-holder:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  
  .project-collection-image-holder:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  
  .project-collection-image-holder:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  
  .project-collection-image-holder:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  
  .project-collection-container h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .main-container p {
    margin-block: 30px;
    font-size: 13px;
  }

  /* Updates holder link styling for responsive */
  .updates-holder a {
    height: 100%;
  }

  .updates-holder a:hover > div {
    background-color: #ffc102;
  }
}
@media (max-width: 455px) {
  .menu-services-container h1 {
    font-size: 26px;
  }
}

@media (max-width: 371px) {
  header .logo h1 {
    font-size: 20px !important;
  }
  .menu-services-container h1 {
    font-size: 22px;
  }
}