
.header-container {
    position: relative;
    height: 100vh;
    background-color: #1a1a1a;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 20vh;
}

.title {
    font-size: 4.5em;
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.8em;
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #69b3a2;
}

.social-buttons {
    margin-top: 30px;
}

.social-buttons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #69b3a2;
    color: white;
    margin: 0 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5em;
}

.social-buttons a:hover {
    transform: translateY(-3px);
    background: #4a8c7b;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 40px;
    background-color: #69b3a2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #4a8c7b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #1a1a1a;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}