:root {
    --sky-blue: #56a0d3;
    --sky-blue-hover: #7bbfeb;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    background-image: radial-gradient(circle at 50% 0%, #2a2a2a, #121212);
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

header {
    position: relative;
    text-align: center;
    padding-top: 75px;
    /* Space for the overlapping profile picture */

    width: 100%;
    margin: 0 auto;
    margin-top: 25px;
}

.header-container {
    background: linear-gradient(50deg, #646464, #444444);
    border-radius: 16px;
    padding: 120px 15px 16px 15px;
    width: 90%;
    max-width: 820px;
    margin: 20px auto;
    position: relative;
    z-index: 10;
}

.profile-picture {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 10px;
    /* Half of the height to overlap */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

h1 {
    font-size: 2.2em;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.title-main {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.title-sub {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.location {
    color: #919191;
    margin: 20px 0 40px 0;
    font-size: 1em;
    font-weight: 700;
}

.description {
    font-style: italic;
    color: #cbcbcb;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0px;
    font-weight: 400;
}

main {
    width: 100%;
    max-width: 820px;
}


.player {
    width: 80%;
    display: block;
    overflow: hidden;
    position: relative;
    margin: auto;
    padding: 80px 20px 40px 20px
}

.links {
    width: 100%;

    padding: 20px;
    box-sizing: border-box;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link-button:hover {
    background-color: #555555;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.contact {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.contact h2 {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 2em;
    margin-bottom: 30px;
}

.contact-form {
    background: linear-gradient(50deg, rgba(100, 100, 100, 0.7), rgba(68, 68, 68, 0.7));
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea,
.contact button {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #555555;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 2px rgba(86, 160, 211, 0.2);
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #bbbbbb;
}

.contact button {
    background-color: var(--sky-blue);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 0;
}

.contact button:hover {
    background-color: var(--sky-blue-hover);
}

.success-message {
    color: var(--sky-blue);
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--sky-blue);
    border-radius: 5px;
    margin-top: 20px;
}

.newsletter {
    width: 100%;

    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.newsletter h2 {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 2em;
    margin-bottom: 30px;
}

.newsletter-form {
    background: linear-gradient(50deg, rgba(100, 100, 100, 0.7), rgba(68, 68, 68, 0.7));
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form h3 {
    margin-top: 0;
    font-size: 1.2em;
}

.newsletter-form form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #555555;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 2px rgba(86, 160, 211, 0.2);
}

.newsletter-form input::placeholder {
    color: #bbbbbb;
}

.newsletter-form button {
    background-color: var(--sky-blue);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 0px;
    font-size: 1em;

    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--sky-blue-hover);
}

footer {
    width: 100%;
    margin: 40px auto 0;
    padding-top: 30px;
    padding-bottom: 0px;
    box-sizing: border-box;
    text-align: center;
    background: linear-gradient(20deg, #737373, #626262);
    /*border-radius: 16px;*/
}

footer h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--sky-blue);
}

.copyright {
    margin-top: 40px;
    font-size: 0.9em;
    color: #acacac;
    text-align: right;
    padding-right: 30px;
}

@media (max-width: 768px) {





    main {
        width: 90%;
    }

    .player {
        width: 100%;
        padding: 80px 0px 40px 0px;
    }

    .links,
    .link-button,
    .contact,
    .newsletter {
        padding-left: 0px;
        padding-right: 0px;
    }
}