/* Generel styling */
@font-face {
    font-family: 'Versa Versa';
    src: url('fonts/Versa-Versa.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.menu {
    font-family: 'Versa Versa', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header layout */
header {
    display: flex;
    justify-content: space-between; /* Laver tre sektioner */
    align-items: center;
    background-color: white;
    padding: 15px 20px;
    text-align: center;
}

/* Venstre og højre sektion */
.header-left, .header-right {
    flex: 1;
    text-align: center;
    font-size: 16px;
}

/* Centreret logo */
.header-center {
    flex: 1;
    text-align: center;
}

/* Logo styling */
.header-center img {
    height: 168px; /* Juster størrelsen efter behov */
    max-width: 100%;
    object-fit: contain;
}

/* Hvis skærmen er lille, skal de stables */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    .header-left, .header-center, .header-right {
        flex: none;
        text-align: center;
        margin-bottom: 5px;
    }
}
/* Kliniknavn */
.header-section h1 {
    font-size: 24px;
    font-weight: bold;
    color: #231F20;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px;
    background-color: #90e0ef;
}

.hero .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0077b6;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #023e8a;
}

/* Info Section */
.info {
    text-align: center;
    padding: 40px;
    background-color: white;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-bottom: 10px;
}

.footer-column {
    width: 500px;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-column p {
    margin: 5px 0;
    font-size: 14px;
}

.copyright {
    font-size: 12px;
    margin-top: 10px;
}


/* Navigation fylder hele bredden */
nav {
    background-color: #231F20;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

/* UL følger containerens bredde */
nav ul {
    width: 100%;
/*    max-width: 1200px;*/
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
}

/* Styling af navigationselementer */
nav ul li {
    margin: 0 15px;
}

/* Aktivt (valgt) menupunkt */
nav a.active {
    color: white;
    background-color: #231F20;
    border-radius: 5px;
}

/* Hover-effekt */
nav a:hover {
    background-color: #231F20;
    color: white;
}

.active {
    color: white;
    background-color: #231F20;
    border-radius: 5px;
}

/* Mobilversion */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 5px 0;
    }
}

.center-text {
    text-align: center;
}

.treatment-box {
    background-color: #f2f2f2; /* Lys grå baggrund */
    border-radius: 8px;        /* Bløde hjørner */
    padding: 20px;             /* Luft inde i boksen */
    margin: 20px 0;            /* Luft over og under */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Lidt skygge for dybde */
}



.booking-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}
.booking-btn:hover {
    background-color: #555;
}