/* Grundläggande återställning och variabler för uterum webbsida */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --uterum-beige: #F5F0E8;
    --uterum-blue: #4A90A4;
    --uterum-yellow: #F4D03F;
    --uterum-dark-blue: #2C5F7A;
    --uterum-light-beige: #FAFAF5;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Grundläggande typografi för inglasade uterum */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--uterum-light-beige);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

h1 { 
    font-size: 2.5rem;
    color: var(--uterum-dark-blue);
    border-bottom: 3px solid var(--uterum-yellow);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h2 { 
    font-size: 2rem;
    color: var(--uterum-blue);
    margin-top: 2rem;
}

h3 { 
    font-size: 1.5rem;
    color: var(--uterum-dark-blue);
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Logo design för uterum företag */
.uterum-logo {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--uterum-blue), var(--uterum-dark-blue));
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.uterum-logo:before {
    content: '⌂';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.8;
}

.uterum-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
}

/* Navigering för uterum sidor */
.navigation-uterum {
    background: var(--uterum-beige);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--uterum-blue);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--uterum-yellow);
    transition: width 0.3s ease;
}

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

/* Hamburgermeny för mobil inglasning */
.hamburger-uterum {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-uterum span {
    width: 25px;
    height: 3px;
    background: var(--uterum-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Huvudinnehåll för uterum */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Hero sektion för uterum Vellinge */
.hero-uterum {
    background: linear-gradient(135deg, var(--uterum-blue), var(--uterum-dark-blue));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.hero-uterum:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><path d="M30,40 L70,40" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-uterum h1 {
    font-size: 3rem;
    border: none;
    color: white;
    margin-bottom: 1rem;
}

.hero-uterum p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Knappar för uterum offert */
.btn-uterum {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--uterum-yellow);
    color: var(--text-dark);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-uterum:hover {
    background: #F1C40F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 208, 63, 0.4);
}

.btn-uterum:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.btn-uterum:hover:before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: var(--uterum-blue);
    color: white;
}

.btn-secondary:hover {
    background: var(--uterum-dark-blue);
}

/* Tabeller för uterum information */
.uterum-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.uterum-table th {
    background: var(--uterum-blue);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.uterum-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.uterum-table tr:nth-child(even) {
    background: var(--uterum-light-beige);
}

.uterum-table tr:hover {
    background: rgba(74, 144, 164, 0.1);
}

/* Informationsrutor för uterum tips */
.info-box-uterum {
    background: var(--uterum-light-beige);
    border-left: 5px solid var(--uterum-yellow);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow);
}

.info-box-uterum h4 {
    color: var(--uterum-dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.remember-box {
    background: rgba(74, 144, 164, 0.1);
    border-left: 5px solid var(--uterum-blue);
}

/* Listor för uterum fördelar */
.uterum-list {
    list-style: none;
    padding-left: 0;
}

.uterum-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    margin-bottom: 0.5rem;
}

.uterum-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--uterum-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.numbered-list {
    counter-reset: uterum-counter;
}

.numbered-list li:before {
    content: counter(uterum-counter);
    counter-increment: uterum-counter;
    background: var(--uterum-yellow);
    color: var(--text-dark);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Grid layout för uterum fördelar */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--uterum-blue);
    margin-bottom: 1rem;
}

/* Formulär för uterum offert */
.form-uterum {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--uterum-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

.spam-protection {
    background: var(--uterum-light-beige);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    text-align: center;
}

/* Footer för uterum webbsida */
.footer-uterum {
    background: var(--uterum-dark-blue);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 2rem;
    align-items: start;
}

.footer-services {
    list-style: none;
}

.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-services a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services a:hover {
    color: var(--uterum-yellow);
}

.footer-address {
    text-align: right;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    min-width: 200px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
    color: rgba(255,255,255,0.6);
}

/* Mobiloptimering för inglasade uterum */
@media (max-width: 768px) {
    .hamburger-uterum {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--uterum-beige);
        flex-direction: column;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-container {
        flex-wrap: wrap;
        position: relative;
    }

    .hero-uterum h1 {
        font-size: 2rem;
    }

    .hero-uterum {
        padding: 2rem 1rem;
    }

    .main-content {
        padding: 1rem;
        margin-top: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

    .footer-address {
        text-align: center;
    }

    .uterum-table {
        font-size: 0.9rem;
    }

    .uterum-table th,
    .uterum-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .btn-uterum {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }

    .form-uterum {
        padding: 1rem;
    }

    .hero-uterum h1 {
        font-size: 1.8rem;
    }
}