@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Playfair+Display:ital,wght@1,400;1,600&family=Poppins:wght@300;400;500&display=swap');

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

body {
    background-color: #F4F0EA;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* --- Navigation Bar --- */
.editorial-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(244, 240, 234, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    cursor: pointer;
}

/* --- Section Area --- */
.magazine-section {
    height: 100vh;
    width: 100vw;
    padding: 90px 5% 120px 5%;
    display: flex;
    align-items: center;
    position: relative;
}

.hidden { display: none !important; }
.active { display: flex !important; animation: fadeIn 0.6s ease forwards; }

.script-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: #8B1E1E;
    display: block;
    margin-bottom: -10px;
}

/* ================= HERO GRID LAYOUT (HOME) ================= */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.hero-text-left .huge-title {
    font-family: 'Oswald', sans-serif;
    font-size: 7rem;
    line-height: 0.85;
    color: #8B1E1E;
    letter-spacing: -2px;
}

.sub-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 15px;
    color: #333;
}

.hero-image-center {
    width: 100%;
    height: 81vh; 
    overflow: hidden;
    background: transparent; 
    box-shadow: none; 
    display: flex;
    align-items: flex-end; 
    align-self: flex-end;
}

.magazine-img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    object-position: bottom center; 
}

/* ================= LAYOUT MERAPAT DI TENGAH DENGAN FOTO NEMPEL GARIS ================= */
.main-custom-layout {
    grid-template-columns: 1fr 1fr !important; 
    gap: 20px !important; 
    align-items: center !important; 
    max-width: 950px; 
    margin: 40px auto; 
}

.hero-text-left {
    align-self: center; 
}

.pushed-bio-box {
    margin-top: 25px; 
    max-width: 95%; 
}

.pushed-bio-box .role-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8B1E1E;
    margin-bottom: 8px;
}

.pushed-bio-box .brief-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.text-right-image {
    grid-column: 2; 
    height: 75vh !important; 
    display: flex;
    align-items: flex-end; 
    justify-content: flex-start; 
    overflow: hidden;
}

/* ================= NAVIGASI BAWAH ELEGAN ================= */
.home-footer-nav {
    position: absolute;
    bottom: 35px; 
    left: 5%;
    width: 90%; 
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #8B1E1E;
}

.footer-btn {
    background: none;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.footer-btn .btn-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.6;
    text-transform: uppercase;
    margin-top: 3px;
}

.text-left { text-align: left; align-items: flex-start; }
.text-right { text-align: right; align-items: flex-end; }
.text-center {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #8B1E1E;
    text-align: center;
    font-weight: bold;
}

.footer-btn:hover { color: #8B1E1E; transform: translateY(-3px); }
.text-center:hover { color: #1a1a1a; }

/* ================= LAYOUT SUB HALAMAN DETAIL ================= */
.section-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 60px;
    width: 100%;
    align-items: min-content;
}

.full-project-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.section-desc { font-size: 1.05rem; line-height: 1.8; margin-bottom: 35px; }
.core-expert h3 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; margin-bottom: 15px; }
.core-expert ul li { font-size: 1.05rem; margin-bottom: 10px; list-style: none; }

/* Judul Galeri Rata Tengah (Center) */
.side-title { 
    font-family: 'Oswald', sans-serif; 
    font-size: 1.8rem; 
    margin-bottom: 30px; 
    border-bottom: 2px solid; 
    padding-bottom: 10px; 
    text-align: center;
}

/* Grid Proyek & 3 Kolom */
.project-magazine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.c-3-columns { grid-template-columns: 1fr 1fr 1fr; } 

/* KARTU PROYEK */
.mini-project-card { 
    padding: 25px; 
    border: 1px solid; 
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
}
.clickable-card:hover {
    background-color: rgba(244, 240, 234, 0.1) !important;
    transform: translateY(-5px);
}
.click-hint {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 15px;
    opacity: 0.7;
}

.image-card { padding: 0; overflow: hidden; }
.project-img-wrapper {
    width: 100%;
    height: 220px; 
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.project-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}
.image-card:hover .project-display-img { transform: scale(1.05); }
.project-card-detail { padding: 20px; }

.mini-project-card h4 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; margin-bottom: 10px; }
.mini-project-card p { font-size: 0.9rem; line-height: 1.6; }

.explore-btn {
    padding: 12px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    background: none;
    border: 2px solid;
    cursor: pointer;
    transition: background 0.3s;
}
.explore-btn:hover { background-color: #fff; color: #121212 !important; }

/* TOMBOL KEMBALI DI KIRI BAWAH */
.fixed-back-btn {
    position: absolute;
    bottom: 35px;
    left: 5%;
    padding: 12px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background: none;
    border: 2px solid #F4F0EA;
    color: #F4F0EA;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.fixed-back-btn:hover {
    background-color: #F4F0EA;
    color: #8B1E1E;
}

/* THEMES CONFIG */
.theme-red { background-color: #8B1E1E; color: #F4F0EA; }
.theme-red .script-text { color: #F4F0EA; }
.theme-red .mini-project-card { background-color: rgba(255,255,255,0.05); border-color: rgba(244, 240, 234, 0.3); }

.theme-dark { background-color: #282f80; color: #e5e5e5; }
.theme-dark .section-title { color: #fff; }
.theme-dark .script-text { color: #00ADB5; }
.theme-dark .mini-project-card { background-color: #33386d; border-color: #333; }

/* FIX: MENGIZINKAN SCROLL INTERN DI SUB HALAMAN PORTFOLIO */
.theme-red, .theme-dark {
    padding-top: 130px !important; 
    align-items: flex-start !important;
    overflow-y: auto !important; 
}

#section-mi .section-title {
    font-size: 2.8rem; 
    line-height: 1.1;
    margin-bottom: 15px;
}
#section-mi .script-text { font-size: 1.8rem; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE MOBILE */
@media (max-width: 992px) {
    body { overflow: auto; }
    .magazine-section { height: auto; padding: 120px 5% 60px 5%; display: block; }
    .hero-grid, .section-layout, .main-custom-layout { grid-template-columns: 1fr !important; gap: 40px; }
    .hero-text-left .huge-title { font-size: 5rem; }
    .hero-image-center, .text-right-image { height: 350px !important; margin: 0; }
    .project-magazine-grid, .c-3-columns { grid-template-columns: 1fr; }
    .home-footer-nav { position: static; width: 100%; grid-template-columns: 1fr; gap: 20px; text-align: center; margin-top: 50px; padding-bottom: 20px;}
    .text-left, .text-right { align-items: center; text-align: center; }
    #section-mi .section-title { font-size: 2.5rem; }
    .fixed-back-btn { position: static; margin-top: 40px; width: 100%; text-align: center; }
}

/* ================= GALERI LANDSCAPE 4 KOLOM PENUH & SEIMBANG ================= */
.full-project-layout {
    width: 100%;
    max-width: 1350px; 
    margin: 0 auto;
}

.c-4-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important; 
    gap: 20px !important; 
    align-items: stretch !important; 
}

.project-img-wrapper {
    width: 100%;
    height: 180px !important; 
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
}

.project-display-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    object-position: center !important;
    display: block;
}

.mini-project-card {
    height: 100% !important;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(244, 240, 234, 0.15) !important;
}

/* ================= MINIMALISASI TEKS FOKUS KE FOTO ================= */
.project-card-detail {
    padding: 12px 15px !important; 
}

.project-card-detail h4 {
    font-size: 0.95rem !important; 
    margin-bottom: 4px !important;
    letter-spacing: 1px;
}

.project-card-detail p {
    font-size: 0.75rem !important; 
    line-height: 1.4 !important;
    opacity: 0.8; 
}

/* ================= HEADER FIX GRID 3 KOLOM ================= */
.gallery-header-container {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important; 
    align-items: center !important;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto 20px auto;
    padding: 10px;
}

/* Tombol Kembali Kotak */
.back-to-menu-btn {
    grid-column: 1; 
    justify-self: start; 
    background: transparent;
    border: 1px solid #f4f0ea;
    color: #f4f0ea;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1;
}

.back-to-menu-btn:hover {
    background-color: #f4f0ea;
    color: #8b1e1e;
}

/* Judul Galeri Utama */
.gallery-main-title {
    grid-column: 2; 
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0 !important;
    text-transform: uppercase;
    text-align: center;
}

/* Garis Pembatas */
.gallery-divider {
    border: none;
    border-top: 1px solid rgba(244, 240, 234, 0.3);
    max-width: 1350px;
    margin: 0 auto 30px auto;
}

/* Responsif Mobile (HP) */
@media (max-width: 992px) {
    .gallery-header-container {
        grid-template-columns: 1fr !important; 
        gap: 15px;
        text-align: center;
    }
    .back-to-menu-btn {
        grid-column: 1;
        justify-self: center; 
    }
    .gallery-main-title {
        grid-column: 1;
        font-size: 2.2rem;
    }
}

/* ================= PENYESUAIAN TOMBOL UNTUK TEMA GELAP (MI) ================= */
.type-dark-btn {
    border: 1px solid #e5e5e5 !important;
    color: #e5e5e5 !important;
}

.type-dark-btn:hover {
    background-color: #e5e5e5 !important;
    color: #121212 !important; 
}

.theme-dark .c-3-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 25px !important;
    align-items: stretch !important;
}

/* ================= TIMELINE IMAGES DI HALAMAN ABOUT ME ================= */
.timeline-images-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; 
    gap: 25px !important;
    align-items: center;
    width: 100%;
}

.about-journey-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about-journey-card:hover {
    transform: translateY(-5px);
    border-color: #00ADB5; 
}

.about-img-wrapper {
    width: 100%;
    height: 280px; 
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.about-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.about-card-caption {
    padding: 15px;
    text-align: left;
}

.journey-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #00ADB5; 
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
}

.about-card-caption h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
}

/* ================= KHUSUS GALERI DESIGN: RASIO A4 MURNI (TANPA KEPOTONG) ================= */
#section-design .project-img-wrapper {
    width: 100%;
    height: auto !important; /* Biar tingginya otomatis menghitung dari aspek rasio */
    aspect-ratio: 210 / 297 !important; /* 🚀 UTAMA: Mengunci perbandingan kertas A4 secara presisi */
    background-color: rgba(255, 255, 255, 0.03); /* Background tipis biar rapi */
    overflow: hidden;
    border: 1px solid rgba(244, 240, 234, 0.15);
}

#section-design .project-display-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* 🚀 KUNCI: Menampilkan 100% utuh seluruh isi poster tanpa terpotong */
    object-position: center !important;
}

/* Penyesuaian jarak grid di HP agar tetap aman */
@media (max-width: 768px) {
    #section-design .project-img-wrapper {
        max-width: 400px;
        margin: 0 auto; /* Supaya poster tetap di tengah layar HP */
    }
}

/* ================= TOMBOL REDIRECT INSTAGRAM ELEGAN (HALAMAN SKETCH) ================= */
.instagram-redirect-btn {
    display: inline-block;
    margin: 40px auto 0 auto; /* Memberi jarak dari foto dan memposisikannya di tengah */
    padding: 14px 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #F4F0EA;
    text-decoration: none;
    border: 2px solid #F4F0EA;
    background: transparent;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
    align-self: center; /* Memaksa flexbox kontainer membawa tombol ini ke tengah */
}

.instagram-redirect-btn:hover {
    background-color: #F4F0EA;
    color: #8B1E1E; /* Warnanya terbalik saat di-hover, teks jadi merah latar jadi putih gading */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ================= KHUSUS GALERI SKETCH: VERSI LANDSCAPE MELEBAR ================= */
/* Mengubah kotak gambar di halaman sketch menjadi landscape dengan ruang lebih tinggi & besar */
#section-sketch .project-img-wrapper {
    width: 100%;
    height: auto !important; 
    aspect-ratio: 4 / 3 !important; /* 🚀 MENGUNCI RASIO LANDSCAPE YANG LEBIH TINGGI & LUAS */
    background-color: rgba(255, 255, 255, 0.03); 
    overflow: hidden;
    border: 1px solid rgba(244, 240, 234, 0.15);
}

/* Memastikan gambar sketsa memenuhi kotak landscape dengan proporsional tanpa peyang */
#section-sketch .project-display-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    object-position: center !important; 
}

/* ================= TOMBOL REDIRECT INSTAGRAM ELEGAN (HALAMAN SKETCH) ================= */
.instagram-redirect-btn {
    display: inline-block;
    margin: 40px auto 0 auto; 
    padding: 14px 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #F4F0EA;
    text-decoration: none;
    border: 2px solid #F4F0EA;
    background: transparent;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
    align-self: center; 
}

.instagram-redirect-btn:hover {
    background-color: #F4F0EA;
    color: #8B1E1E; 
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Penyesuaian responsif layar HP */
@media (max-width: 992px) {
    #section-sketch .project-img-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
}

/* ================= TOMBOL INSTAGRAM DI HEADER KANAN (HALAMAN SKETCH) ================= */
.instagram-header-btn {
    grid-column: 3; /* Mengunci tombol di kolom ke-3 (kanan) */
    justify-self: end; /* Rata kanan mutlak */
    background: transparent;
    border: 1px solid #f4f0ea;
    color: #f4f0ea;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.instagram-header-btn:hover {
    background-color: #f4f0ea;
    color: #8b1e1e;
    transform: translateY(-2px);
}

/* Penyesuaian responsif layar HP */
@media (max-width: 992px) {
    .instagram-header-btn {
        grid-column: 1;
        justify-self: center; /* Otomatis ke tengah kalau di layar HP agar tidak bertumpuk */
        margin-top: 5px;
    }
}

/* ================= STYLING AREA LINK DENGAN TOMBOL FIGMA/WEB (TEMA DARK) ================= */
.tech-project-card {
    display: flex !important;
    flex-direction: column !important;
    background-color: #1a1a1a !important; /* Latar kartu sedikit kontras dengan background utama */
    border: 1px solid #2d2d2d !important;
    height: auto !important;
}

.tech-card-detail {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    text-align: left !important;
}

.tech-card-detail h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem !important;
    color: #fff !important;
    margin: 0 !important;
    letter-spacing: 1px;
}

/* Tombol Link Teks Elegan Garis Bawah */
.tech-link-btn {
    font-size: 0.8rem !important;
    font-weight: 500;
    color: #00ADB5 !important; /* Warna cyan penanda aksen interaktif */
    text-decoration: none !important;
    letter-spacing: 1px;
    display: inline-block;
    transition: color 0.3s ease, padding-left 0.3s ease;
    width: fit-content;
}

.tech-link-btn:hover {
    color: #fff !important;
    padding-left: 6px; /* Efek bergeser sedikit saat di-hover */
}

/* Memastikan aspect ratio screenshot web/aplikasi di dalam grid tetap proporsional (16:9 laptop) */
#section-mi-uiux .project-img-wrapper,
#section-mi-website .project-img-wrapper {
    height: auto !important;
    aspect-ratio: 16 / 10 !important; /* Sangat ideal untuk proporsi screenshot layar laptop/tablet */
}

/* ================= STYLING SOSIAL MEDIA NAV KANAN ATAS ================= */
.editorial-nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 40px !important;
}

.nav-socials {
    display: flex !important;
    gap: 20px !important; /* Jarak antar ikon sosial media */
    align-items: center !important;
}

.nav-socials a {
    color: #1a1a1a; /* Menyesuaikan warna font bawaan navbar kamu */
    font-size: 1.4rem; /* Ukuran dimensi logo ikon */
    text-decoration: none !important;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.nav-socials a:hover {
    transform: translateY(-2px); /* Efek memantul ke atas saat di-hover */
    color: #8b1e1e; /* Mengubah warna menjadi merah gelap elegan saat didekati mouse */
}

/* Penyesuaian responsif jika dibuka pada layar gelap (About / MI) agar warnanya putih kontras */
.theme-dark ~ .editorial-nav .nav-socials a,
body:has(#section-about.active) .nav-socials a,
body:has(#section-mi.active) .nav-socials a,
body:has(#section-mi-uiux.active) .nav-socials a,
body:has(#section-mi-website.active) .nav-socials a {
    color: #ffffff !important;
}

/* ================= ANIMASI WELCOME SCREEN OVERLAY ================= */
#welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F4F0EA; /* Menyamakan warna dasar portfolio krem gading */
    z-index: 9999; /* Memaksa tampil paling atas menutupi segalanya saat awal dibuka */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.welcome-content {
    text-align: center;
    padding: 20px;
}

.welcome-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: #8B1E1E;
    opacity: 0;
    display: block;
    transform: translateY(20px);
    animation: slideUpFade 0.8s ease forwards 0.3s;
}

.welcome-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(25px);
    animation: slideUpFade 0.8s ease forwards 0.6s;
}

.welcome-line {
    width: 0;
    height: 2px;
    background-color: #8B1E1E;
    margin: 20px auto 0 auto;
    animation: expandLine 1s cubic-bezier(0.77, 0, 0.175, 1) forwards 0.9s;
}

/* Efek menghilang halusnya setelah script JS memanggil fungsi fade */
#welcome-overlay.fade-away {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* KEYFRAMES ANIMASI MAJALAH */
@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    to {
        width: 120px;
    }
}

/* Responsif Layar Kecil untuk HP */
@media (max-width: 768px) {
    .welcome-title { font-size: 2rem; }
    .welcome-subtitle { font-size: 1.3rem; }
}