@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rasa:ital,wght@0,300..700;1,300..700&display=swap');


:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-muted-color: #d1d5db;
    --text-dark-muted-color: #6b7280;
    --border-color: #9ca3af;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-right {
    justify-content: flex-end;
}

.site-header nav a {
    color: var(--text-muted-color);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.site-header nav a:hover {
    color: var(--text-color);
}

.logo {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.logoimg {
  width: 200px;         
  max-width: 40vw;      
  height: auto;          
  display: block;        
}

@media (max-width: 768px) {
  .logoimg {
    width: 150px;
    max-width: 60vw;
  }
}

/* Hero Section */
.hero {
    position: relative;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.heroindex {
    position: relative;
    height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../IMG/mainimg.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.75rem;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-content p {
    color: var(--text-muted-color);
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
}

.action-button {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted-color);
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.action-button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

/* Gallery Section */
.gallery {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.site-footer-bottom {
    padding: 3rem 0;
    
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.copyright {
    color: var(--text-dark-muted-color);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted-color);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-color);
}

.social-links svg {
    width: 1.5rem;
    height: 1.5rem;
}



/* Responsive Styles */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 6rem;
    }

    .hero-content p {
      font-size: 1rem;
    }

    .button-group {
        flex-direction: row;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        flex-direction: row;
    }

    .copyright {
        margin-bottom: 0;
    }
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .site-header nav {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo {
        flex: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-left,
    .nav-right {
        flex-basis: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .nav-left { order: 1; }
    .nav-right { order: 2; padding-top: 2; }
    
    .site-header.nav-open .nav-left,
    .site-header.nav-open .nav-right {
        display: flex;
        background-color: #0a0a0ad8;
        padding-bottom: 20px;
    }
    
    /* Animate hamburger to an 'X' */
    .site-header.nav-open .menu-toggle .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .site-header.nav-open .menu-toggle .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .site-header.nav-open .menu-toggle .hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Adjust Hero for smaller screens */
    .hero-content h1 {
        font-size: calc(2.5rem + 2vw);
    }
}

.gallery-itemservice {
    overflow: hidden;
    background-color: #6b72804f;
    border-radius: 20px;
    padding: 4% 2% 0% 4%;
    margin-left: 5%;
    margin-right: 5%;
    border-style:solid;
    border-color: #0a0a0a;
    width: 85%;
    height: 220px;
}

.textstyleservice{
   font-family: "Rasa", serif;
   color: rgb(255, 255, 255); 
   font-size: 180%;
   font-weight: 500;
  font-style: normal;
}

.hero-content1 p{
   font-family: "Prompt", sans-serif;
   color: rgb(255, 255, 255); 
   font-size: 100%;
   margin-top: 10px;
   font-style: italic;
   
}


.container3{
  padding: 75px 0;
  margin: 0 auto;
  width: 1140px;
}


.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50vh;
    border-color: #0a0a0a;
  border-style: solid;
  border-width: 2px;
  
}

.item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
    border-color: #0a0a0a;
  border-style: solid;
  border-width: 2px;
  
  &:hover{
    flex: 7;
  }
}

.item-1 { 
  background-image: url('../IMG/PINproject.webp');
}

.item-2 { 
  background-image: url('../IMG/Voorbeeldproject1.webp');
}

.item-3 { 
  background-image: url('../IMG/HPproject.webp');
}

.item-4 { 
  background-image: url('../IMG/Voorbeeldproject2.webp');
}

.item-5 { 
  background-image: url('../IMG/Voorbeeldproject3.webp');
}

.social{
  position: absolute;
  right: 35px;
  bottom: 0;
  
  img{
    display: block;
    width: 32px;
  }
}

h5{
    color: #ffffff;
}











.card {
  background-color: #0000004f;
  border-radius: 4px;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.5);
  max-width: 800px;
  display: flex;
  flex-direction: row;
  border-radius: 25px;
  position: relative;
  align-content: center;
}
.card h2 {
  margin: 0;
  padding: 0 1rem;
}
.card .title {
  padding: 1rem;
  text-align: right;
  color: var(--text-color);
  font-weight: bold;
  font-size: 12px;
}
.card .desc {
  padding: 0rem 0rem;
  font-size: 80%;
}

.card-text {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.title-total {
  padding: 2.5em 1.5em 1.5em 1.5em;
}


.img-portada {
  width: 100%;
}

.portada {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-image: url("../IMG/me.jpg");
  background-position: bottom center;
  background-size: cover;
}


.contact-form{
    max-width:900px;
    align-items: center;
}

.contact-form input, .contact-form textarea{
    width:100%;
    padding:12px;
    border-radius:10px;
    background:rgba(0, 0, 0, 0.671);
    border:1px solid rgb(255, 255, 255);
    margin-top: 5px;
    color:var(--white);
      align-items: center;
}

.form-actions{
    display:flex;
    gap:12px;
    align-items:center;
    margin-top:12px;
}

.btn{
    padding:12px 18px;
    border-radius:12px;
    background: #4947478c;
    color:rgb(255, 255, 255); 
    font-weight:600;
    text-decoration:none;
    border:0;
      align-items: center;
      border: 2px solid #ffffff;
}

.btn-ghost{
    background:transparent;
    border:1px solid rgba(255,255,255,0.06);
    color:var(--white);
    padding:10px 16px;
      align-items: center;
}

.textform{
    margin-top: 2%;
}

.margins{
    margin-top: 100px;
    margin-bottom: 100px;
    
}
