@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lexend+Deca:wght@100..900&display=swap');

* {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
}

p {
	font-family: "DM Sans", sans-serif;
}

.uk-navbar {
    height: 90px;
}

.uk-logo img {
    height: 45px;
}

.uk-navbar-container {
	background: #fff !important;
	border-bottom: 1px solid #f1f1f1;
}

.uk-input, .uk-select, .uk-textarea {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
}

.uk-navbar-nav > li > a { 
font-size: 17px;
text-transform: none;
color: #1A1919;
font-weight: 500;
position: relative;
    text-decoration: none;
}

.uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 30px; 
    left: 0;
    width: 0;
    height: 2px;
    background-color: #045CF8;
    transition: width 0.2s ease-in-out;
}

.uk-navbar-nav > li > a:hover {
    color: #1A1919;
}

.uk-navbar-nav > li > a:hover::after {
    width: 100%;
}

.vc-container {
	width: 100%;
	max-width: 520px;
	margin: auto;
	background: #fff;
	min-height: 100vh;
}

.uk-section-vc {
	background: #222222;	
}

.hero {
    height: 725px;
}


.hero > .uk-grid-collapse {
    height: 100%;
}

.hero-content {
    background-color: #161515;
    height: 100%;
    color: #fafafa;
}

.hero-content h1 {
    color: #fafafa;
	font-weight: 600;
	font-size: 4.5em;
}

h2.intro-title {
	color: #1A1919;
	font-size: 3em;
	font-weight: 600;
	letter-spacing: -3px;
}

h2.vc-title {
	color: #1A1919;
	font-size: 1.8em;
	font-weight: 600;
	letter-spacing: -1px;
}

h3.service-title {
	color: #1A1919;
	font-size: 1.5em;
	font-weight: 600;
	letter-spacing: -1px;
}

.hero-image {
    background-image: url('https://images.unsplash.com/photo-1658351354155-e854d19233e0?q=80&w=1710&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Pfad anpassen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.selectable-card {
    cursor: pointer;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}
.selectable-card:hover {
    border-color: #1e87f0;
    background: #f8fbff;
    transform: translateY(-5px);
}
.selectable-card span {
    color: #1e87f0;
}


/* Der Trick für die Zentrierung der gesamten Liste */
.contact-wrapper {
    display: inline-block; /* Der Container passt sich der Breite des Inhalts an */
    text-align: left;      /* Innerhalb der Liste ist alles linksbündig (Icons in einer Linie) */
}

.icon-container {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 2px solid #1e87f0; /* Dein Blau */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e87f0;
}

.contact-item p {
    line-height: 1.5;
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px; /* Erzeugt exakt 1px Platz zwischen den Buttons */
    background-color: #666666; /* Dies wird die Farbe deiner Trennlinien */
	border-top: 1px solid #666666;
	border-bottom: 1px solid #666666;
}

.btn-vc {
    background: #fff;
    color: var(--text-main);
    padding: 10.5px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-vc span {
    font-size: 12px;
    margin-top: 8px;
    font-weight: 500;
}

.vc-foot {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    display: block;
}

.btn-primary-save {
    background: rgb(30, 135, 240);
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    padding: 18px;
    font-family: 'JetBrains Mono', monospace;
}

.btn-primary-save:hover {
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(62, 207, 142, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--accent-red);
}


@media (max-width: 1350px) {
	
	.hero-content h1 {
	font-size: 3em;
}

.hero {
        height: 600px;
    }

}

@media (max-width: 959px) {
    .hero {
        height: auto; 
		text-align: center;
    }
    .hero-image {
        height: 300px; 
    }
	
	.hero-content h1 {
	font-size: 3em;
}
}


/* Damit es auf dem Handy nicht zu weit links klebt */
@media (max-width: 640px) {
    .contact-wrapper {
        display: block;
        padding: 0 20px;
    }
	
		.hero-content h1 {
	font-size: 2em;
}

.uk-navbar {
    height: 70px;
}

.uk-logo img {
    height: 30px;
}
}



