/* --- Global Styles & Variables --- */
:root {
    --bg-color: #1a1a1a;        /* Near-black background */
    --accent-color: #C1A361;   /* The gold from the logo */
}

body {
    margin: 0;
    padding: 20px;
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--accent-color);
    
    /* This centers the card perfectly in the middle of the screen */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* --- The Art Deco Border --- */
.art-deco-container {
    padding: 3px; /* Space for the inner line */
    background: var(--accent-color);
    position: relative;
    max-width: 500px;
    width: 100%;
}

/* Creates the outer corner flourishes */
.art-deco-container::before,
.art-deco-container::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--accent-color);
}

.art-deco-container::before {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.art-deco-container::after {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
}


/* --- The Card Content --- */
.card {
    background-color: var(--bg-color);
    padding: 50px 30px;
    text-align: center;
    position: relative; /* Needed for the bottom corners */
}

/* Creates the bottom corner flourishes */
.card::before,
.card::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--accent-color);
}

.card::before {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
}

.card::after {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}


/* --- Content Styling --- */
.logo-container {
    margin-bottom: 25px;
}

.logo-svg {
    max-width: 200px;
    height: auto;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    color: var(--accent-color);
    line-height: 1.2;
}

.contact-email {
    font-family: 'Lato', sans-serif;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent; /* Prepare for hover effect */
    transition: border-color 0.3s ease;
}

.contact-email:hover {
    border-bottom-color: var(--accent-color); /* Underline on hover */
}