/* ============================= */
/* PRODUKTSIDA - BAKGRUND */
/* ============================= */

.produkter-page {
    font-family: "Inter", sans-serif;
    background: linear-gradient(
        180deg,
        var(--blue-1) 0%,
        var(--blue-2) 25%,
        var(--blue-3) 50%,
        var(--blue-4) 75%,
        var(--blue-5) 100%
    );
    color: #2c2c2c;
    min-height: 100%;
    background-position: 0 -80px;
}

/* ============================= */
/* PRODUKTSIDA - PRODUKTKORT */
/* ============================= */

.produkter-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.produkt-sektion {
    background: linear-gradient(135deg, #f3ef07 0%, #2c5282 25%, #3a6ea5 50%, #4a8bc4 75%, #5aa8e3 100%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    padding-bottom: 25px;
    position: relative;
}

/* Dekorativ inre ram för produktkort */
.produkt-bild {
    position: relative;
    overflow: hidden;
}

.produkt-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produkt-sektion:hover .produkt-image {
    transform: scale(1.05);
}

.produkt-sektion h2 {
    margin: 25px 20px 15px;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
}

.produkt-beskrivning {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 25px 20px;
    color: #ffffff;
}

.produkt-info-ruta {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5282 25%, #3a6ea5 50%, #4a8bc4 75%, #5aa8e3 100%);
    border-radius: 12px;
    margin: 0 25px 20px;
    padding: 15px;
    text-align: left;
}

.fakta-ruta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fakta-ruta li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #ffffff;
}

.fakta-ruta li:last-child {
    margin-bottom: 0;
}

.fakta-ruta li strong {
    color: #ffffff;
    font-weight: 600;
}

.bestallningsknapp {
    margin: 15px 25px 20px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: var(--gold);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.bestallningsknapp:hover {
    background: var(--blue-5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 95, 154, 0.3);
}

.juridisk-notis {
    font-size: 12px;
    color: #ffffff;
    padding: 0 25px 20px;
    line-height: 1.4;
    font-style: italic;
    opacity: 0.8;
}

.produkt-avgransning {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 40px 0;
    opacity: 0.3;
}

/* ============================= */
/* KONTAKTFORMULÄR - PRODUKTER */
/* ============================= */

.kontakt-formular-sektion {
    max-width: 600px;
    margin: 60px auto 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f3ef07 0%, #2c5282 25%, #3a6ea5 50%, #4a8bc4 75%, #5aa8e3 100%);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.kontakt-formular-sektion h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
    color: #ffffff;
}

.kontakt-formular-sektion > p {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 16px;
}

.produkt-formular {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
     color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--blue-3);
    border-radius: 8px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.skicka-knapp {
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    background: var(--gold);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.skicka-knapp:hover {
    background: var(--blue-5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 95, 154, 0.3);
}

/* ============================= */
/* PRODUKTSIDA - HERO */
/* ============================= */

.produkter-hero {
    background: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    color: var(--white);
    text-align: center;
    padding: 120px 20px 60px;
    margin-top: 80px;
}

.produkter-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.produkter-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================= */
/* FRAKT & ÅNGERRÄTT - KRYSSRUTA */
/* ============================= */

.frakt-och-angerratt {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.frakt-och-angerratt input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    transform: scale(1.1);
}

.frakt-och-angerratt label {
    font-size: 13px;
    line-height: 1.4;
    color: #555;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

/* ============================= */
/* MOBILANPASSNING - PRODUKTER */
/* ============================= */

@media (max-width: 768px) {
    .produkter-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .produkt-sektion h2 {
        font-size: 20px;
        margin: 20px 15px 12px;
    }
    
    .produkt-beskrivning {
        padding: 0 20px 15px;
        font-size: 14px;
    }
    
    .fakta-ruta {
        margin: 0 20px 15px;
        padding: 12px;
    }
    
    .fakta-ruta li {
        font-size: 13px;
    }
    
    .bestallningsknapp {
        margin: 12px 20px 15px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .juridisk-notis {
        padding: 0 20px 15px;
        font-size: 11px;
    }
    
    .produkt-image {
        height: 220px;
    }
    
    .kontakt-formular-sektion {
        margin: 40px 15px 30px;
        padding: 30px 20px;
    }
    
    .kontakt-formular-sektion h2 {
        font-size: 24px;
    }
    
    .kontakt-formular-sektion > p {
        font-size: 15px;
    }
    
    .produkter-hero {
        padding: 100px 15px 50px;
    }
    
    .produkter-hero h1 {
        font-size: 32px;
    }
    
    .produkter-hero p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .produkt-image {
        height: 180px;
    }
    
    .produkt-sektion h2 {
        font-size: 18px;
    }
    
    .produkt-beskrivning {
        font-size: 13px;
    }
    
    .kontakt-formular-sektion {
        padding: 25px 15px;
    }
    
    .produkter-hero h1 {
        font-size: 28px;
    }
}

/* ============================= */
/* GRUNDINSTÄLLNINGAR */
/* ============================= */

:root {
    --blue-1: #e9f3fb;
    --blue-2: #cfe4f4;
    --blue-3: #9fc3e6;
    --blue-4: #5f8fc9;
    --blue-5: #2f5f9a;

    --gold: #bfa76a;
    --pink-soft: #e6c9d3;

    --text-dark: #2c2c2c;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================= */
/* FONTER - NYTT */
/* ============================= */

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
}

body,
.honor-page,
.hanar-page,
.kattungar-page,
.kontakt-page,
.vagen-till-katten-page,
p,
.nav a,
.cat-card p,
.modal-content label,
.modal-content input,
.modal-content textarea,
.send-btn,
.interest-btn,
.more-info-btn,
.back-button,
.planned-litters-btn,
.form-group label,
.contact-info p,
.social-link span {
    font-family: "Inter", sans-serif;
}

/* ============================= */
/* GLOBAL BAKGRUND – ALLA SIDOR */
/* ============================= */

html {
    height: 100%;
}

body,
.honor-page,
.hanar-page,
.kattungar-page,
.kontakt-page,
.vagen-till-katten-page {
    font-family: "Inter", sans-serif;
    background: linear-gradient(
        180deg,
        var(--blue-1) 0%,
        var(--blue-2) 25%,
        var(--blue-3) 50%,
        var(--blue-4) 75%,
        var(--blue-5) 100%
    );
    color: #2c2c2c;
    min-height: 100%;
    background-position: 0 -80px;
}

/* ============================= */
/* HEADER & MENY */
/* ============================= */

.header {
    background: var(--white);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    letter-spacing: 2px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 300;
}

.nav a:hover,
.nav a.active {
    color: var(--blue-5);
}

/* ============================= */
/* HERO – ALLA SIDOR */
/* ============================= */

.hero,
.page-hero,
.honor-hero,
.hanar-hero,
.kattungar-hero,
.kontakt-hero {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(
        135deg,
        var(--blue-3),
        var(--blue-4),
        var(--blue-2)
    );
    color: #f7f5f2;
}

.hero h1,
.page-hero h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
}

/* ============================= */
/* GRID & KORT */
/* ============================= */

.cat-grid {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.cat-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    padding-bottom: 25px;
    position: relative;
    border: 3px solid var(--gold);
    background-clip: padding-box;
}

/* Dekorativ inre ram */
.cat-card::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.cat-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Special styling for planned litter images */
.kitten-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
}

.cat-card h2 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
}

.cat-card p {
    font-size: 15px;
    line-height: 1.6;
    padding: 10px 20px;
}

/* ============================= */
/* STATUS (KATTUNGAR) */
/* ============================= */

.status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #f7f5f2;
}

.status-ledig { background: #3f6f8f; }
.status-reserverad { background: #bfa76a; }
.status-sald { background: #9ca3af; }

/* ============================= */
/* INTRESSEANMÄLAN */
/* ============================= */

.interest-btn {
    margin-top: 15px;
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    background: var(--gold);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.interest-btn:hover {
    background: #244b7c;
}

/* ============================= */
/* MODAL */
/* ============================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

.modal-content {
    background: var(--white);
    max-width: 420px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.modal-content label {
    display: block;
    font-size: 14px;
    margin-top: 12px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.send-btn {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    border-radius: 25px;
    border: none;
    background: var(--blue-4);
    color: #f7f5f2;
    font-size: 15px;
    cursor: pointer;
}

.close {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 22px;
    cursor: pointer;
}

/* ============================= */
/* KONTAKT */
/* ============================= */

.contact-site-logo {
    filter: brightness(0) saturate(100%) invert(81%) sepia(47%) saturate(613%) hue-rotate(329deg) brightness(93%) contrast(88%);
}

.contact-wrapper {
    max-width: 1100px;
    margin: 180px auto 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Honeypot */
.honeypot {
    display: none;
}

/* ============================= */
/* LOGOTYP */
/* ============================= */

.logo img {
    max-height: none;
    display: block;
}

/* Meny-logga - dubbelt så stor */
.logo-top-right .site-logo {
    height: 280px;
    width: auto;
    opacity: 1;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.site-logo {
    height: 140px;
    width: auto;
    opacity: 1;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.site-logo:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(47, 95, 154, 0.35);
}

@media (max-width: 768px) {
    .site-logo {
        height: 100px;
    }
    
    /* Meny-logga mobil - dubbelt så stor */
    .logo-top-right .site-logo {
        height: 200px;
    }
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* MENY-ANIMATION */
/* ============================= */

.nav a {
    opacity: 0;
    transform: translateY(-6px);
    animation: menuFadeIn 0.8s ease-out forwards;
}

.nav a:nth-child(1) { animation-delay: 0.6s; }
.nav a:nth-child(2) { animation-delay: 0.75s; }
.nav a:nth-child(3) { animation-delay: 0.9s; }
.nav a:nth-child(4) { animation-delay: 1.05s; }
.nav a:nth-child(5) { animation-delay: 1.2s; }

@keyframes menuFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburgarikon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobilmeny */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-wrap: wrap;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        z-index: 1001;
        order: 2;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        margin: 10px 0;
    }
    
    /* Logo-positionering på mobil - till vänster om hamburger */
    .header .logo-top-right {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0;
        text-align: left;
        width: auto;
        padding: 0;
        order: 1;
        margin-right: 20px;
    }
    
    .header .logo-top-right img {
        max-height: 80px;
        width: auto;
    }
}

.more-info-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold);
    color: #ffffff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-right: 10px;
}

.more-info-btn:hover {
    background: #244b7c;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.kattunge-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kattunge-link:hover {
    color: var(--blue-5);
}

.kattunge-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.parent-section {
    margin-bottom: 60px;
}

.parent-section h2 {
    color: var(--blue-5);
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
}

.parent-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(47, 95, 154, 0.1);
}

.parent-info img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.parent-text h3 {
    color: var(--blue-5);
    margin-bottom: 15px;
    font-size: 24px;
}

.parent-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.kattunge-gallery {
    margin-bottom: 60px;
}

.kattunge-gallery h2 {
    color: var(--blue-5);
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(47, 95, 154, 0.1);
    position: relative;
    border: 3px solid var(--gold);
    background-clip: padding-box;
}

/* Dekorativ inre ram för galleri-bilder */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item p {
    padding: 20px;
    margin: 0;
    text-align: center;
    color: var(--text-dark);
}

.kattunge-info {
    margin-bottom: 60px;
}

.kattunge-info h2 {
    color: var(--blue-5);
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(47, 95, 154, 0.1);
}

.info-item h3 {
    color: var(--blue-5);
    margin-bottom: 15px;
    font-size: 20px;
}

.info-item p {
    line-height: 1.6;
}

.kattunge-details {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(47, 95, 154, 0.1);
    margin-bottom: 40px;
}

.kattunge-details h3 {
    color: var(--blue-5);
    margin-bottom: 15px;
    font-size: 20px;
}

.interest-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(47, 95, 154, 0.1);
    text-align: center;
}

.interest-section h3 {
    color: var(--blue-5);
    margin-bottom: 15px;
    font-size: 20px;
}

.interest-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .parent-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .parent-info img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobilanpassning för bilder */
    .cat-card img {
        height: 250px;
        object-fit: contain;
        object-position: center;
        background-color: #f8f9fa;
    }
    
    .kitten-card img {
        height: 250px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

.back-button-container {
    text-align: center;
    margin: 30px 0;
}

.back-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-button:hover {
    background: #244b7c;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.back-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .back-button {
        padding: 14px 24px;
        font-size: 15px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .back-button {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 100px;
    }
    
    /* Extra mobilanpassning för bilder */
    .cat-card img {
        height: 200px;
        object-fit: contain;
        object-position: center;
        background-color: #f8f9fa;
    }
    
    .kitten-card img {
        height: 200px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .parent-info img {
        max-width: 250px;
    }
}

.planned-litters-container {
    text-align: center;
    margin: 40px 0;
}

.planned-litters-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.planned-litters-btn:hover {
    background: #244b7c;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer {
    background: var(--blue-5);
    color: #f7f5f2;
    text-align: center;
    padding: 30px 20px;
    width: 100%;
    margin: 0;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-line {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.footer-line:last-child {
    margin-bottom: 0;
}

.footer a {
    color: #f7f5f2;
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-company {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold);
}

.footer-links {
    margin-top: 8px;
    font-size: 13px;
}

.footer-links a {
    color: #f7f5f2;
    text-decoration: none;
    margin: 0 8px;
}

.footer-links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ============================= */
/* HERO MED BAKGRUNDSBILD */
/* ============================= */

.hero-image {
    min-height: 85vh;
    background-image: url("images/adel.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    color: #f7f5f2;
    max-width: 900px;
    padding: 20px;
    margin-top: 550px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 18px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-image {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .hero-overlay h1 {
        font-size: 34px;
    }

    .hero-overlay p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        min-height: 60vh;
        background-position: top center;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-overlay p {
        font-size: 14px;
    }
}

/* ============================= */
/* FORMULÄR – STRUKTUR */
/* ============================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
}

.form-consent {
    margin-top: 25px;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

/* ============================= */
/* LOGGA I HERO-BILD */
/* ============================= */

.hero-logo {
    height: 180px;          /* större än header-loggan */
    margin-bottom: 30px;
    box-shadow: none;       /* ingen glow som standard */
}


/* ============================= */
/* JUSTERING AV LOGGA I HERO */
/* ============================= */

.hero-logo {
    position: relative;
    top: -150px;        /* flyttar uppåt */
    left: 480px;        /* flyttar åt höger */

}

/* ============================= */
/* TYDLIGARE LOGGA I HERO */
/* ============================= */

.hero-logo {
    background: rgba(255, 255, 255, 0.75); /* ljus kontrast bakom loggan */
    padding: 12px 18px;
    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* Ta bort loggan i menyraden (headern) */
.header .logo {
    display: none;
}

/* Visa loggan centrerad i menyraden */
.header .logo-top-right {
    display: block;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.header .logo-top-right img {
    max-height: 120px;
    width: auto;
}

/* ============================= */
/* SOCIALA MEDIER LÄNKAR */
/* ============================= */

.social-links {
    padding: 60px 20px;
    background: var(--blue-1);
    text-align: center;
}

.social-container h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: var(--white);
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .social-links {
        padding: 40px 15px;
    }
    
    .social-container h2 {
        font-size: 24px;
    }
    
    .social-icons {
        gap: 30px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 20px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
}

/* Centrera texten endast på startsidan */
.home-page .content {
    text-align: center;
    margin-top: 70px;
}

/* Mer mellanrum mellan stycken på hemsidan */
.home-page .content {
    margin-bottom: 60px;
}

/* Lås hero-loggans position på mobil så den matchar desktop */
@media (max-width: 768px) {
    .hero-overlay {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

 
}

/* ============================= */
/* MENY – INRAMAD STIL (VALD) */
/* ============================= */

.nav a {
    color: #ffffff;                     /* vit text på guld */
    background: var(--gold);             /* guld box */
    border: 1px solid #2f2f2f;       /* tunn mörk ram */
    border-radius: 12px;             /* rundade hörn */
    padding: 6px 14px;               /* luft runt texten */
    margin-left: 12px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.18); /* mjuk skugga */
}

/* Hover – lite tydligare men samma stil */
.nav a:hover {
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Aktiv sida – något tydligare ram */
.nav a.active {
    border-color: #bfa76a;
}

/* SÄKER MOBILPLACERING AV AB-LOGGA (ENDast mobil) */
@media (max-width: 768px) {
    .hero-image {
        position: relative;
    }

    .hero-image .hero-logo {
        position: absolute;
        top: 16px;
        right: 16px;
        left: auto;
        margin: 0;
        z-index: 10;
    }
}
/* Flytta menyfältet till högra hörnet */
.header {
    justify-content: flex-end;
}

.header .nav {
    margin-left: auto;
}

/* ENDA mobilregeln för AB-loggan */
@media (max-width: 768px) {
    .hero-image {
        position: relative;
    }

    .hero-image .hero-logo {
        position: absolute;
        top: 12px;      /* uppåt */
        right: 12px;    /* åt höger */
        left: auto;
        margin: 0;
        z-index: 10;
    }
}
.vagen-till-katten-page {
  margin: 0;
  padding: 0;
  width: 100%;
}

.vagen-till-katten-page .content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.vagen-till-katten-page .content h2 {
  margin-bottom: 20px;
}

.download-list {
  list-style: none;
  padding: 0;
}

.download-list li {
  margin-bottom: 12px;
}

.download-list a {
  display: inline-block;
  padding: 12px 18px;
  background-color: #bfa76a;
  color: #f7f5f2;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.download-list a:hover {
  background-color: #9a8655;
}

/* ============================= */
/* LIGHTBOX */
/* ============================= */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: pointer;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    text-decoration: none;
}

.lightbox-close:hover {
  color: #bfa76a;
}

/* ============================= */
/* INFO VILLKOR SPACING */
/* ============================= */

.info-villkor p {
    margin-bottom: 1.6em;
    line-height: 1.7;
}

.info-villkor h2,
.info-villkor h3 {
    margin-top: 2.5em;
    margin-bottom: 1em;
}

/* ============================= */
/* COOKIE CONSENT BANNER */
/* ============================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blue-5);
    color: #f7f5f2;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-banner-text p {
    margin: 0 0 10px 0;
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-accept {
    background: var(--gold);
    color: white;
}

.cookie-btn-accept:hover {
    background: #9a8655;
}

.cookie-btn-decline {
    background: transparent;
    color: #f7f5f2;
    border: 1px solid #f7f5f2;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.cookie-btn-settings:hover {
    background: var(--gold);
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
    }
    
    .cookie-banner-text {
        min-width: auto;
    }
}

/* ============================= */
/* FORM LINK STYLING */
/* ============================= */

.form-consent a {
    color: #000000 !important;
}

/* ============================= */
/* RECAPTCHA STYLING */
/* ============================= */

.g-recaptcha {
    margin: 20px 0;
    transform: scale(0.9);
    transform-origin: left top;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.8);
        transform-origin: left top;
    }
}

/* ============================= */
/* BLUEYS BILDSEKTION - HORISONTELL LAYOUT */
/* ============================= */

.blueys-horizontal-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.blueys-horizontal-container .blueys-container {
    flex: 1;
    min-width: 300px;
}

.blueys-horizontal-container .blueys-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .blueys-horizontal-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .blueys-horizontal-container .blueys-container {
        min-width: auto;
    }
}

/* ============================= */
/* BLUEYS BILDSEKTION */
/* ============================= */

.blueys-section {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
}

.blueys-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.blueys-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================= */
/* UNDER CONSTRUCTION */
/* ============================= */

.under-construction {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    background-color: var(--blue-1);
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.under-construction h2 {
    color: var(--blue-5);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.under-construction p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================= */
/* HOME PAGE TEXT BOXES */
/* ============================= */

.home-text-box {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, var(--white) 0%, var(--blue-1) 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(47, 95, 154, 0.15);
    position: relative;
    overflow: hidden;
}

.home-text-box::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 2px solid var(--gold);
    border-radius: 17px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.home-text-box h1 {
    color: var(--blue-5);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.home-text-box h2 {
    color: var(--blue-5);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.home-text-box p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.home-text-box p:last-child {
    margin-bottom: 0;
}

.home-text-box p strong {
    color: var(--blue-5);
    font-weight: 600;
}

@media (max-width: 768px) {
    .home-text-box {
        margin: 0 20px 30px 20px;
        padding: 25px 20px;
    }
    
    .home-text-box h2 {
        font-size: 1.6rem;
    }
    
    .home-text-box p {
        font-size: 1rem;
    }
}

.home-text-box img.site-logo {
    display: block;
    margin: 20px auto 0 auto;
    height: 280px;
    width: auto;
}

.content {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(
        180deg,
        var(--blue-1) 0%,
        var(--blue-2) 25%,
        var(--blue-3) 50%,
        var(--blue-4) 75%,
        var(--blue-5) 100%
    );
    border-radius: 12px;
    margin: 40px 0;
}

/* ============================= */
/* OM OSS TEXT BOX */
/* ============================= */

.om-oss-box {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--white) 0%, var(--blue-1) 100%);
    border: 4px solid var(--gold);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.om-oss-box h2 {
    color: var(--blue-5);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.om-oss-box p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 15px;
}

.om-oss-box h3 {
    color: var(--blue-5);
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    text-align: center;
}

.om-oss-box ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.om-oss-box li {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .om-oss-box {
        margin: 30px auto;
        padding: 30px 25px;
    }
    
    .om-oss-box h2 {
        font-size: 1.6rem;
    }
    
    .om-oss-box p {
        font-size: 0.9rem;
    }
    
    .om-oss-box h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }
}

.content h2 {
    color: var(--blue-5);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.content p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 5px auto;
}

@media (max-width: 768px) {
    .blueys-section {
        padding: 30px 15px;
    }
    
    .blueys-image {
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .under-construction {
        padding: 40px 15px;
        margin: 30px 0;
    }
    
    .under-construction h2 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
    
    .under-construction p {
        font-size: 1.1rem;
    }
    
    .content {
        padding: 40px 15px;
        margin: 30px 0;
    }
    
    .content h2 {
        font-size: 2rem;
        letter-spacing: 0.8px;
    }
    
    .content p {
        font-size: 1.1rem;
        margin: 0 auto 4px auto;
    }
}

@media (max-width: 480px) {
    .blueys-section {
        padding: 20px 10px;
    }
    
    .blueys-image {
        border-radius: 4px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
    
    .under-construction {
        padding: 30px 10px;
        margin: 20px 0;
    }
    
    .under-construction h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .under-construction p {
        font-size: 1rem;
    }
    
    .content {
        padding: 30px 10px;
        margin: 20px 0;
    }
    
    .content h2 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .content p {
        font-size: 1rem;
        margin: 0 auto 3px auto;
    }
}
