/* Kevin Ricche - Coming Soon Landing Page
   Dark theme with cyan accents */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #020617; /* slate-950 */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    width: 100%;
    max-width: 1000px;
    padding: 40px 20px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Photo Container */
.photo-container {
    position: relative;
}

.photo-container img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    display: block;
    border: 2px solid rgba(34, 211, 238, 0.4); /* cyan-400 with opacity */
    box-shadow:
        0 0 40px rgba(34, 211, 238, 0.3),
        0 0 80px rgba(34, 211, 238, 0.15);
}

/* Text Content */
.text-content {
    text-align: center;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.first-name {
    display: block;
    color: #fff;
}

.last-name {
    display: block;
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%); /* cyan-400 to blue-500 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.25rem;
    color: #94a3b8; /* slate-400 */
    font-style: italic;
}

.tagline .highlight {
    color: #22d3ee; /* cyan-400 */
    font-style: italic;
}

/* Responsive - larger screens: side by side */
@media (min-width: 768px) {
    .content {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }

    .photo-container img {
        width: 280px;
        height: 280px;
    }

    .text-content {
        text-align: left;
    }

    h1 {
        font-size: 5rem;
    }
}

/* Responsive - small screens */
@media (max-width: 480px) {
    main {
        padding: 30px 16px;
    }

    h1 {
        font-size: 3.5rem;
    }

    .photo-container img {
        width: 220px;
        height: 220px;
    }

    .tagline {
        font-size: 1.1rem;
    }
}
