 /* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at center, #4a4a4a 0%, #1a1a1a 100%);
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

/* MAIN CONTAINER */
.container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* THE BACKGROUND WATERMARK */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 25rem;
    color: #000000;
    opacity: 0.15;
    z-index: 1;
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
}

.watermark .divider {
    font-weight: 100;
    margin: 0 10px;
    opacity: 0.5;
}

/* CONTENT LAYER */
.content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #111;
    font-weight: 600;
    margin-bottom: -15px;
    text-transform: uppercase;
    position: relative;
    z-index: 12;
}

/* BLACK BAR LOGO */
.logo-bar {
    background-color: #000000;
    padding: 15px 40px;
    display: inline-block;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo-bar h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #ffffff;
    margin: 0;
}

/* CONTACT SECTION */
.contact-info {
    margin-top: 20px;
}

.contact-info .name {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 5px;
}

.contact-info .email, 
.contact-info .site {
    display: block;
    font-size: 1rem;
    color: #888;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.contact-info .email:hover,
.contact-info .site:hover {
    color: #fff;
}

/* SOCIAL LINKS (NEW) */
.social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: #666; /* Darker grey initially */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-bottom: 1px solid transparent; /* Invisible underline */
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff; /* Shows underline on hover */
}

.social-links .divider {
    color: #444;
    font-weight: 100;
}

/* FOOTER */
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.legal-block {
    font-size: 0.7rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.compliance-text {
    margin-top: 10px;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .watermark { font-size: 15rem; }
    .logo-bar { width: 90%; padding: 15px 10px; }
    .logo-bar h1 { font-size: 1.2rem; letter-spacing: 0.2em; }
    .tagline { font-size: 0.7rem; }
}