﻿        body {
		margin: 0;
		font-family: 'Poppins', sans-serif;
		color: #333;
		background: #f9f7f4;
		font-size: 12px;
	}
        a { text-decoration: none; }
        h1, h2, h6 { font-family: 'Playfair Display', serif; }

        /* Fast top-bar med god afstand */
        .top-bar {
            background: rgba(255,255,255,0.95);
            padding: 25px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }
        .top-nav a {
            color: #555;
            margin-left: 35px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .top-nav a:hover { color: #e69550; }

        header {
            position: relative;
            background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65)), url('Images/IMG_3148-1024x683.jpg') center/cover no-repeat;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .logo {
            text-align: center;
            padding: 100px 0 50px;
        }
        .logo img { max-width: 480px; height: auto; }

        .main-nav {
            text-align: center;
            padding: 40px 0 60px;
        }
        .main-nav a {
            color: #fff;
            margin: 0 40px;
            font-weight: 600;
            font-size: 1.2em;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -12px;
            left: 50%;
            background: #e69550;
            transition: all 0.4s;
        }
        .main-nav a:hover::after { width: 100%; left: 0; }

        .hero-text {
            text-align: center;
            color: #fff;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 40px;
        }
        .hero-text h1 { font-size: 5.5em; margin: 0; text-shadow: 0 5px 20px rgba(0,0,0,0.5); }
        .hero-text p { font-size: 2.4em; margin: 25px 0 0; text-shadow: 0 3px 10px rgba(0,0,0,0.5); }

        .order-box {
            background: rgba(255,255,255,0.96);
            color: #333;
            max-width: 600px;
            margin: 0 auto 160px;
            padding: 70px;
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.18);
            text-align: center;
        }
        .order-box h2 { font-size: 3em; margin-bottom: 30px; color: #d65e69; }
        .order-box p { font-size: 1.4em; line-height: 1.8; margin-bottom: 40px; }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #e69550, #f4a261);
            color: #fff;
            padding: 20px 60px;
            border-radius: 60px;
            font-size: 1.5em;
            font-weight: 600;
            box-shadow: 0 10px 25px rgba(230,149,80,0.35);
            transition: all 0.4s;
        }
        .btn:hover {
            background: linear-gradient(135deg, #d68445, #e69550);
            transform: translateY(-6px);
            box-shadow: 0 18px 35px rgba(230,149,80,0.45);
        }

        .cakes-section {
            background: linear-gradient(135deg, #fdf4ea, #f9e4d4);
            padding: 140px 40px;
            text-align: center;
            color: #444;
        }
        .cakes-section h2 { font-size: 4em; margin: 0 0 60px; color: #d65e69; }

        /* Carousel */
        .carousel-container {
            max-width: 1400px;
            margin: 120px auto;
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        .carousel {
            position: relative;
            height: 800px;
        }
        .carousel img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        .carousel img.active { opacity: 1; }

        .carousel-prev, .carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            color: #444;
            width: 80px; height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            cursor: pointer;
            z-index: 10;
            transition: all 0.4s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .carousel-prev:hover, .carousel-next:hover {
            background: #fff;
            transform: translateY(-50%) scale(1.2);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .carousel-prev { left: 50px; }
        .carousel-next { right: 50px; }

        .carousel-dots {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }
        .carousel-dots span {
            display: inline-block;
            width: 18px; height: 18px;
            background: rgba(255,255,255,0.7);
            border-radius: 50%;
            margin: 0 12px;
            cursor: pointer;
            transition: all 0.4s;
        }
        .carousel-dots span.active {
            background: #e69550;
            transform: scale(1.5);
            box-shadow: 0 0 20px rgba(230,149,80,0.7);
        }

        footer {
            background: #2a2a2a;
            color: #ccc;
            padding: 120px 40px 60px;
        }
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
        }
        .footer-column h6 { font-size: 2em; color: #e69550; margin-bottom: 30px; }
        .footer-column p, .footer-column a { font-size: 1.2em; line-height: 1.8; }
        .footer-column a { color: #ccc; transition: color 0.4s; }
        .footer-column a:hover { color: #e69550; }

        .footer-bottom {
            text-align: center;
            margin-top: 100px;
            padding-top: 60px;
            border-top: 1px solid #444;
        }
        .footer-bottom p { font-size: 1.1em; margin-bottom: 30px; }
        .footer-bottom img { margin: 0 30px; opacity: 0.9; transition: opacity 0.4s; max-height: 60px; }
        .footer-bottom img:hover { opacity: 1; }

        @media (max-width: 768px) {
            .top-bar { flex-direction: column; padding: 25px 20px; text-align: center; }
            .top-nav { margin-top: 20px; }
            .top-nav a { display: inline-block; margin: 0 15px 15px; }
            .hero-text h1 { font-size: 3.5em; }
            .hero-text p { font-size: 1.8em; }
            .order-box { margin: 60px 20px; padding: 50px; }
            .logo { padding: 80px 0 40px; }
            .main-nav a { display: block; margin: 20px 0; font-size: 1.1em; }
            .carousel { height: 450px; }
            .cakes-section h2 { font-size: 3em; }
            .carousel-prev, .carousel-next { width: 60px; height: 60px; font-size: 2em; }
            .carousel-prev { left: 20px; }
            .carousel-next { right: 20px; }
        }
