/* ===== CSS VARIABLES - CUSTOMIZE YOUR COLORS HERE ===== */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff6b9d;
    --accent-color: #ffd93d;
    --bg-dark: #0a0e27;
    --bg-light: #1a1f3a;
    --text-primary: #ffffff;
    --text-secondary: #b8c1ec;
    --animation-speed: 0.3s;
    --bounce-speed: 0.6s;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* ===== LOADING ANIMATION ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== ENHANCED FADE IN ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== MUSICAL NOTES ANIMATION ===== */
.music-notes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 24px;
    opacity: 0.15;
    animation: floatUp 15s infinite ease-in-out;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 31, 58, 0.98);
    backdrop-filter: blur(15px);
    padding: 1.8rem 5%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 1rem 1.5rem;
    display: block;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    transform: scale(1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 70%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */

@media (max-width: 768px) {
    nav {
        padding: 1.2rem 5%;
    }
    
    .nav-logo {
        font-size: 1.1rem;
        max-width: 60%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* OR use initials on mobile - see option below */
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 31, 58, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .nav-link::before {
        border-radius: 0;
    }
}

/* ===== SECTIONS ===== */
section {
    min-height: 100vh;
    padding: 100px 5% 50px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HOME SECTION ===== */

#home {
    text-align: center;
}

#home .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: left;
}

.profile-pic {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    object-fit: cover;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
    transition: all var(--animation-speed) ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.profile-pic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.profile-pic:hover::before {
    transform: translateX(100%);
}

.profile-pic:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
    }
}

.home-content {
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.brief-summary {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.home-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.home-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cv-btn, .secondary-btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--animation-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.cv-btn::before, .secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cv-btn:hover::before, .secondary-btn:hover::before {
    left: 100%;
}

.cv-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.cv-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cv-btn:active {
    transform: translateY(-3px) scale(0.98);
    transition: all 0.1s ease;
}

.cv-btn span {
    font-size: 1.2rem;
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.secondary-btn:active {
    transform: translateY(-3px) scale(0.98);
    transition: all 0.1s ease;
}

/* ===== ABOUT SECTION ===== */
#about {
    background: var(--bg-light);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

h2 i, h3 i {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    margin-right: 0.5rem;
    stroke-width: 1.5;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 992px) {
    .about-right {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

.subheading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about-bullets {
    margin: 0;
    padding-left: 1rem;
    color: var(--text-secondary);
    display: grid;
    gap: 0.5rem;
}

/* Extra spacing between Overview and Quick Facts */
.about-text .quick-facts {
    margin-top: 1.5rem;
}

.card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem 1rem;
}

.fact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.skill-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.skill-group h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.skill-group .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.education {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.education h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.skill-tag {
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--primary-color);
    transition: all var(--animation-speed) ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.skill-tag:hover::before {
    left: 100%;
}

.skill-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.skill-tag:active {
    transform: translateY(-2px) scale(0.95);
    transition: all 0.1s ease;
}

/* Floating animation for skill tags */
@keyframes floatSkill {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.skill-tag {
    animation: floatSkill 3s ease-in-out infinite;
}

/* ===== PROJECTS SECTION ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
    border-color: var(--primary-color);
}

.project-card:active {
    transform: translateY(-8px) scale(0.98);
    transition: all 0.1s ease;
}

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

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.project-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.project-link {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.project-link:hover::before {
    left: 100%;
}

.project-link:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.project-link:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

/* ===== CONTACT SECTION ===== */
#contact {
    background: var(--bg-light);
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1rem 2rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Email button specific styles */
.email-btn {
    cursor: pointer;
    border: 2px solid var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.email-btn .email-text {
    display: none;
    font-size: 0.9rem;
    color: black;
}

.email-btn:hover .btn-text {
    display: none;
}

.email-btn:hover .email-text {
    display: inline;
}

.email-btn:active {
    transform: translateY(-3px) scale(0.98);
}

/* Copy notification */
.copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.copy-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.contact-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.contact-btn:active {
    transform: translateY(-4px) scale(0.98);
    transition: all 0.1s ease;
}

/* Contact form */
.contact-form {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8aa3c9;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.error {
    color: #ff6b9d;
    min-height: 16px;
}

.submit-btn {
    margin-top: 0.5rem;
}

.form-status {
    margin-top: 0.75rem;
    color: var(--text-secondary);
}

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-socials a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
}

.footer-socials a:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }

    section {
        padding: 80px 5% 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-socials {
        align-items: center;
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .profile-pic {
        width: 200px;
        height: 200px;
    }
    
    /* ... rest of your mobile styles ... */
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }

    section {
        padding: 80px 5% 30px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    /* Home section mobile layout */
    #home .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-pic {
        width: 200px;
        height: 200px;
    }
    
    .home-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }

    section {
        padding: 80px 5% 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-socials {
        align-items: center;
    }
}

