/* Pool Malmö CSS - Poolanläggning stilmall */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

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

/* Vattenrening header */
.pool-header {
    background: linear-gradient(135deg, #E6E6FA 0%, #87CEEB 50%, #FFE4B5 100%);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Grävning navigation */
.pool-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Betonggjutning logo */
.pool-logo {
    font-size: 28px;
    font-weight: bold;
    color: #2c5aa0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.pool-logo::before {
    content: '';
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #87CEEB, #4682B4);
    border-radius: 50%;
    margin-right: 10px;
    border: 3px solid #fff;
}

/* Filtreringsmeny */
.pool-menu {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 10px 0;
}

.pool-menu a {
    color: #2c5aa0;
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    transition: all 0.3s;
    font-weight: 500;
}

.pool-menu a:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

/* Vattencirkulation hero */
.pool-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #87CEEB, #E6E6FA);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pool-hero-text {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
    background: rgba(44, 90, 160, 0.8);
    border-radius: 10px;
}

.pool-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Poolinstallation innehåll */
.pool-content {
    background: white;
    padding: 40px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pool-content h2 {
    color: #2c5aa0;
    margin: 30px 0 15px;
    font-size: 1.8em;
    border-bottom: 2px solid #87CEEB;
    padding-bottom: 10px;
}

.pool-content h3 {
    color: #4682B4;
    margin: 25px 0 15px;
    font-size: 1.4em;
}

.pool-content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Markarbete CTA-knappar */
.pool-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #4682B4);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin: 20px 10px 20px 0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.pool-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.pool-cta-secondary {
    background: linear-gradient(135deg, #FFE4B5, #FFD700);
    color: #333;
}

/* Poolskötsel bilder */
.pool-image {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
    background: linear-gradient(135deg, #E6E6FA, #87CEEB);
    height: 200px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.pool-image::after {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5em;
    text-align: center;
    padding: 20px;
    background: rgba(44, 90, 160, 0.7);
    border-radius: 10px;
}

/* Anläggning subheaders */
.pool-subheader {
    background: linear-gradient(135deg, #FFE4B5, #87CEEB);
    height: 150px;
    margin: 30px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pool-subheader::after {
    content: attr(alt);
    color: #2c5aa0;
    font-size: 1.3em;
    font-weight: bold;
    background: rgba(255,255,255,0.9);
    padding: 15px 25px;
    border-radius: 10px;
}

/* Poolrenovering tabell */
.pool-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pool-table th {
    background: #2c5aa0;
    color: white;
    padding: 12px;
    text-align: left;
}

.pool-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #ddd;
}

.pool-table tr:hover {
    background: #f5f5f5;
}

/* Simbasssäng formulär */
.pool-form {
    background: linear-gradient(135deg, #E6E6FA, #FFE4B5);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.pool-form h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.pool-form-group {
    margin-bottom: 20px;
}

.pool-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.pool-form input,
.pool-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #87CEEB;
    border-radius: 5px;
    font-size: 16px;
}

.pool-form button {
    background: #2c5aa0;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.pool-form button:hover {
    background: #4682B4;
    transform: translateY(-2px);
}

/* Vattenbehandling lista */
.pool-list {
    list-style: none;
    margin: 20px 0;
}

.pool-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pool-list li::before {
    content: '▸';
    position: absolute;
    left: 10px;
    color: #2c5aa0;
    font-weight: bold;
}

/* Poolservice footer */
.pool-footer {
    background: #2c5aa0;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.pool-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.pool-footer h3 {
    margin-bottom: 15px;
    color: #FFE4B5;
}

.pool-footer a {
    color: #87CEEB;
    text-decoration: none;
}

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

.pool-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4682B4;
    margin-top: 20px;
}

/* Poolvärmepump områden */
.pool-areas {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10படுlo;
    margin: 30px 0;
}

.pool-areas h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.pool-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.pool-areas-grid span {
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #87CEEB;
    text-align: center;
    transition: all 0.3s;
}

.pool-areas-grid span:hover {
    background: #87CEEB;
    color: white;
}

/* Klorsystem spamskydd */
.pool-captcha {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border: 2px solid #87CEEB;
}

.pool-captcha label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Mobilanpassning pooldesign */
@media (max-width: 768px) {
    .pool-hero h1 {
        font-size: 2em;
    }
    
    .pool-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pool-menu {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .pool-menu a {
        display: block;
        text-align: center;
    }
    
    .pool-content {
        padding: 20px 15px;
    }
    
    .pool-table {
        font-size: 14px;
    }
    
    .pool-table th,
    .pool-table td {
        padding: 8px;
    }
    
    .pool-footer-content {
        grid-template-columns: 1fr;
    }
    
    .pool-areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}