/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main body */
body {
    height: 100vh;
    background: #000000;
    font-family: 'Playfair Display', serif;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    padding: 20px;
}

/* Main title */
h1 {
    font-size: 3.6rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Underline effect on hover */
h1::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: -8px;
    left: 0;
    background-color: #FFD700;
    transition: width 0.5s ease;
}

h1:hover::after {
    width: 100%;
}

/* Job title */
h2 {
    font-weight: 400;
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: #cccccc;
}

/* Coming soon text */
.coming-soon {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #5e5e5e;
}

/* Social Icons */
.socials {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Floating animation for icons */
.socials a {
    color: #FFD700;
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Different timings for each icon to make them not move together */
.socials a:nth-child(1) {
    animation-delay: 0s;
}
.socials a:nth-child(2) {
    animation-delay: 0.5s;
}
.socials a:nth-child(3) {
    animation-delay: 1s;
}

/* Hover effect */
.socials a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/* Floating keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

::selection {
  background: #FFD700; /* Yellow background */
  color: #000000;      /* Black text inside the selection */
}
