/* Basic Reset & Font Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #FFFFFF; /* White background */
    color: #333; /* Dark grey text for readability */
    line-height: 1.6;
    display: flex; /* Enable Flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Ensure body takes at least full viewport height */
    padding: 20px; /* Add padding for smaller screens */
}

/* Color Variables */
:root {
    --dark-gold: #B8860B; /* DarkGoldenrod - you can adjust this hex code */
    --white: #FFFFFF;
}

/* Main Container */
.container {
    max-width: 600px; /* Limit width on larger screens */
    width: 100%; /* Take full width up to max-width */
    text-align: center; /* Center content inside the container */
    background-color: var(--white); /* Ensure container bg is white */
    padding: 30px 20px; /* Padding inside the container */
    border-radius: 8px; /* Optional: slightly rounded corners */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); Optional: subtle shadow */
}

/* Logo Styling */
.logo {
    max-width: 180px; /* Adjust max-width as needed for your logo size */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 25px; /* Space below the logo */
}

/* Heading Styling */
h1 {
    color: var(--dark-gold); /* Use dark gold for the heading */
    margin-bottom: 15px;
    font-size: 2em; /* Adjust font size */
}

/* Paragraph Styling */
p {
    margin-bottom: 20px;
    color: #555; /* Slightly lighter text for paragraphs */
}

/* Email Link Styling */
.email-link {
    display: inline-block; /* Allows padding and margin */
    background-color: var(--white);
    color: var(--dark-gold);
    border: 2px solid var(--dark-gold);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    font-size: 1.1em;
}

.email-link:hover,
.email-link:focus {
    background-color: var(--dark-gold);
    color: var(--white);
    text-decoration: none; /* Keep underline off on hover */
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .logo {
        max-width: 140px; /* Slightly smaller logo on mobile */
    }

    h1 {
        font-size: 1.8em; /* Slightly smaller heading */
    }

    .email-link {
        padding: 10px 20px; /* Slightly smaller button padding */
        font-size: 1em;
    }

    .container {
        padding: 20px 15px; /* Adjust container padding */
    }
}