/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    scroll-behavior: smooth;
    background: #fafafa;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 4px;
    border: 2px solid #ffffff;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #888;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 4.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.therapy-room-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: #e0e0e0;
    filter: grayscale(20%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 2px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 100px 0;
}

/* Exception for bestill section which needs more padding for widget */
.bestill {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Terapi Section */
.terapi {
    background: #ffffff;
}

.terapi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.gestalterapi, .priser {
    background: #fafafa;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

.benefits ul {
    list-style: none;
    padding-left: 0;
}

.benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0366d6;
    font-weight: bold;
}

.price-card {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.price-item {
    flex: 0 1 300px;
    text-align: center;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e0e0e0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1rem 0;
    letter-spacing: -0.02em;
}

.duration {
    color: #666;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.avbestilling {
    margin-top: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e0e0e0;
}

.avbestilling h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.avbestilling p {
    color: #666;
    margin-bottom: 0;
}

/* Bestill Section */
.bestill {
    background: #1a1a1a;
    color: white;
    padding: 120px 0;
}

.bestill .section-title,
.bestill .section-subtitle {
    color: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.calendly-widget {
    background: white;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
}


/* Om Meg Section */
.om-meg {
    background: #ffffff;
}

.om-meg-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.profile-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    background: #e0e0e0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    filter: grayscale(20%);
}

.profile-text {
    padding: 2rem 0;
}

.profile-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
}

.referanser {
    margin-top: 3rem;
    padding: 2.5rem;
    background: #fafafa;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    box-shadow: none;
}

.referanser ul {
    list-style: none;
    padding-left: 0;
}

.referanser li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.referanser li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0366d6;
    font-weight: bold;
}

/* Aktuelle Temaer Section - REMOVED */

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.footer-info h4 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
}

.footer-contact a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #888;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 3rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .container,
    .nav-container {
        padding: 0 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .therapy-room-img {
        height: 400px;
    }

    .terapi-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }

    .gestalterapi, .priser {
        padding: 2.5rem;
    }

    .contact-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .om-meg-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 20px;
    }

    .profile-img {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }

    .hero-cta {
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }
    
    .bestill {
        padding: 80px 0;
    }

    /* Calendly mobile optimization - increased height for better visibility */
    .calendly-inline-widget {
        height: 900px;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .gestalterapi, .priser {
        padding: 2rem;
    }

    .therapy-room-img,
    .profile-img {
        height: 350px;
    }

    /* Calendly small mobile optimization - increased height for better visibility */
    .calendly-inline-widget {
        height: 850px;
    }

    .calendly-widget {
        border-radius: 0;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .btn {
        transition: all 0.3s ease;
    }

    .hero-content {
        animation: fadeInUp 1s ease-out;
    }

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 3px;
}

/* Animation styles */
.gestalterapi,
.priser,
.calendly-widget {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.nav-link.active {
    color: #888;
}

.nav-link.active::after {
    width: 100%;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: white;
    }
    
    .bestill {
        background: #000;
    }

    body {
        background: #ffffff;
    }
}

/* Additional price card mobile styles */
@media (max-width: 768px) {
    .price-card {
        flex-direction: column;
        gap: 1rem;
    }
}
