@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

:root {
    --text-color: #f9fafb;
    --background-overlay: rgba(17, 24, 39, 0.8);
    --accent-color: #d1d5db;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    background-color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-overlay);
    z-index: -1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.container {
    padding: 2rem;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem; /* text-4xl */
    font-weight: 700; /* Bold */
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--text-color);
}

p {
    font-size: 1.25rem; /* text-xl */
    margin-bottom: 3rem;
    color: var(--accent-color);
}

/* Responsive */
@media (min-width: 640px) {
    h1 {
        font-size: 3.5rem; /* sm:text-6xl */
    }
    h2 {
        font-size: 2rem;
    }
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links svg {
    width: 32px;
    height: 32px;
}
