/* CSS Reset & Variables */
:root {
    --primary-color: #814115;
    /* Matched to Logo Background */
    --text-color: #ffffff;
    --background-dark: #121212;
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: var(--font-body);
    color: var(--text-color);
    overflow: hidden;
    /* Prevent scrolling if clear */
}

/* Background Handling */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darken the leather to make text pop */
    z-index: -1;
}

/* Main Content - Centering */
body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-card {
    text-align: center;
    padding: 3rem 4rem;
    background: #512E17;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    max-width: 500px;
    width: 90%;
    animation: fadeIn 1.5s ease-out;
}

/* Typography & Logo */
.brand-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.brand-title {
    display: none;
    /* Hidden in favor of logo */
}

.tagline {
    display: none;
    /* Removed per requirements */
}

/* Links & Buttons */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 50px;
    width: 100%;
    max-width: 280px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(129, 65, 21, 0.4);
    border-color: var(--primary-color);
}

.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .brand-title {
        font-size: 2.5rem;
    }

    .content-card {
        padding: 2rem;
        width: 85%;
    }
}