/*
Theme Name: Pflegedienst Coaching
Theme URI: http://yourwebsite.com/
Author: Your Name
Author URI: http://yourwebsite.com/
Description: A custom theme for Pflegedienst Coaching.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: pflegedienst-coaching
*/

/* Reset some default styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #34B1C4;
    margin-bottom: 10px;
}

p {
    color: #555;
    font-size: 1.1em;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

/* Added blur effect on thumbnail */
#videoThumbnail {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

#videoThumbnail:hover {
    filter: blur(0px); /* Remove blur when hovering */
}

.video-container iframe,
.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #34B1C4;
    color: white;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #2CAECA;
}

footer {
    background-color: #393F43;
    color: white;
    padding: 10px 0;
    margin-top: 50px;
}

footer a {
    color: #34B1C4;
    text-decoration: none;
}

/* Pop-up Form Styling */
/* Pop-up Form Styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    display: flex; /* Make sure the popup uses flexbox to center content */
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative; /* Ensure popup content is correctly positioned */
    margin: auto; /* This will center the content inside the popup */
}


.popup input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.popup button {
    background-color: #34B1C4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #2CAECA;
}