/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #16A34A;
    --green-dark: #15803D;
    --green-light: #22C55E;
    --white: #FFFFFF;
    --off-white: #F6FFF8;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #CCCCCC;
    --gray-bg: #F5F5F5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Placeholder (tomme felter til dig) */
.placeholder::before {
    content: "";
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: var(--green-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo-slogan {
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--green-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gray-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--white);
    color: var(--green-primary);
}

.btn-primary:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--green-primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Features */
.features {
    padding: 3rem 0;
    background-color: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--green-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* How it works */
.how-it-works {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--green-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--green-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Services */
.services {
    padding: 4rem 0;
    background-color: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--green-primary);
}

.service-card h3 {
    color: var(--green-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Bike Rental */
.bike-rental {
    padding: 4rem 0;
    background-color: var(--off-white);
}

.rental-highlight {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-primary);
    margin: 1rem 0 0.5rem;
}

.rental-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.rental-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

.rental-main {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rental-main h3 {
    color: var(--green-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.rental-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.rental-main p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.rental-offers-title {
    color: var(--green-primary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.rental-offers {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.rental-offers li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.rental-offers li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.rental-closing {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.rental-slogan {
    color: var(--green-primary);
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.rental-rules {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 10px;
    border-left: 4px solid var(--green-primary);
}

.rental-rules-title {
    color: var(--green-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.rental-rules-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.rental-rules-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rental-rules-list li:last-child {
    border-bottom: none;
}

.rental-rules-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

/* Location */
.location {
    padding: 4rem 0;
    background-color: var(--white);
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-feature {
    padding: 1.5rem;
    background-color: var(--off-white);
    border-radius: 10px;
}

.location-feature strong {
    color: var(--green-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* About */
.about {
    padding: 4rem 0;
    background-color: var(--off-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--green-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-list {
    list-style: none;
    margin: 1rem 0;
}

.about-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.service-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    min-height: 2.25rem;
}

.old-price {
    font-size: 1.5rem;
    color: var(--gray-medium);
    text-decoration: line-through;
    min-width: 6ch;
}

.new-price {
    font-size: 2rem;
    color: var(--green-primary);
    font-weight: 700;
    min-width: 6ch;
}

.service-description {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-list {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: 700;
}

/* CTA */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 1.25rem 1.25rem;
    margin-bottom: 1rem;
}

.faq-question {
    color: var(--green-primary);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--gray-medium);
}

/* Contact */
.contact {
    padding: 4rem 0;
    background-color: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.contact-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--green-primary);
    margin-bottom: 0.25rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.form-note {
    margin-top: 0.75rem;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding: 3rem 0 1.5rem;
    background-color: #0B2E13;
    color: rgba(255, 255, 255, 0.92);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 0.75rem;
    color: #BBF7D0;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-left: 1rem;
}

.footer-legal a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    padding: 1rem 1rem;
    display: none;
    z-index: 2000;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-buttons a {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
}

.cookie-buttons a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        right: 20px;
        top: 72px;
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 1rem;
        display: none;
        min-width: 220px;
    }

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


