/* =========================================
   The Secondary Scholar
   Hero Section
   ========================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, #162229 0%, #080b0d 45%),
        #080b0d;
    font-family: Arial, Helvetica, sans-serif;
}

/* Navigation */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 5%;
    background-color: rgba(5, 7, 8, 0.96);
    border-bottom: 1px solid #2a3034;
}

.site-title {
    color: #f5c518;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}

.navigation-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.navigation-links a {
    padding: 9px 0;
    color: #d9dcdf;
    font-size: 14px;
    text-decoration: none;
}

.navigation-links a:hover,
.navigation-links a.active {
    color: #f5c518;
    border-bottom: 2px solid #f5c518;
}

/* Hero section */

.hero-section {
    display: grid;
    align-items: center;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    width: min(1350px, 90%);
    min-height: calc(100vh - 82px);
    margin: 0 auto;
    padding: 70px 0;
}

.eyebrow,
.showcase-label {
    margin: 0 0 18px;
    color: #f5c518;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(58px, 8vw, 104px);
    line-height: 0.88;
    letter-spacing: -5px;
    text-transform: uppercase;
}

.hero-content h2 {
    max-width: 680px;
    margin: 30px 0 20px;
    color: #f5c518;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-description {
    max-width: 690px;
    margin: 0 0 18px;
    color: #d3d7da;
    font-size: 19px;
    line-height: 1.65;
}

.creator-text {
    max-width: 680px;
    margin: 0 0 30px;
    color: #aeb4b8;
    line-height: 1.6;
}

.creator-text strong {
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 15px 22px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

.primary-button {
    color: #080b0d;
    background-color: #f5c518;
}

.primary-button:hover {
    background-color: #ffdb48;
}

.secondary-button {
    color: #f5c518;
    background-color: transparent;
    border: 2px solid #f5c518;
}

.secondary-button:hover {
    color: #080b0d;
    background-color: #f5c518;
}

/* Project highlights panel */

.hero-showcase {
    padding: 35px;
    background:
        linear-gradient(
            145deg,
            rgba(29, 37, 42, 0.95),
            rgba(12, 16, 18, 0.98)
        );
    border: 1px solid #30383d;
    border-radius: 14px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
}

.highlight-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.highlight-item {
    min-height: 155px;
    padding: 22px;
    background-color: #11171a;
    border: 1px solid #2e363a;
    border-radius: 9px;
}

.highlight-item strong {
    display: block;
    margin-bottom: 12px;
    color: #f5c518;
    font-size: 30px;
}

.highlight-item span {
    color: #c0c5c8;
    font-size: 14px;
    line-height: 1.45;
}

/* Tablet */

@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content h1 {
        letter-spacing: -3px;
    }
}

/* Mobile */

@media (max-width: 650px) {
    .main-navigation {
        align-items: flex-start;
        flex-direction: column;
    }

    .navigation-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-section {
        width: 88%;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 54px;
        letter-spacing: -2px;
    }

    .highlight-panel {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        padding: 22px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
}
/* =========================================
   Featured Project
   ========================================= */

.featured-project-section {
    width: min(1350px, 90%);
    margin: 0 auto;
    padding: 75px 0 90px;
    border-top: 1px solid #2a3034;
}

.featured-project-heading {
    margin-bottom: 30px;
}

.featured-project-heading h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    text-transform: uppercase;
}

.featured-project-layout {
    display: grid;
    align-items: center;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 55px;
}

.featured-project-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #11171a;
    border: 1px solid #353d42;
    border-radius: 12px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
}

.featured-project-thumbnail img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-project-thumbnail:hover img {
    transform: scale(1.025);
}

.featured-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding-left: 6px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.72);
    border: 3px solid #ffffff;
    border-radius: 50%;
    font-size: 32px;
    transform: translate(-50%, -50%);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.featured-project-thumbnail:hover .featured-play-button {
    color: #080b0d;
    background-color: #f5c518;
    border-color: #f5c518;
}

.featured-project-content {
    padding: 10px 0;
}

.featured-project-description {
    margin: 0 0 28px;
    color: #d3d7da;
    font-size: 18px;
    line-height: 1.65;
}

.featured-project-content h3 {
    margin: 0 0 16px;
    color: #f5c518;
    font-size: 20px;
}

.project-skills-list {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.project-skills-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 27px;
    color: #bbc1c5;
    line-height: 1.45;
}

.project-skills-list li::before {
    position: absolute;
    left: 0;
    color: #f5c518;
    font-weight: bold;
    content: "✓";
}

@media (max-width: 900px) {
    .featured-project-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .featured-project-section {
        width: 88%;
        padding: 55px 0 70px;
    }

    .featured-play-button {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }
}