/* ===============================
   GLOBAL RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   BODY BACKGROUND
================================ */
body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    color: #ffffff;

    /* IMPORTANT: ONE SCREEN ONLY */
    overflow: hidden;

    background-image: url("Pictures/Background-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* FLEX LAYOUT */
    display: flex;
    flex-direction: column;
}

/* ===============================
   MAIN CONTAINER
================================ */
.container {
    flex: 1; /* fills available space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* ===============================
   HEADINGS & TEXT
================================ */
.container h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.container p {
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1.6;
}

/* ===============================
   FOOTER
================================ */
footer {
    text-align: center;
    font-size: 13px;
    color: #aaaaaa;
    padding-bottom: 50px; /* fixed typo */
}

/* ===============================
   SOCIAL ICONS
================================ */
.socials {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
}

.socials a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.35);
}

/* ===============================
   X (Twitter) ICON FIX
================================ */
.socials a i.fa-x-twitter {
    font-size: 17px; /* slightly smaller to match other icons */
}

/* ===============================
   RESPONSIVE (MOBILE)
================================ */
@media (max-width: 768px) {

    .container h1 {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .container p {
        font-size: 15px;
    }

    footer {
        padding-bottom: 50px;
    }

    /* Hide social icons on mobile but keep bottom margin */
    .socials {
        display: none; /* icons hidden */
        margin-bottom: 20px; /* bottom spacing */
    }
}
