* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #fff;  /* Plain background for body */
    color: #000;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;  /* Prevent horizontal scroll */
}

/* Move the background to a separate overlay div */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
                url('background.jpg');
    background-size: 150% 150%;
    background-position: center 40%;
    filter: blur(50px);
    z-index: -2;
    margin: -20px;  /* Prevent blur edges from showing */
}

/* Remove the existing container::before */
.container::before {
    display: none;
}

.container {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
}

header {
    margin-bottom: 40px;
}

.logo img {
    width: 80%;
    max-width: 400px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

h2 {
    font-size: 1.2rem;
    font-weight: normal;
    color: rgb(0,0,0,.6);
    margin-bottom: 12px;
}

h3 {
    font-size: 1.1rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-button {
    display: block;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.link-button:hover {
    transform: scale(1.02);
    background-color: #f8f8f8;
}

.modern-red {
    background-color: #f64f59;
    color: #fff;
}

.modern-red:hover {
    background-color: #dd4750;
}

.cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: 500;
}

.cta-icon-wrapper {
    position: absolute;
    right: 2em;
    top: 50%;
    transform: translateY(-50%) rotate(-30deg);
}

footer {
    margin-top: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgb(0, 0, 0);
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
    color: rgb(255, 255, 255);
}

.profile-picture {
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
} 