/* 
    SGU Hackathon 2.0 - Theme: Cinematic Warrior (Gold & Dark)
*/

:root {
    --bg-dark: #070708;
    --bg-card: rgba(255, 255, 255, 0.05);
    --gold: #d4af37;
    --gold-bright: #ffdf00;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --silver: #e0e0e0;
    --text-light: #f4f4f4;
    --text-gray: #b0b0b0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-dark);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
    overflow: hidden;
}

.section {
    padding: 10px 0;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
.section-subtitle {
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, visibility 1s;
}

.loader-circle {
    width: 100px; height: 100px;
    border: 3px solid transparent;
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-content p {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 5px;
    font-size: 0.8rem;
    color: var(--gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(7, 7, 8, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;   /* vertically center */
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    width: 100%;                 /* IMPORTANT */
    padding: 0 50px;             /* space from screen sides */
    display: flex;
    justify-content: space-between;  /* logo left, links right */
    align-items: center;
}


.logo a {
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
}

.logo span {
    color: var(--gold);
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}
.nav-links {
    display: flex;
    align-items: center;
}
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--text-light);
    transition: var(--transition);
}

.btn-primary2 {
    padding: 10px 25px;
    background: var(--gold);
    color: black;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition);
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.btn-primary2:hover {
    transform: translateY(-5px);
    background: transparent;
    color: var(--gold);
    box-shadow: 0 10px 30px var(--gold-glow);
}
/* Hero Section */
.hero {
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-dark) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: clamp(1rem, 3vw, 2rem);
    color: var(--gold);
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--silver);
    letter-spacing: 5px;
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gold);
    color: black;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 0 15px var(--gold-glow);
}

.event-details-bar {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.detail-item i {
    color: var(--gold);
    margin-right: 10px;
}

.detail-divider {
    width: 1px; height: 20px;
    background: rgba(255,255,255,0.2);
    margin: 0 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.time-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    min-width: 100px;
    padding: 15px;
    border-radius: 12px;
}

.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
}

.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-gray);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    padding: 18px 45px;
    background: var(--gold);
    color: black;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition);
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    background: transparent;
    color: var(--gold);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-secondary {
    padding: 18px 45px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* --- Why Participate --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    text-align: center;
    position: relative;
}

.icon-box i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.why-card h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

/* --- Judging Progress Bars --- */
.criteria-container {
    max-width: 800px;
    margin: 0 auto;
}

.criteria-item { margin-bottom: 2rem; }

.criteria-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--gold);
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.progress {
    background: linear-gradient(90deg, var(--gold), #f1d592);
    height: 100%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
}

/* --- Committee Section --- */
.sub-section-title {
    color: var(--silver);
    text-align: center;
    margin: 3rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.member-card {
    text-align: center;
    padding: 2rem;
}

.member-img {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.member-card h4 {
    margin-bottom: 0.5rem;
    color: var(--gold);
}

/* --- Conduct List --- */
.conduct-list { 
    list-style: none; 
    padding: 0; 
}

.conduct-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: flex-start;
}

.conduct-list i { 
    color: var(--gold); 
    margin-right: 1.5rem; 
    margin-top: 5px;
    font-size: 1.2rem;
}
.gold-profile{
    width:130px;
    height:130px;
    margin:0 auto 20px;
    border-radius:50%;
    padding:4px;
    background:linear-gradient(135deg,#d4af37,#ffdf00);
    box-shadow:0 0 20px rgba(212,175,55,0.6);
    overflow:hidden;
}

.gold-profile img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}
/* Glass Card Global */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

/* About Grid */
.about-grid {
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Tracks Grid */
.track-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.track-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.track-icon-bg {
    width: 80px; height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition);
}

.track-card h3 {
    margin-bottom: 15px;
}

.track-card p {
    color: var(--text-gray);
}

.track-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    transform: translateY(-10px);
}

.track-card:hover .track-icon-bg {
    background: var(--gold);
    color: black;
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Prize Grid */
.prize-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
}

.prize-highlight span {
    color: var(--gold);
}

.prize-grid {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.prize-card {
    background: var(--bg-card);
    padding: 50px 30px;
    border-radius: 24px;
    width: 320px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.prize-rank { font-size: 3rem; margin-bottom: 15px; }

.prize-card.first {
    border: 2px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.1);
    z-index: 2;
}

.trophy-outer {
    position: relative;
    margin-bottom: 20px;
}

.trophy-outer i { font-size: 4rem; color: var(--gold); position: relative; z-index: 1;}

.trophy-glow {
    position: absolute;
    top: 50%; left: 50%; translate: -50% -50%;
    width: 100px; height: 100px;
    background: var(--gold-glow);
    filter: blur(40px);
    border-radius: 50%;
}

.amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin: 15px 0;
}

.prize-perks {
    list-style: none;
    text-align: left;
    display: inline-block;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.prize-perks li::before {
    content: '✓';
    color: var(--gold);
    margin-right: 10px;
}

.additional-prizes {
    max-width: 900px;
    margin: 0 auto;
}

.others-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.other-item i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Timeline */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 19px; top: 0; width: 2px; height: 100%;
    background: rgba(212, 175, 55, 0.2);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: -40px; top: 0;
    width: 20px; height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--gold);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.current .timeline-dot {
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.t-date {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timeline-content h3 { margin-bottom: 10px; font-size: 1.3rem;}
.timeline-content p { color: var(--text-gray); }

/* Rules */
.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.rule-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.rule-box i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.rule-box:hover {
    border-bottom: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: black;
    font-weight: 800;
    text-transform: uppercase;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    color: white;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 60px; height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 10px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #040405;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.footer-logo span { color: var(--gold); }

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.footer-nav a {
    margin-left: 20px;
    color: #666;
    text-decoration: none;
}

.footer-nav a:hover { color: white; }
/* Logo Responsive Fix */
.logo-img {
    height: 50px;
    width: auto;
    transition: 0.3s ease;
}
/* ================================================= */
/* ============ COMPLETE RESPONSIVE SYSTEM ========= */
/* ================================================= */

/* ---------- Large Desktop (1400px+) ---------- */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ---------- Laptop / Tablet Landscape (≤1200px) ---------- */
@media (max-width: 1200px) {

    .nav-container {
        padding: 0 30px;
    }

    .section {
        padding: 80px 0;
    }

    .glass-card {
        padding: 50px 30px;
    }

    .prize-card.first {
        transform: scale(1);
    }
}

/* ---------- Tablet (≤992px) ---------- */
@media (max-width: 992px) {

    .logo-img {
        height: 42px;
    }

    .section {
        padding: 70px 0;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-container {
        padding-left: 40px;
    }

    .timeline-dot {
        left: -30px;
    }

    footer {
        padding: 60px 0 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ---------- Mobile (≤768px) ---------- */
@media (max-width: 768px) {

    :root {
        --nav-height: 70px;
    }

    /* Logo */
    .logo-img {
        height: 35px;
    }

    .nav-container {
        padding: 0 18px;
    }

    /* Show Hamburger */
    .menu-toggle {
        display: block;
        z-index: 1100;
    }

    /* Mobile Menu */
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.3rem;
    }

    /* Hamburger Animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero */
    .hero {
        padding: 100px 20px 60px;
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .event-details-bar {
        flex-direction: column;
        padding: 15px;
        border-radius: 15px;
        gap: 10px;
    }

    .countdown {
        gap: 10px;
        flex-wrap: wrap;
    }

    .time-box {
        min-width: 65px;
        padding: 10px;
    }

    .time-box span {
        font-size: 1.4rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    /* All Grids Stack */
    .why-grid,
    .track-grid,
    .rules-container,
    .committee-grid,
    .gallery-grid,
    .others-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline-container {
        padding-left: 25px;
    }

    .timeline-container::before {
        left: 10px;
    }

    .timeline-dot {
        left: -25px;
        width: 14px;
        height: 14px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    footer {
        padding: 50px 0 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ---------- Small Mobile (≤480px) ---------- */
@media (max-width: 480px) {

    .logo-img {
        height: 30px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .time-box span {
        font-size: 1.2rem;
    }

    .rule-box,
    .track-card,
    .glass-card {
        padding: 25px 18px;
    }

    .prize-card {
        padding: 30px 20px;
    }

    .amount {
        font-size: 1.5rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    footer {
        padding: 40px 0 20px;
    }

    .social-links a {
        font-size: 1.1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* ---------- Extra Small Devices (≤360px) ---------- */
@media (max-width: 360px) {

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-links a {
        font-size: 1.1rem;
    }
}