* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent; 
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

main {
  padding-top: 42px;
  position: relative;
  z-index: 1;
  min-height: 100vh; 
}


header {
  text-align: center;
  padding: 10px 0;
  position: relative; 
  z-index: 1;         
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: whitesmoke;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 3px 0 0 0;
  display: flex;
  justify-content: center;
  gap: 30px; /* mellanrum mellan länkarna */
}

nav a {
  position: relative;       /* behövs för ::after */
  text-decoration: none;    /* tar bort standard underline */
  color: whitesmoke;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  transition: color 0.5s;
  padding-bottom: 3px;      /* lite utrymme för underlinjen */
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;                  /* startar med 0 bredd */
  height: 2px;               /* tjocklek på underlinjen */
  background-color: whitesmoke; /* underlinjens färg */
  transition: width 0.3s;    /* animation för "slide" */
}

nav a:hover::after {
  width: 100%;               /* expanderar underlinjen på hover */
}


/* Se till att hero täcker ALLT */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  /* täcker hela viewporten */
  min-height: 100vh;
  min-height: 100dvh; /* bättre för mobil */
  background-image: url('images/PARIA-3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.recordings-hero {
  background-image: url('images/PARIA-7.jpg');
}

.production-hero {
  background-image: url('images/PARIA-2.jpg');
}

.eventproduction-hero {
  background-image: url('images/PARIA-1.jpg');
}

.contact-hero {
  background-image: url('images/PARIA-4.jpg');
}

.about-hero {
  background-image: url('images/PARIA-8.jpg');
}

.recordings-list,
.production-list,
.eventproduction-list {
  max-width: 100vw; 
  overflow-x: hidden;
}

.eventproduction-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 80px;
}

/* Halv bredd för de två första */
.half-width .img-wrapper {
    width: 100%;
    height: 100%;
}

.eventproduction-list .img-wrapper {
    position: relative;
    overflow: hidden;
}

.eventproduction-list .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Första bilden i raden - flytta till höger */
.eventproduction-row .half-width:first-child p {
    font-size: 17px;
    font-weight: 450;
}

/* Text-overlay mitt på kortet */
.eventproduction-list .img-wrapper p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 15px 20px;
    color: whitesmoke;
    font-size: 17px;
    font-weight: 450;
    text-align: center;
    background: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Mörkt overlay över hela bilden */
.eventproduction-list .img-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* ===== DESKTOP HOVER FÖR EVENTPRODUCTION ===== */
@media (hover: hover) and (pointer: fine) {
    .eventproduction-list .img-wrapper:hover p {
        opacity: 1;
    }

    .eventproduction-list .img-wrapper:hover::after {
        background: rgba(0,0,0,0.5);
    }

    .eventproduction-list .img-wrapper:hover img {
        transform: scale(1.05);
    }
}

/* ===== MOBILE FÖR EVENTPRODUCTION ===== */
@media (hover: none) or (pointer: coarse) {
    .eventproduction-list .img-wrapper.in-view p {
        opacity: 1;
    }
    
    .eventproduction-list .img-wrapper.in-view::after {
        background: rgba(0,0,0,0.5);
    }
}

/* Monom-specifik styling */
.monom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

/* Monom-specifik styling */
.monom.half-width {
    width: 500px; /* Eller annan fast bredd */
}

.monom.half-width p {
  font-size: 16px;
}

/* Ta bort alla Monom-specifika regler och låt half-width hantera allt */
.monom.half-width .img-wrapper {
    width: 100%;
    height: 100%;
}

.monom.half-width .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SoundCloud länkar - horisontellt som tidigare */
.soundcloud-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.soundcloud-links a {
    color: whitesmoke;
    text-decoration: none;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.soundcloud-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.eventproduction-list a {
    text-decoration: none;
    cursor: pointer;
}

/* Container för album/filmer och productions */
.recordings-list,
.production-list {
    display: grid;
    grid-template-columns: repeat(2, 450px); /* Max 2 kolumner */
    gap: 20px;
    padding: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

/* Text-overlay mitt på kortet */
.recordings-list .img-wrapper p,
.production-list .img-wrapper p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    font-weight: 350;
    text-align: center;
    background: none; /* Ta bort bakgrunden på texten */
    opacity: 0; /* gömd tills hover */
    transition: opacity 0.3s ease;
    z-index: 2; /* Ligger ovanför det mörka lagret */
}

/* Album / filmkort / production */
.recordings-list .album,
.recordings-list .film,
.production-list .production {
    width: 450px;       /* Fast bredd för korten */
    cursor: pointer;
    overflow: hidden;
    background: none;   /* ingen bakgrund */
    display: flex;
    flex-direction: column; /* gör att audio/text kommer under bilden */
}

/* Mörkt overlay över hela bilden */
.recordings-list .img-wrapper::after,
.production-list .img-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);  /* osynlig som standard */
    transition: background 0.3s ease;
    pointer-events: none;
    z-index: 1; /* Ligger under texten men över bilden */
}

/* Wrapper runt bild/video och text */
.recordings-list .img-wrapper,
.production-list .img-wrapper {
    position: relative;
    width: 100%;
    height: 420px;      /* fast höjd på kortet */
    overflow: hidden;
}

.img-wrapper {
  position: relative; /* viktigt för absolut positionering */
  display: inline-block;
}

/* Bild och video */
.recordings-list .img-wrapper img,
.recordings-list .img-wrapper video,
.production-list .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* fyller hela kortet utan att tappa proportioner */
    display: block;
    transition: transform 0.3s ease;
}

/* Ljudkort (audio) */
.recordings-list audio {
    width: 100%;
    margin-top: 10px;
}

/* Play-knapp */
.play-btn {
  position: absolute;
  left: 30px;
  bottom: 5px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6); /* halvtransparent svart bakgrund */
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  position: absolute;
  bottom: 10px;
  left: 18px; /* vänster nederkant */
  width: 30px;
  height: 30px;
  font-size: 17px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tidräknare bredvid play-knapp */
.time-display {
  position: absolute;
  bottom: 15px;
  left: 55px; /* placerad till höger om play-knappen */
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-family: monospace;
  pointer-events: none; /* så att man inte kan klicka på den */
}

/* Progress bar för att spola */
.progress-bar {
  position: absolute;
  bottom: 55px; /* ovanför play-knappen */
  left: 10px;
  right: 10px;
  width: calc(100% - 20px);
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.3);
  outline: none;
  cursor: pointer;
  border-radius: 2px;
}

.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
}

.progress-bar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
  border: none;
}

/* ===== DESKTOP HOVER FÖR RECORDINGS & PRODUCTION ===== */
@media (hover: hover) and (pointer: fine) {
    .recordings-list .img-wrapper:hover p,
    .production-list .img-wrapper:hover p {
        opacity: 1;
    }
    
    .recordings-list .img-wrapper:hover::after,
    .production-list .img-wrapper:hover::after {
        background: rgba(0,0,0,0.5);
    }
    
    .recordings-list .img-wrapper:hover img,
    .recordings-list .img-wrapper:hover video,
    .production-list .img-wrapper:hover img {
        transform: scale(1.05);
    }
}

/* ===== MOBILE FÖR RECORDINGS & PRODUCTION ===== */
@media (hover: none) or (pointer: coarse) {
.recordings-list .img-wrapper.in-view p,
.production-list .img-wrapper.in-view p {
    opacity: 1;
}
    
.recordings-list .img-wrapper.in-view::after,
.production-list .img-wrapper.in-view::after {
    background: rgba(0,0,0,0.5);
  }
}

.recordings-list a,
.production-list a {
    text-decoration: none;
    color: inherit;
}

.contact {
  margin: 40px auto 20px;
  max-width: 900px;
  padding: 20px; 
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  display: flex;          
  margin-left: 150px;
  gap: 40px;      
}

.contact-info h2 {
  color: white;
  font-size: 26px; 
  margin-bottom: 20px; 
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(44, 43, 43, 0.08);
  backdrop-filter: blur(2px);      
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-item svg {
  flex-shrink: 0;
  color: white;
}

.info-item a {
  color: white;
  font-weight: 400;
  text-decoration: none;
  font-size: 18px;
}


.instagram-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form {
  width: 600px;
  max-width: 100%;
  margin: 0 auto 40px;
  margin-top: 60px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 6px;
}

.contact-form h2 {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: white;
  font-weight: 400;
}

.contact-form input[type="hidden"],
.contact-form p[style*="display:none"] {
  display: none;
}

.contact-form .form-field:last-of-type {
  grid-column: 2;
  grid-row: 2 / span 3;
}

.form-field label {
  display: block;
  color: white;
  font-size: 12px; 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px; 
  background: none; 
  border: 1.5px solid white;
  color: white;
  font-size: 15px; 
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: white;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 242, 242, 0.864);
}

.form-field textarea {
  min-height: 160px; 
  resize: vertical;
  font-family: inherit;
}

.contact-form button {
  width: 50%;
  padding: 12px; 
  background: linear-gradient(45deg, rgb(62, 59, 59)); 
  border: none;
  color: whitesmoke;
  font-size: 14px; 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(117, 116, 117, 0.4);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact {
    padding: 20px;
  }
}
.about {
    background-color: rgba(0, 0, 0, 0.5); /* halvtransparent svart */
    color: white;
    padding: 20px;
    max-width: 600px;
    height: 250px;
    margin: 130px auto 40px auto; /* flyttar ner rutan lite med 60px överst */
    line-height: 1.6;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smidig animation vid hover */
    font-size: 16px;
}

.instagram-wrapper {
    display: flex;
    justify-content: flex-start; /* flyttar allt innehåll åt vänster */
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 3px;
  color: whitesmoke;
  background-color: rgba(0, 0, 0, 0.7); /* halvgenomskinlig bakgrund */
  z-index: 10;
}

/* ===== BURGER MENU STYLES - MED RÄTT Z-INDEX ===== */
.burger-menu {
  display: none; /* Dold på desktop */
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001; /* HÖGRE ÄN ALLT ANNAT */
  position: relative;
}

.burger-menu span {
  width: 35px;
  height: 3px;
  background: #e0e0e0;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Burger animation when active */
.burger-menu.active span:nth-child(1) { 
  transform: rotate(45deg) translate(5px, 5px); 
}
.burger-menu.active span:nth-child(2) { 
  opacity: 0; 
}
.burger-menu.active span:nth-child(3) { 
  transform: rotate(-45deg) translate(7px, -6px); 
}

/* ===== OVERLAY MENY - MED RÄTT Z-INDEX ===== */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  z-index: 1000; /* HÖGRE ÄN KORTEN */
}

.nav-overlay.active {
  display: flex;
}

.nav-overlay ul {
  flex-direction: column;
  gap: 20px;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.nav-overlay a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
}

/* DESKTOP - säkerställ att mobil-element är dolda */
@media (min-width: 769px) {
  .burger-menu {
    display: none !important;
  }
  
  .nav-overlay {
    display: none !important;
  }
  
  nav ul.menu {
    display: flex; /* eller block, beroende på din layout */
  }
}

/* MOBIL */
@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 100svh;
  }

  /* Dölj vanlig meny */
  nav ul.menu {
    display: none !important;
  }

  /* Visa hamburgare */
  .burger-menu {
    display: flex;
    position: absolute;
    top: -5px;
    right: 24px;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .recordings-list {
        
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
        margin: 0 auto;
        justify-items: center;
    }

    .recordings-list .img-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;  
    gap: 15px;              
  }

  nav a {
    font-size: 15px;         /* mindre font */
  }
}

@media (max-width: 768px) {
    .recordings-list {
        grid-template-columns: 1fr; /* en kolumn på mobiler */
        gap: 15px;
        padding: 15px;
        justify-items: center; /* centrera korten */
    }

    .recordings-list .img-wrapper {
        height: 300px;
    }

        /* Ge utrymme för footern */
    main {
        padding-bottom: 80px;      /* så korten inte går under footern */
    }
}

/* Små skärmar / mobil */
@media (max-width: 600px) {
    .recordings-list,
    .production-list {
        grid-template-columns: 1fr;  /* en kolumn */
        justify-items: center;       /* centrera korten */
        gap: 15px;
        padding: 15px;
    }

      /* Ge utrymme för footern */
    main {
        padding-bottom: 80px;      /* så korten inte går under footern */
    }

    .recordings-list .album,
    .recordings-list .film,
    .production-list .production {
        width: 100%;                 /* full bredd */
        max-width: 380px;            /* maxbredd */
    }

    .recordings-list .img-wrapper,
    .production-list .img-wrapper {
        height: 300px;               /* mindre kort */
    }
}

/* ==== NORMAL MOBIL (468px–599px) ==== */
@media (max-width: 599px) and (min-width: 468px) {
    .recordings-list,
    .production-list {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;       /* Centrerar grid items */
        padding: 15px;
        gap: 20px;
        width: 100%;
    }

    .recordings-list .album,
    .recordings-list .film,
    .production-list .production {
        width: 100%;
        max-width: 420px;
    }

        /* Ge utrymme för footern */
    main {
        padding-bottom: 80px;      /* så korten inte går under footern */
    }

    .recordings-list .img-wrapper,
    .production-list .img-wrapper {
        width: 100%;
        height: 320px;                /* låter bilden styra höjden */
        display: flex;
        justify-content: center;     /* centrerar innehållet horisontellt */
        align-items: center;         /* centrerar innehållet vertikalt */
    }

    .recordings-list .img-wrapper img,
    .production-list .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ==== LITEN MOBIL (400px–467px) ==== */
@media (max-width: 467px) and (min-width: 400px) {
    .recordings-list,
    .production-list {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 12px;
        gap: 18px;
        width: 100%;
        max-width: 100vw; /* säkerställer att den inte kan bli bredare än skärmen */
    }

    .recordings-list {
        padding-bottom: 80px;
    }

    .production-list {
        padding-bottom: 65px;
    }

    .recordings-list .album,
    .recordings-list .film,
    .production-list .production {
        width: 90%;  /* ändrat från 95% för mer marginal */
        max-width: 380px;
        margin: 0 auto;
    }

    main {
        padding-bottom: 80px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .recordings-list .img-wrapper,
    .production-list .img-wrapper {
        width: 100%;
        height: 280px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .recordings-list .img-wrapper img,
    .production-list .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    footer {
        padding: 15px;
    }
}

@media (max-width: 399px) {
    .recordings-list,
    .production-list {
        width: 100%;
        max-width: 100vw;
        padding: 10px 5px; /* mindre padding på sidorna */
    }
    
    .recordings-list .album,
    .recordings-list .film,
    .production-list .production {
        width: 88%; /* lite smalare för säkerhetsmarginal */
        max-width: 340px;
    }
}

/* --- 1024px: 2 kolumner centrerade --- */
@media (max-width: 1024px) {
    .production-list {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
        margin: 0 auto;
        justify-items: center;
    }

    .production-list .production {
        width: 100%;
        max-width: 450px;
    }
}

/* --- 900px: Fortfarande 2 kolumner men tajtare --- */
@media (max-width: 900px) {
    .production-list {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        width: 92%;
        gap: 15px;
    }
}

/* --- 768px: Mobil-läge, 1 kolumn, centrerat --- */
@media (max-width: 768px) {
    .production-list {
        grid-template-columns: 1fr;
        width: 95%;
        margin: 0 auto;
        justify-items: center;
    }

    .production-list .production {
        width: 100%;
        max-width: 420px;
    }
}

/* --- 600px: Lite smalare kort --- */
/* ==== Små skärmar upp till 600px ==== */
@media (max-width: 600px) {
    .production-list .production {
        max-width: 380px;
        margin: 0 auto; /* Centrerar kortet */
    }
}

/* ==== Mindre skärmar upp till 468px ==== */
@media (max-width: 468px) {
    .production-list {
        width: 100%;
        justify-items: center; /* Centrerar grid items */
    }

    .production-list .production {
        height: 100%;
        max-width: 350px;
        margin: 0 auto; /* Centrerar kortet */
    }

    .production-list .img-wrapper p {
        font-size: 14px; /* mindre text */
    }
}

/* --- 400px: Små mobiler, maxbredd 300px --- */
@media (max-width: 400px) {
    .production-list .production {
        max-width: 300px;
    }

    .production-list .img-wrapper {
        height: 360px;
    }
}

@media (max-width: 675px) {
    .full-width, .half-width, .monom.half-width {
        width: 400px;
    }
}

@media (max-width: 468px) {
    .full-width, .half-width, .monom.half-width {
        width: 350px;
    }
}

@media (max-width: 400px) {
    .full-width, .half-width, .monom.half-width {
        width: 300px;
    }
}

/* ==== ABOUT - mindre skärmar ==== */
@media (max-width: 780px) {
    .about {
        width: 90%;
        max-width: none;
        height: auto;
        padding: 25px 20px;
        margin: 160px auto 40px auto; /* Ändrad från 80px till 20px */
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 468px) {
    .about {
        width: 95%;
        padding: 20px 15px;
        font-size: 14px;
        line-height: 1.4;
        margin: 180px auto 30px auto;
        height: auto;
    }
}

@media (max-width: 900px) {

    .contact-form {
      margin-top: 5px;
    }
}

/* ==== DESKTOP (standard/default) ==== */
/* Dina ursprungliga stilar här */

/* ==== TABLET/mellanstorlek (780px–468px) ==== */
/* ==== DESKTOP (standard/default) ==== */
/* Dina ursprungliga stilar här */

@media (max-width: 780px) {
    .contact {
        width: 90%;          
        padding: 20px 15px;
        font-size: 16px;
        height: auto;        
        margin: 40px;
    }

    .contact-info {
        align-items: flex-start;
        margin-left: 65px;
    }
}

/* ==== RESPONSIVE: små mobiler (467px–400px) ==== */
@media (max-width: 769px) {
    .contact {
        width: 100%;
        font-size: 15px;
        height: auto;
        margin: 0 auto 10px auto;
    }

    .contact-form {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        margin-top: 70px;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 30px;
        margin-top: 10px;
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        border-radius: 0;
    }

    .form-field input,
    .form-field textarea {
        border: 1px solid white;
    }
}

