@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
:root {
    --bg: #ECF8F8; /* light base color */
    --text-dark: #1D8A7A; /* darkest teal for text */
}

body, html {
    margin: 0; padding: 0; width: 100%; height: 100%;
    background-color: var(--bg);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}
/* THE ANIMATED MESH */
.mesh-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 1;
    /* palette across multiple moving blobs */
    background-color: var(--bg);
    background-image: 
        radial-gradient(at 0% 0%, #22E1DF 0px, transparent 50%),
        radial-gradient(at 100% 0%, #1FDCD2 0px, transparent 50%),
        radial-gradient(at 100% 100%, #70C2BD 0px, transparent 50%),
        radial-gradient(at 0% 100%, #45B2AB 0px, transparent 50%),
        radial-gradient(at 50% 50%, #19A99F 0px, transparent 50%);
    background-size: 200% 200%;
    filter: blur(40px);
    animation: meshFlow 12s ease-in-out infinite alternate;
}

@keyframes meshFlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 100%; }
}

/* content Overlay */
.container {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 100vh; text-align: center;
    background: rgba(236, 248, 248, 0.2); /* glassmorphism touch */
    backdrop-filter: blur(10px);
}

h1 { 
    font-family: 'EB Garamond', serif; 
    font-size: 3.5rem; 
    margin: 10px 0; 
    font-weight: 600;
    color: var(--text-dark); 
    line-height: 1.2;
    letter-spacing: -0.5px; /* Pulls the letters slightly closer */
    margin: 20px 0;
    opacity: 0.9;
}

p { font-size: 1.1rem; color: #298A90; margin-bottom: 40px; }

.badge { 
    border: 1px solid #1D8A7A; padding: 5px 15px; 
    font-size: 0.7rem; color: #1D8A7A; 
    letter-spacing: 2px; text-transform: uppercase; 
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 16px; 
    align-items: center;
}

.contact-box a { 
    color: var(--text-dark); 
    text-decoration: none; 
    font-size: 1.05rem;
    font-weight: 400; 
    opacity: 0.6; 
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform, opacity, filter, letter-spacing;
}
.contact-box:hover a {
    opacity: 0.2;
    filter: blur(1.5px); 
}
.contact-box a:hover { 
    opacity: 1; 
    filter: blur(0px);
    transform: scale(1.04) translateZ(0);
    letter-spacing: 1.5px; 
}