/* 
   Theme: Minimal Luxury
   Colors: Dark (#0a0a0a), Gold (#d4af37), White (#ffffff)
   Fonts: Playfair Display (Headings), Montserrat (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #000000;
    --secondary-text: #666666;
}

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

body {
    background-color: #fcfcfc;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    padding: 4rem;
    margin: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: 1px solid rgba(0, 0, 0, 0.1);
    outline-offset: -10px;
    position: relative;
    animation: fadeIn 1.5s ease-out;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Logo Styling */
.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p.main-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

p.sub-text {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--secondary-text);
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: invert(0);
    /* Icons are black by default */
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--accent-color);
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover img {
    filter: invert(0);
    /* Make icons black on hover */
}

/* Divider */
.divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 2rem auto;
    opacity: 0.7;
}

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

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

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 160px;
    }
}