* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Playfair Display", serif;
}

body {
    background: #fff7f9;
    color: #4a4a4a;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffd6e0;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navbar nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #b85c7a;
    font-weight: 500;
}




/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffe9ef;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #c46a87;
    font-weight: 500;
}



.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

/* BILDET */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* mid-crop */
    object-position: center;
    display: block;
}

/* ROSA OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 214, 224, 0.7);
}

/* TEKST OPPÅ */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero-content h1 {
    font-size: 3.5rem;
    color: #4a4a4a;
}

.hero-content p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #5f5f5f;
}





.services-section {
    background: #fff3f6;
    padding: 100px 15%;
}

.services-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.services-section h3 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #c46a87;
}

.services-section p {
    max-width: 800px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* SERVICES SECTION */
#services {
    padding: 120px 15%;
}

/* HOVEDTITTEL */
#services > h3:first-of-type {
    font-size: 2.4rem;
    margin-bottom: 50px;
}

/* UNDERTITLER (Custom Orders / Deposit) */
.service-subtitle {
    color: #c46a87;              /* dark pink */
    font-size: 1.5rem;
    margin-top: 60px;
    margin-bottom: 15px;
}

/* PARAGRAFER */
#services p {
    max-width: 800px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* FAQ TITTEL */
.faq-title {
    font-size: 1.9rem;
    margin-top: 80px;
    margin-bottom: 30px;
}

/* FAQ SPACING */
.faq details {
    padding: 18px 0;
}

.faq summary {
    font-weight: 600;
    color: #c46a87;
}

/* Litt ekstra luft etter deposit */
.service-subtitle + p {
    margin-top: 10px;
}



.faq details {
    border-bottom: 1px solid #f3b6c8;
    padding: 15px 0;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #c46a87;
    list-style: none;
}

.faq summary::after {
    content: "▾";
    float: right;
    transition: transform 0.3s ease;
}

.faq details[open] summary::after {
    transform: rotate(180deg);
}

.faq p {
    margin-top: 10px;
    color: #555;
}











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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #c46a87;
    border-radius: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #ffe9ef;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero h2 {
    font-size: 3rem;
}

.hero p {
    margin-top: 10px;
    font-size: 1.2rem;
}

/* SECTIONS */
.section {
    padding: 100px 10%;
}

.section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section.pink {
    background: #ffe9ef;
}

.section.dark {
    background: #2f2f2f;
    color: white;
}

/* ABOUT */
.content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.content img {
    width: 300px;
    border-radius: 20px;
}

/* SERVICES */
ul {
    list-style: none;
}

ul li {
    padding: 10px 0;
    font-size: 1.1rem;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 20px;
}



/*menu */
.menu {
    padding: 120px 12%;
    background: #fff7f9;
}

.menu-title {
    font-size: 3rem;
    text-align: center;
    color: #c46a87;
}

.menu-intro {
    text-align: center;
    margin: 15px 0 80px;
    color: #666;
}

.menu-section {
    font-size: 2rem;
    color: #c46a87;
    margin: 80px 0 40px;
}

/* ITEM */
.menu-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.menu-item img {
    width: 320px;
    height: auto;
    border-radius: 18px;
}

.menu-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.menu-text p {
    color: #555;
    max-width: 500px;
}

.price {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    color: #c46a87;
}

@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        gap: 18px;
    }

    .menu-item img {
        width: 100%;
        max-width: 320px;
        margin-top: 10px;
    }

    .menu-text {
        order: 1;
    }

    .menu-item img {
        order: 2;
    }
}

/* footer */
.contact-links {
    background: #2b2b2b;
    text-align: left;
    padding: 80px 12%;
}

.contact-links h3 {
    font-family: 'Pacifico', serif;
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-links p {
    color: #ffffff;
    font-size: 18px;
    margin: 14px 0;
    display: flex;
    align-items: center;
}

.contact-links i {
    margin-right: 12px;
    font-size: 20px;
}
.contact-links a {
    color: #ffffff;        /* samme hvite tekst */
    text-decoration: none; /* fjerner strek */
    display: inline-flex;
    align-items: center;
}

.contact-links a:hover {
    opacity: 0.8;          /* subtil hover */
}


/* Feedback section background */
.feedback-section {
    background: #fde9ec;
    padding: 80px 20px;
    border-radius: 40px;
    margin: 80px auto;
}

/* Title */
.feedback-title {
    font-family: 'Pacifico', cursive;
    color: #d97a8c;
    font-size: 36px;
    margin-bottom: 50px;
}

/* GRID: 2 per rad */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.feedback-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Text */
.feedback-text {
    flex: 1;
}

.feedback-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 10px 0;
}

.stars {
    color: #f5b942;
    font-size: 18px;
}

.customer-name {
    display: block;
    margin-top: 12px;
    color: #d97a8c;
    font-weight: 600;
}

/* Image */
.feedback-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 18px;
}

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

    .feedback-card {
        flex-direction: column;
        text-align: left;
    }

    .feedback-card img {
        width: 100%;
        height: 180px;
    }
}


/* ===== FEEDBACK SECTION ===== */
.feedback-section {
    background: #fde9ec;
    padding: 80px 20px;
}

.feedback-title {
    font-family: 'Pacifico', cursive;
    color: #d97b91;
    font-size: 36px;
    margin-bottom: 40px;
}

/* ===== DESKTOP GRID ===== */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feedback-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.feedback-text {
    max-width: 65%;
}

.stars {
    color: #f6b73c;
    font-size: 18px;
    margin-bottom: 10px;
}

.customer-name {
    display: block;
    margin-top: 12px;
    color: #d97b91;
    font-weight: 600;
}

.feedback-card img {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    object-fit: cover;
}

/* ===== MOBILE SLIDER ===== */
@media (max-width: 768px) {
    .feedback-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
    }

    .feedback-card {
        min-width: 85%;
        flex-direction: column;
        text-align: left;
        scroll-snap-align: center;
    }

    .feedback-text {
        max-width: 100%;
    }

    .feedback-card img {
        width: 100%;
        height: 180px;
        margin-top: 15px;
    }
}
.feedback-product {
    font-size: 16px;
    font-weight: 600;
    color: #d97b91;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



















/* PRICE BOX */
.price-box {
    margin-top: 80px;
    padding: 40px;
    background: #ffe9ef;
    border-radius: 20px;
    text-align: center;
}

.price-box h3 {
    color: #c46a87;
    margin-bottom: 20px;
}



.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: white; /* hvis logoen er lys */
}
