@font-face {
    font-family: 'Khori Fantaisie';
    src: url('../assets/KhoriFantasie-Regular.otf') format('opentype'),
         url('../assets/KhoriFantasie-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --text-color: #FFFFFF;
    --gold: #D5AE41;
    --blue: #36B0D8;
    --orange: #42ADD5;
    --pink: #E1B9BA;
    --green: #61bd93;
}

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

body {
    font-family: 'Helvetica', Arial, sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/Bottle.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.content {
    width: 100%;
    max-width: 600px;
    animation: fadeIn 1.5s ease-out;
    z-index: 1;
}

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

h1 {
    font-family: 'Khori Fantaisie', serif;
    font-size: 5rem;
    color: #000000;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px var(--gold);
    font-weight: normal;
}

.message p {
    font-size: 1.25rem;
    color: #E0E0E0;
    font-weight: 300;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.email-link {
    display: inline-block;
    font-size: 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--gold);
    border-color: var(--text-color);
    transform: translateY(-2px);
}

.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

@media (max-width: 600px) {
    h1 {
        font-size: 3.5rem;
    }
}


