/* ====== VARIABLES & IMPORTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    
    --primary: #000000;
    --secondary: #666666;
    --background: #ffffff;
    --light-bg: #f8f8f8;
    --border: #e0e0e0;
    
    
    --accent-gold: #d4af37;      
    --accent-rose: #ec4899;      
    
    
    --accent: #d4af37;           
}

/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background);
    color: var(--primary);
    line-height: 1.6;

    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: 1fr auto; 
    min-height: 100vh;
}

/* ====== TYPOGRAPHIE ====== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.8rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* ====== NAVBAR ====== */
.top-nav {
    
    grid-column: 1;           
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;             
    height: 100vh;           
    
    display: flex;
    flex-direction: column;   
    align-items: flex-start;  
    padding: 2rem 1.5rem;
    
    background-color: var(--light-bg);
    border-right: 1px solid var(--border);  
    overflow-y: auto;         
    z-index: 100;
    gap: 0;
}

.top-nav a {
   
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    color: var(--primary);
    border-left: 3px solid transparent;  
    border-bottom: none;                  
    
    transition: all 0.3s ease;
}

.top-nav a:hover {
    background-color: rgba(212, 175, 55, 0.1);  
    border-left: 3px solid var(--accent-gold);  
}

/* ====== HERO SECTION ====== */
.hero-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    border-bottom: 1px solid var(--border);
}

.hero-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    margin-bottom: 2rem;
    object-fit: cover;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero-section .tagline {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-section > p {
    color: var(--secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* ====== CONTENU PRINCIPAL ====== */
main {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
    background-color: var(--background);
}

.contenu-principal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.contenu-principal section {
    background-color: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contenu-principal section:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.contenu-principal h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.contenu-principal h4 {
    color: var(--primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.contenu-principal p {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contenu-principal a {
    color: var(--accent);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contenu-principal a:hover {
    border-bottom: 1px solid var(--accent);
}

.contenu-principal article {
    background-color: var(--white);
    padding: 1.5rem;
    border-left: 2px solid var(--accent);
    border-radius: 4px;
    margin-top: 1rem;
}

/* ====== PAGE CONTENU (Détails) ====== */
.page-contenu {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-contenu h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.detail-bloc {
    margin-bottom: 3rem;
}

.detail-bloc h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.detail-bloc h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.detail-bloc p {
    color: var(--secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.detail-bloc ul {
    list-style: none;
    padding-left: 1rem;
}

.detail-bloc ul li {
    padding: 0.5rem 0;
    color: var(--secondary);
    font-weight: 300;
    margin-left: 0;
}

.detail-bloc ul li:before {
    content: "— ";
    color: var(--accent);
    font-weight: 600;
    margin-right: 0.5rem;
}

.detail-bloc article {
    background-color: var(--light-bg);
    padding: 2rem;
    border-left: 3px solid var(--accent);
    margin: 1.5rem 0;
    border-radius: 4px;
}

.detail-bloc article h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.detail-bloc article p {
    margin: 0;
}

.detail-bloc img {
    width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* ====== HR ====== */
hr {
    border: none;
    height: 1px;
    background-color: var(--border);
    margin: 3rem 0;
}

/* ====== LIEN HAUT DE PAGE ====== */
.lien-haut-de-page {
    display: inline-block;
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--accent);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lien-haut-de-page:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* ====== FOOTER ====== */
.main-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 2rem;
    border-top: 2px solid var(--accent-gold);
    
    grid-column: 1 / -1;
    width: 100%;
    margin-top: auto;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.main-footer h2 {
    font-size: 1.8rem;
    margin: 0 0 2rem 0;
    border: none;
    padding: 0;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== GRILLE DE LIENS ========== */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-link-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-link-btn span:first-child { font-size: 1.8rem; }

.footer-link-btn span:last-child {
    font-size: 0.9rem;
}

.footer-link-btn:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* ========== INFO EN BAS ========== */
.footer-info {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-info p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-info p:last-child {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Supprimer l'ancienne classe */
.footer-links {
    display: none;
}

.info-cachee {
    display: none;
}


.nav-header {
    text-align: center;
    padding: 1.5rem 1rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1rem;
}

.nav-header h2 {
    font-size: 1.3rem;
    margin: 0 0 0.3rem 0;
    border: none;
    padding: 0;
    color: var(--primary);
}

.nav-header p {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ====== CARDS GRID (ACCUEIL) ====== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.info-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-left: 3px solid var(--accent-rose);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.info-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.8rem 0;
    color: var(--primary);
}

.info-card p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.info-card a {
    color: var(--accent-rose);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border 0.3s ease;
}

.info-card a:hover {
    border-bottom: 2px solid var(--accent-rose);
}

/* ====== SIDEBAR CONTENT (INFOS) ====== */
.sidebar-content {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.sidebar-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.info-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    font-size: 1rem;
    margin: 0 0 0.8rem 0;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-block li {
    padding: 0.4rem 0;
    color: var(--secondary);
    font-size: 0.95rem;
}

.info-block strong {
    color: var(--primary);
    font-weight: 600;
}

.info-block p {
    margin: 0;
    color: var(--secondary);
}
.diploma-info {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-gold);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.diploma-info p {
    margin: 0.5rem 0;
    color: var(--secondary);
}

.badge-mention {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-excellent {
    background-color: var(--accent-rose);
}
.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-gold);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.experience-header h3 {
    margin: 0 0 0.5rem 0;
}

.experience-header .location {
    margin: 0;
    color: var(--secondary);
    font-size: 0.95rem;
}

.experience-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.experience-date strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.experience-date span {
    font-size: 0.85rem;
    color: var(--secondary);
    margin-top: 0.3rem;
}
/* ========== PAGE PORTFOLIO - TITRE ========== */
.page-contenu > h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    color: var(--secondary);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== BADGES PROJETS ========== */
.project-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.project-badge-uni {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
}

.project-badge-perso {
    background-color: rgba(236, 72, 153, 0.2);
    color: var(--accent-rose);
}

/* ========== AMÉLIORATIONS CARTES ALTERNÉES ========== */
.projects-container {
    max-width: 1100px;
    padding: 0;
}

.project-card-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
    
    animation: fadeInUp 0.6s ease-out both;
}

.project-card-alt:nth-child(1) { animation-delay: 0.1s; }
.project-card-alt:nth-child(2) { animation-delay: 0.2s; }
.project-card-alt:nth-child(3) { animation-delay: 0.3s; }
.project-card-alt:nth-child(4) { animation-delay: 0.4s; }
.project-card-alt:nth-child(5) { animation-delay: 0.5s; }
.project-card-alt:nth-child(6) { animation-delay: 0.6s; }

/* INVERSE : texte à gauche, icône à droite */
.project-card-alt-reverse {
    direction: rtl;
}

.project-card-alt-reverse * {
    direction: ltr;
}

.project-visual {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-rose) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-visual span {
    position: relative;
    z-index: 1;
}

.project-card-alt:hover .project-visual {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-rose);
}

.project-card-alt:hover .project-visual::before {
    opacity: 0.5;
}

.project-text {
    padding: 2rem;
    background-color: var(--light-bg);
    border-left: 3px solid var(--accent-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-card-alt:hover .project-text {
    border-left: 3px solid var(--accent-rose);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.1);
}

.project-text h3 {
    font-size: 1.6rem;
    margin: 0 0 0.8rem 0;
    color: var(--primary);
}

.project-text p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    line-height: 1.7;
    font-weight: 300;
}

.project-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-link {
    display: inline-block;
    color: var(--accent-rose);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.project-link:hover {
    border-bottom: 2px solid var(--accent-rose);
    color: var(--accent-gold);
}
/* ========== SECTION CONTACT ========== */
.contact-section {
    margin-top: 3rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    text-align: center;
    color: var(--secondary);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== CONTACT CARDS (GRILLE) ========== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card:hover {
    border-left: 3px solid var(--accent-rose);
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.15);
    background-color: var(--white);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: var(--primary);
}

.contact-card p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    font-weight: 300;
    word-break: break-word;
}

.contact-cta {
    font-size: 0.85rem;
    color: var(--accent-rose);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .contact-cta {
    opacity: 1;
}

/* ========== CONTACT INFO ========== */
.contact-info {
    background-color: var(--light-bg);
    border-left: 3px solid var(--accent-gold);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contact-info li {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--primary);
    font-weight: 500;
}

/* ========== ANIMATION FADE IN UP ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .container-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .sidebar {
        padding: 2rem;
    }

    .contenu-principal {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* MOBILE : Nav horizontale en haut */
    body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
    }
    /* Nav infos mobile */
.nav-infos {
    display: none;  /* Masquer sur mobile */
}

.nav-separator {
    display: none;
}

.main-footer {
    grid-column: 1;  /* Sur mobile, une seule colonne */
}
    .top-nav {
        position: sticky;
        top: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-wrap: wrap;
        padding: 0.8rem;
        gap: 0;
        overflow-y: visible;
    }
    
    .nav-header {
        width: 100%;
        border-bottom: none;
        border-right: 1px solid var(--border);
        padding: 0.8rem 1rem;
        margin: 0 1rem 0 0;
    }
    
    .nav-header h2 {
        font-size: 1rem;
        margin: 0;
    }
    
    .nav-header p {
        font-size: 0.75rem;
        margin: 0;
    }
    
    .top-nav a {
        width: auto;
        padding: 0.5rem 0.8rem;
        border-left: none;
        border-bottom: 2px solid transparent;
        flex: 1;
        min-width: 90px;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .top-nav a:hover {
        background-color: transparent;
        border-bottom: 2px solid var(--accent-gold);
        border-left: none;
    }
    
    main {
        grid-column: 1;
        padding: 0;
    }
    
    .contenu-principal {
        padding: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .page-contenu {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    /* ========== CARTES ALTERNÉES MOBILE ========== */
    .project-card-alt {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .project-card-alt-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .project-card-alt-reverse * {
        direction: ltr;
    }
    
    .project-visual {
        font-size: 2.5rem;
        aspect-ratio: auto;
        height: 250px;
    }
    
    .project-text {
        padding: 1.5rem;
        border-left: 3px solid var(--accent-gold);
    }
    
    .project-text h3 {
        font-size: 1.3rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .main-footer {
    padding: 2rem 1rem;
}

.main-footer h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-link-btn {
    padding: 1rem 0.8rem;
    font-size: 0.85rem;
}

.footer-info {
    padding-top: 1.5rem;
}

.footer-info p {
    font-size: 0.8rem;
}
}

@media (max-width: 480px) {
    .top-nav {
        padding: 0.5rem;
    }
    
    .top-nav a {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .nav-header {
        padding: 0.5rem 0.8rem;
    }
    
    .contenu-principal {
        padding: 1rem;
    }
    
    .page-contenu {
        padding: 1rem;
    }
    
    .project-text h3 {
        font-size: 1.1rem;
    }
    
    .project-text p {
        font-size: 0.9rem;
    }
    .main-footer {
    padding: 1.5rem 1rem;
}

.main-footer h2 {
    font-size: 1.2rem;
}

.footer-links-grid {
    grid-template-columns: 1fr;
}
}