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

html {
    background-color: #000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('images/hero-large-candles-wedding-bench.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFF9CE;
}

.hero {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.5s ease-in;
}
.hero h2 {
    opacity: 1;
    font-size: 3rem;
    font-weight: 100;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}
.hero h2 a {
    color: inherit;
    text-decoration: none;
}
.hero p {
    font-size: 1.25rem;
    opacity: 1;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 1.6rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 400;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}


.logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}
.logo img {
    height: 100px;
    width: auto;
    /*filter: brightness(0) invert(1);*/
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.02);
}

.social-links {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}
.social-links img {
    width: 3rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body {
        background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('images/hero-wedding-isle-large-candles-closeup.jpg');
        background-size: 150%;
        background-position: center center;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .logo {
        top: 2rem;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo img {
        height: 80px;
    }
}