@font-face {
    font-family: 'Daniel';
    src: url('../daniel.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #ffffff;
    /* Clean white */
    --text-color: #1a1a1a;
    /* Deep black */
    --accent-color: #444444;
    /* Dark silver/gray */
    --accent-dark: #222222;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.1);
    /* Subtle dark border */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #ffffff, #f0f0f0);
}

/* Top Navigation */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: flex-start;
    z-index: 10;
}

.nav-logo {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

/* Glassmorphism Container */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    /* Sharper corners for a modern luxury feel */
    padding: 5rem 4rem;
    text-align: center;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    animation: fade-in-up 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    margin-bottom: 2.5rem;
}

.elegant-title {
    margin-bottom: 1.5rem;
}

.title-svg {
    height: 360px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.subheading-svg {
    height: 45px;
    width: auto;
    max-width: 100%;
    opacity: 0.85;
}

.card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--text-color);
    letter-spacing: 1px;
}

.card p {
    color: #555555;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.4rem;
    font-family: 'Daniel', sans-serif;
    font-weight: normal;
    letter-spacing: 0.5px;
}

/* Dynamic Interaction Elements */
.cta-button {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 1rem 3.5rem;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 640px) {
    .title-svg {
        height: auto;
        width: 100%;
    }

    .glass-container {
        padding: 3rem 2rem;
    }

    .top-nav {
        padding: 1.5rem 2rem;
    }

    .nav-logo {
        height: 45px;
    }
}