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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Wireframe specific styles */
.wireframe-label {
    background-color: #ff6b6b;
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}

.wireframe-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 10px 15px;
    margin: 10px 0;
    font-size: 14px;
    font-style: italic;
}

/* Top Bar */
.top-bar {
    height: 20px;
    background-color: #dbc793;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 20px;
    width: 100%;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #20232c;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav-menu a:hover {
    border-bottom-color: #20232c;
}

.nav-cta {
    background-color: #20232c;
    color: white !important;
    padding: 12px 30px !important;
    border: none;
    border-bottom: none !important;
}

.nav-cta:hover {
    opacity: 0.8;
    border-bottom: none !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: #20232c;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: #20232c;
    z-index: 998;
    display: none;
    flex-direction: column;
    padding: 40px 20px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay .nav-menu {
    flex-direction: column;
    gap: 0;
}

.mobile-menu-overlay .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay .nav-menu a {
    display: block;
    padding: 20px 0;
    font-size: 18px;
    border-bottom: none !important;
    color: white !important;
}

.mobile-menu-overlay .nav-menu a.nav-cta {
    margin-top: 20px;
    padding: 15px 30px !important;
    text-align: center;
    background-color: #f3ead2;
    color: #20232c !important;
}

/* Spacer */
.spacer {
    height: 100px;
}

/* Hero Section */
.hero {
    height: 54vh;
    background-image: url('media/wallenbergare.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-70px);
    margin-top: 60px;
}

.hero-logo-img {
    max-width: 750px;
    width: 100%;
    height: auto;
    margin-top: -110px;
    margin-bottom: -150px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    display: block;
}

.hero-small {
    height: 35vh;
    background-image: url('media/grytamris2.jpg');
}

.page-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cta {
    background-color: #20232c;
    color: white;
    padding: 18px 60px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
                0 0 40px rgba(255, 255, 255, 0.2),
                0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-cta:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6),
                0 0 60px rgba(255, 255, 255, 0.3),
                0 4px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

/* Tagline Bar */
.tagline-bar {
    background-color: #f3ead2;
    padding: 30px 20px;
    text-align: center;
}

.tagline-bar p {
    font-size: 20px;
    font-style: italic;
    letter-spacing: 1px;
    max-width: 900px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Cards */
.service-cards {
    background-color: #fff;
    padding: 60px 20px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-image {
    height: 300px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-image-catering {
    background-image: url('media/surfnturf.jpg');
}

.card-image-chef {
    background-image: url('media/kottbullar.jpg');
}

.card-image-quiz {
    background-image: url('media/grytamris.jpg');
}

.card-content {
    background-color: #f3ead2;
    padding: 30px;
    text-align: center;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #20232c;
}

.card-text {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #333;
}

.card-button {
    background-color: #20232c;
    color: white;
    padding: 12px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    display: inline-block;
    transition: opacity 0.3s;
}

.card-button:hover {
    opacity: 0.8;
}

/* Welcome Section */
.welcome {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.welcome-content {
    max-width: 700px;
    margin: 0 auto;
}

.welcome h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #20232c;
}

.welcome p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Split CTA Section */
.split-cta {
    display: flex;
    min-height: 60vh;
    background-color: #20232c;
}

.split-text {
    width: 40%;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.split-text-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.split-text-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.split-image {
    width: 60%;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.split-image-ai {
    background-image: url('media/stektflask.jpg');
}

.split-image-ready {
    background-image: url('media/paneradfisk.jpg');
}

/* Feature Grid */
.features {
    background-color: #fff;
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 40px;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #20232c;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: #20232c;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #20232c;
}

.feature p {
    font-size: 16px;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background-color: #fff;
    padding: 80px 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #20232c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #20232c;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Pricing Section */
.pricing-section {
    background-color: #f3ead2;
    padding: 80px 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #20232c;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #20232c;
    color: white;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #20232c;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #20232c;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f3ead2;
    font-size: 16px;
}

.pricing-features li:before {
    content: "✓ ";
    color: #20232c;
    font-weight: bold;
    margin-right: 10px;
}

/* Perfect For Section */
.perfect-for {
    background-color: #fff;
    padding: 80px 20px;
}

/* CTA Section */
.cta-section {
    background-color: #20232c;
    color: white;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #20232c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #20232c;
}

/* Menu Gallery */
.menu-gallery {
    background-color: #fff;
    padding: 80px 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.menu-item {
    background-color: #f9f9f9;
    padding: 30px;
}

.menu-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #20232c;
}

.menu-item .menu-course {
    margin-bottom: 15px;
}

.menu-item .course-name {
    font-weight: bold;
    color: #20232c;
}

.menu-item .price-tag {
    display: inline-block;
    background-color: #20232c;
    color: white;
    padding: 8px 20px;
    margin-top: 20px;
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #f3ead2;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #20232c;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #dbc793;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 920px) {
    .navigation .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu-overlay .nav-menu {
        display: flex !important;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .split-cta {
        flex-direction: column;
    }

    .split-text,
    .split-image {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-logo-img {
        max-width: 600px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    .navigation {
        padding: 0 20px;
    }

    .hero {
        height: 40vh;
        padding: 20px 20px 40px;
    }

    .hero-logo-img {
        max-width: 420px;
        margin-top: 20px;
        margin-bottom: -100px;
    }

    .hero-cta {
        padding: 15px 40px;
        font-size: 14px;
        margin-top: 40px;
    }

    .split-text {
        padding: 40px 30px;
    }

    .split-text-content h2 {
        font-size: 32px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 18px;
    }
}
