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

body {
    font-family: 'Georgia', serif;
    background-color: #ffffff;
    color: #2d2d2d;
    line-height: 1.8;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a2a4a;
    color: #ffffff;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-btn.btn-secondary {
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn.btn-secondary:hover {
    background: #ffffff;
    color: #1a2a4a;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/omslag-fram.jpg');
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    animation: slideUp 1.5s ease-out 0.5s both;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #ffffff;
    -webkit-text-stroke: 3px #000;
    paint-order: stroke fill;
    text-shadow: 4px 6px 12px rgba(0,0,0,0.6);
}

.hero .subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: #8b5a2b;
    margin-bottom: 2rem;
}

.hero .author {
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    -webkit-text-stroke: 3px #000;
    paint-order: stroke fill;
    text-shadow: 4px 6px 12px rgba(0,0,0,0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator i {
    color: #ffffff !important;
    font-size: 2rem;
    animation: arrowBounce 1.5s infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

@keyframes arrowBounce {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(10px); }
}

/* Sections */
section {
    padding: 50px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2a4a;
    letter-spacing: 0.1em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-author {
    position: relative;
}

.about-author img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.section-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: #1a2a4a;
    text-align: left;
    margin-top: 3rem;
    line-height: 1.4;
    border-left: 3px solid #1a2a4a;
    padding-left: 20px;
    overflow-wrap: break-word;
}

.about-text p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #555;
    overflow-wrap: break-word;
}

.about-text .quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #1a2a4a;
    border-left: 3px solid #1a2a4a;
    padding-left: 20px;
    margin: 2rem 0;
}

.about-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-reverse .about-text {
    order: 1;
}

.about-reverse .about-image {
    order: 2;
}

.about-reverse .about-author {
    order: 2;
}

/* Full Width Image Section */
.full-width-image {
    padding: 0;
    max-width: none;
    margin: 0;
}

.full-width-image img {
    width: 100%;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 5%;
    max-width: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

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

.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(1) img { height: 600px; object-fit: contain; background: #ffffff; }

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 90, 43, 0.15);
}

.feature-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #8b5a2b;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #8b5a2b;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    background: #f8f9fa;
    padding: 100px 5%;
    max-width: none;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.review-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #1a2a4a;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.review-card .stars {
    color: #1a2a4a;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-card .reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card .reviewer-info h4 {
    color: #2d2d2d;
    font-size: 1rem;
}

.review-card .reviewer-info span {
    color: #888;
    font-size: 0.85rem;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 150px 5%;
    background-image: url('images/omslag-fram.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    position: relative;
    max-width: none;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.cta p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background: #1a2a4a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #243a64;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 42, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2d2d2d;
    border: 2px solid #2d2d2d;
}

.btn-secondary:hover {
    background: #2d2d2d;
    color: #ffffff;
}

/* Floating Order Button */
.floating-order-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(26, 42, 74, 0.4);
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Footer */
footer {
    background: #f8f9fa;
    padding: 60px 5% 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-link {
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-link img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

footer p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero .author { font-size: 1.6rem; }
    .about { grid-template-columns: 1fr; }
    .about-reverse { grid-template-columns: 1fr; }
    .about-reverse .about-text { order: 2; }
    .about-reverse .about-image { order: 1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 1; }
    .gallery-item:nth-child(1) img, .gallery-item:nth-child(5) img { height: 500px; }
    .features { grid-template-columns: 1fr; }
    .reviews-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 25px 5%; }
    .gallery { padding: 40px 5%; }
    .features { padding: 40px 5%; }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 0.1em;
        -webkit-text-stroke: 1px #000;
        text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
    }
    .hero .author {
        font-size: 1.2rem;
        -webkit-text-stroke: 1px #000;
        text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
    }
    .hero .subtitle { font-size: 1.1rem; }

    .section-title { font-size: 1.8rem; }
    .cta h2 { font-size: 2rem; }

    .cta { background-attachment: scroll; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .gallery-item img { height: auto; max-height: 320px; }

    .about-image img,
    .about-author img {
        height: auto;
        max-height: 360px;
    }

    .about-text p { font-size: 1.1rem; }
    .about-text .quote { font-size: 1.1rem; }
}