/* ========== RESET & VARIABLES ========== */
:root {
    --primary: #111;
    --secondary: #ffffff;
    --accent: #96885F;
    --text-dark: #111;
    --text-light: #fff;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}
.page-transition {
    position: fixed;
    inset: 0;
    background: #111;
    z-index: 9999;
    pointer-events: none;
    will-change: transform;
    /* Start covered so there is no flash of content on load */
    transform: translateY(0%);
}

/* ========== GLOBAL CLASSES ========== */
.container {
    max-width: 90%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.btn {
    padding: 0.8rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn.primary {
    background: var(--accent);
    color: var(--text-light);
}

.btn.primary:hover {
    opacity: 0.85;
}

.btn.secondary {
    border: 1px solid var(--secondary);
    color: var(--text-light);
}

/* ========== HEADER / NAV ========== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 3.1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-light);
}

.header.scrolled .logo {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 22px
}

.header.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-actions {
    display: flex;
    gap: 1rem;
   align-items: center;
}
.nav-actions > .primary{
    color: white !important;
}

.phone-btn {
   border: 1px solid var(--secondary);
    color: var(--text-light);
    text-decoration: none;
}

.header.scrolled .phone-btn {
    color: var(--text-dark);
    border: 1px solid var(--primary);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: white;
}

.header.scrolled .burger span {
    background: black;
}

/* ========== HERO ========== */
.hero {
    opacity: 1;
    height: 90vh;
    background-color: #111;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url("https://images.pexels.com/photos/7697208/pexels-photo-7697208.jpeg?auto=compress&cs=tinysrgb&w=1600")
        center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--text-light);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
 
}

.hero-title {
    font-size: clamp(4.9rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-align: center;
    
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
/* ========== marquee ========== */
.wrapper{
    width: 100%;
    height: 65px;
    margin: auto;
    background: #000;
    overflow: hidden;
    bottom: 50%;
}
.box {
    height:65px;
    position:absolute;
    background:transparent;
    font-size: 30px;
    line-height:65px;
    text-align:center;
    color: #fff;
    text-transform: uppercase;
}
.boxes {
    position:relative;
}
/* ========== SECTIONS (GENBRUGELIG) ========== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
}

.section-header p {
    opacity: 0.7;
}

/* ========== SERVICES ========== */
.services {
    background: #111;
}
.section-header > h2{
    color: #fff;
}
.section-header > p{
    color: #fff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    border-top: 3px solid transparent;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s ease;
       opacity: 1; /* GSAP styrer animationen */
       display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.service-icon {
    width: 52px;
    height: auto;
    margin-bottom: 1.2rem;
    color: var(--accent);
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
}

.service-card:hover {
     border-top-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo{font-size: 2.4rem;}
    .hero-title {
    font-size: clamp(3.4rem, 5vw, 4rem);
   
}
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== RESPONSIVE NAV ========== */
@media (max-width: 768px) {

    /* Hide desktop actions only */
    .nav-actions {
        display: none;
    }

    /* Burger visible */
    .burger {
        display: flex;
    }

    /* Mobile menu (nav-links reused) */
    .nav-links.mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;

        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
    }

    .header.menu-open .nav-links.mobile-menu {
        pointer-events: auto;
    }

    .nav-links.mobile-menu a {
        color: black;
        font-size: 1.4rem;
    }

    .marquee-arrow {
        display: none !important;
    }
}
  /* Mobile menu burger kryds*/
.header.menu-open .burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header.menu-open .burger span:nth-child(2) {
    opacity: 0;
}

.header.menu-open .burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.burger span {
    transition: 0.3s ease;
}


.about{
       background:
        linear-gradient(
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.65)
        ),
        url("https://lh3.googleusercontent.com/gps-cs-s/AHVAweptcOvy__EqTwDwnWIlcHcTmgggHNCQvcjVabgaieZxg339StwFLlfdpcpLionQIggFUz6f615sfvP_GNr9RhsQs6fuupr5Qkw8KvBuxXxlshMdPooGg-28Lca6KjikyShOukVrzQ=s1360-w1360-h1020-rw")
        center / cover no-repeat;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff
}

.about-text {
    font-size: 1rem;
    color: #f8f8f8;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 1.2rem;
}

.about-actions {
    margin-top: 2rem;
}
/* ========== SLIDER ========== */
.marquee-wrapper {
  position: relative;
  width: 100%;
  background-color: #111;
  padding-top: 30px;
  padding-bottom: 30px;
}

.marquee {
  display: flex;
  gap: 30px;
  overflow: hidden;
}

.marquee-item {
  position: relative;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.member {
  width: 100%;
}

.member-link {
  display: block;
}

.member-img-wrapper {
  margin: 0;
}

.member-img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}


.member-link:hover .member-img {
  filter: grayscale(0);
}

.marquee-arrow {
  position: absolute;
  bottom: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background:   var(  --accent);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.marquee-arrow.arrow-prev {
  left: calc(50% - 50px);
}

.marquee-arrow.arrow-next {
  right: calc(50% - 50px);
}

@media (min-width: 850px) {
  .marquee-item {
    width: 500px;
  }

  .member-img {
    height: 500px;
  }

  .member-title {
    font-size: 1.6em;
  }

  .marquee-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
  }

  .marquee-arrow.arrow-prev {
    left: 40px;
  }

  .marquee-arrow.arrow-next {
    right: 40px;
  }
}
/* ========== Sisdte sektion ========== */
/* ========== STORY SECTION ========== */
.story{
    background-color: #111;
}
.story-grid {
    display: grid;
    gap: 3rem;
}

.story-text p {
    max-width: 520px;
    line-height: 1.8;
    color: #f8f8f8;
    margin-bottom: 1.2rem;
}

.story-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.story-img {
    overflow: hidden;
    border-radius: 18px;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-large {
    width: 100%;
    aspect-ratio: 4 / 5;
}

.img-small {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 45%;
    aspect-ratio: 1 / 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Tablet+ */
@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}
/* ========== FOOTER ========== */
.footer {
    background: #1f1f1f;
    color: #ccc;
    padding: 4rem 1.5rem 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-desc {
    max-width: 320px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--accent);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
}

.footer-bottom a {
    color: #777;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Tablet+ */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-col.map { 
        grid-column: span 3;
    }
}
/* ========== pris ========== */
.prices{
    background-color: #111;
}
.price-group {
    margin-bottom: 4rem;
}

.price-group h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #f8f8f8;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.price-list span:last-child {
    font-weight: 600;
    white-space: nowrap;
}

.price-list .divider {
    border-bottom: none;
    height: 1.2rem;
}
.priser-knap{
    padding-top: 2rem;
}
/* ========== Kontakt ========== */
.contact-section {
  padding: 5rem 1.5rem;
  background: #111;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center


}

.contact-card {
  background: #333333;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.contact-card span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-card.primary {
  background: #111;
  color: #fff;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
}
.contact-hero {
    opacity: 1;
    height: 60vh;
    background-color: #111;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url("https://images.pexels.com/photos/7697208/pexels-photo-7697208.jpeg?auto=compress&cs=tinysrgb&w=1600")
        center / cover no-repeat;
    display: flex;
    align-items: center;
}


