@import './font/helvetica/style.css';

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.logo img {
    width: clamp(180px, 22.9vw, 330px); /* 330px / 1440 * 100 = 22.9vw */
    margin-bottom: clamp(16px, 2.2vw, 32px);
}

/* Badge with Glassmorphism */
.badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 0.7vw, 10px);
    padding: clamp(8px, 0.7vw, 10px) clamp(12px, 1.4vw, 20px);
    border-radius: 12px;
    margin-bottom: clamp(24px, 2.8vw, 40px);

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #F5F5F5;
    font-size: clamp(10px, 0.83vw, 12px);
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1px;

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

h1.if-you-read-that-you-are-bored {
    font-size: clamp(32px, 4.4vw, 64px); /* 64px -> 4.4vw */
    font-weight: 400;
    line-height: 110%;
    margin: 0;
}

h2.you-are-still-here {
    font-size: clamp(32px, 4.4vw, 64px);
    font-weight: 700;
    line-height: 110%;
    margin: 0;
}

.come-on-mate-find-something-else-to-do {
    font-size: clamp(14px, 1.6vw, 24px); /* 24px -> 1.6vw */
    margin-top: clamp(10px, 1.3vw, 20px);
    margin-bottom: clamp(16px, 2.8vw, 40px);
    color: #848484;
}

.you-have-time-to-kill-so-why-not {
    font-size: clamp(18px, 2.2vw, 32px);
    display: flex;
    gap: clamp(6px, 0.7vw, 10px);
}

.read-the-next-one-then {
    font-size: clamp(18px, 2.2vw, 32px);
    margin-bottom: clamp(12px, 1.4vw, 20px);
}

.you-have-time-to-kill-so-why-not a {
    font-size: clamp(14px, 1.6vw, 24px);
    gap: clamp(6px, 0.7vw, 8px);
    color: #F5F5F5;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration:  none;
}



/* === Fade-in orchestré === */
.logo, .badge, h1, h2, .come-on-mate-find-something-else-to-do, .read-the-next-one-then, .you-have-time-to-kill-so-why-not {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}
.logo { animation-delay: 0.2s; }
.badge { animation-delay: 0.4s; }
h1 { animation-delay: 0.6s; }
h2 { animation-delay: 0.8s; }
.come-on-mate-find-something-else-to-do { animation-delay: 1s; }
.read-the-next-one-then { animation-delay: 1.2s; }
.you-have-time-to-kill-so-why-not { animation-delay: 1.4s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* === Badge glow pulse === */
.badge {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.badge::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
    opacity: 0.6;
    animation: pulse 3s infinite ease-in-out;
    z-index: -1;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.7; }
}
.badge:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.12);
}

/* === Hover underline modern on links === */
.you-have-time-to-kill-so-why-not a {
    position: relative;
    overflow: hidden;
}
.you-have-time-to-kill-so-why-not a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: translateX(0);
    transition: transform 0.3s ease;
}
/*.you-have-time-to-kill-so-why-not a:hover::after {*/
/*    transform: translateX(0);*/
/*}*/
