/* Custom CSS for Nähtechnik Dalke */

/* roboto-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/roboto-v47-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../webfonts/roboto-v47-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

.bg-black {
    background-color: #999 !important;
}

.text-white a {
    color: #fff;
}

.text-white a:hover {
    color: #ccc;
}

/* Header Styles */
header {
    border-bottom: 1px solid #eee;
}

.logo-container h1 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
}

/* Contact Card */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Map Container */
.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.placeholder-map {
    height: 100%;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Footer */
footer {
    border-top: 1px solid #333;
}

footer .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .logo-container, .contact-info {
        text-align: center;
    }
}
