/* ==========================================
   Contact Page Styles
   Extracted from kontakt.html inline styles
   ========================================== */

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

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid #17A2B8;
}

.contact-header h1 {
    color: #17A2B8;
    font-size: 42px;
    font-family: 'Lora', serif;
    margin: 0 0 15px 0;
}

.contact-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info-section h2 {
    color: #2C3E50;
    font-size: 28px;
    font-family: 'Lora', serif;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #17A2B8;
}

/* Info Items */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #F8F9FA;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #E8F5F7;
    transform: translateX(5px);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #17A2B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.info-details {
    flex: 1;
}

.info-details h3 {
    color: #17A2B8;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-details p {
    color: #2C3E50;
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

.info-details a {
    color: #2C3E50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: #17A2B8;
    text-decoration: underline;
}

/* Opening Hours List */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: #F8F9FA;
    border-radius: 6px;
    color: #2C3E50;
    font-size: 16px;
}

.hours-list li:nth-child(even) {
    background: white;
}

.hours-list .day {
    font-weight: 600;
    color: #17A2B8;
}

.hours-list .time {
    color: #2C3E50;
}

.hours-list .closed {
    color: #999;
    font-style: italic;
}

/* Map Section */
.map-section {
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.map-section h2 {
    color: #2C3E50;
    font-size: 28px;
    font-family: 'Lora', serif;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #17A2B8;
    text-align: center;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.contact-container .cta-section {
    background: linear-gradient(135deg, #17A2B8 0%, #148A9B 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.3);
}

.contact-container .cta-section h2 {
    color: white;
    font-size: 32px;
    font-family: 'Lora', serif;
    margin: 0 0 20px 0;
}

.contact-container .cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.contact-container .btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-container .btn-white {
    background: white;
    color: #17A2B8;
    border: 2px solid white;
}

.contact-container .btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Social Links */
.contact-container .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-container .social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-container .social-link:hover {
    background: white;
    transform: translateY(-3px);
}

.contact-container .social-link svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-container .social-link:hover svg {
    fill: #17A2B8;
}

/* Warning Box */
.contact-warning-box {
    margin-top: 30px;
    padding: 20px;
    background: #FFF9E6;
    border-left: 4px solid #FFB800;
    border-radius: 6px;
}

.contact-warning-box p {
    margin: 0;
    color: #2C3E50;
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================
   Contact Page Responsive Styles
   ========================================== */

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .contact-info-section {
        padding: 25px;
    }

    .contact-info-section h2 {
        font-size: 24px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .map-container {
        height: 350px;
    }

    .contact-container .cta-section {
        padding: 40px 25px;
    }

    .contact-container .cta-section h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h1 {
        font-size: 28px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .map-container {
        height: 300px;
    }

    .contact-container .btn {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
    }
}
