/* --- Global Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif; /* Default font for the page */
    background-color: #f8f8f8; /* A light grey background */
    color: #555; /* A softer text color than pure black */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* --- Main Container --- */
.container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* --- Hero Section (Logo & Title) --- */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Space between items */
    margin-bottom: 40px;
}

.logo {
    width: 100px;
    height: auto;
}

.separator {
    width: 2px;
    height: 90px;
    background-color: #ddd;
}

h1 {
    font-family: 'Playfair Display', serif; /* Elegant serif font for the title */
    font-size: 2.8rem;
    color: #333;
    text-align: left;
    line-height: 1.2;
}

/* --- Content Section --- */
.content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.description {
    margin-bottom: 20px;
}

.email a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.email a:hover {
    text-decoration: underline;
}

/* --- Social Links --- */
.social h2 {
    font-size: 1rem;
    color: #888;
    font-weight: normal;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows links to wrap on small screens */
}

.social-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: #000;
}


/* --- 📱 MOBILE RESPONSIVENESS 📱 --- */
@media (max-width: 600px) {
    .hero-section {
        flex-direction: column; /* Stack logo and title vertically */
        gap: 20px;
    }

    .separator {
        display: none; /* Hide the separator on mobile to save space */
    }

    h1 {
        text-align: center; /* Center the title on mobile */
        font-size: 2.2rem; /* Make the title a bit smaller */
    }
}

/* --- Preloader Styles (Updated) --- */

/* The full-screen container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 248, 248, 0.95);
    z-index: 9999;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

/* Class added by JS to hide the preloader */
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* This is the container for our number, positioned in the bottom right */
.progress-circle {
    /* --- Positioning --- */
    position: fixed;
    bottom: 30px; /* Distance from the bottom */
    right: 40px;  /* Distance from the right */

    /* --- Font Styling --- */
    font-family: 'Playfair Display', serif; /* Using your nice title font */
    font-size: 6rem; /* <<< INCREASED SIZE! Change this value if you want. */
    font-weight: 700;
    color: #333; /* Darker color for better visibility */
}

