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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fbf9; /* Soft off-white */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Header Styling */
header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #4a5d4e; /* Sage Green */
}

header p {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #777;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: #e8eee9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #4a5d4e;
    border: 1px solid #d1dbd2;
}

/* Links Styling */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-decoration: none;
    border-radius: 50px;
    background: white;
    color: #4a5d4e;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    font-weight: 400;
}

.social-link i {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Hover Effects */
.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #f1f5f2;
    border-color: #4a5d4e;
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    header h1 { font-size: 2rem; }
    .container { width: 90%; }
}
