/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #000000 60%, #1a1a2e 100%);
    min-height: 100vh;
    color: white;
}

/* Logo Styles */
.logo {
    font-family: "Poetsen One", "Sour Gummy", Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #4da3ff;
    text-shadow: 0 2px 8px rgba(77,163,255,0.10);
    letter-spacing: 2px;
    margin-right: 30px;
    white-space: nowrap;
    user-select: none;
    display: flex;
    align-items: center;
    height: 48px;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    -webkit-text-fill-color: initial;
    filter: none;
    transition: font-size 0.2s;
    padding-left: 18px;
}

.ss-logo {
    display: block;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 12px 0 rgba(77,163,255,0.18), 0 1px 4px rgba(0,255,136,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
    background: transparent;
}

.logo:hover .ss-logo {
    box-shadow: 0 4px 24px 0 rgba(0,255,136,0.18), 0 2px 8px rgba(77,163,255,0.18);
    transform: scale(1.07) rotate(-3deg);
}

@media (max-width: 900px) {
    .logo {
        font-size: 1.3rem;
        margin-right: 10px;
        height: 36px;
    }
    .ss-logo {
        height: 32px;
        width: 32px;
    }
    .nav-links {
        height: auto !important;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 1rem;
        margin-right: 5px;
        height: 28px;
    }
    .ss-logo {
        height: 24px;
        width: 24px;
    }
}

/* Remove old logo styles */
.logo-text, .logo-s1, .logo-s2, .logo-full { display: none !important; }

/* Navbar Styles */
nav {
    width: calc(100% - 48px);
    max-width: 1200px;
    margin: 24px auto 0 auto;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 4%;
    box-shadow: 0px 8px 32px 0px rgba(77,163,255,0.18), 0px 2px 8px rgba(0,0,0,0.18);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s, box-shadow 0.3s;
    border-radius: 32px;
}

.name {
    font-family: "Sour Gummy", sans-serif;
    font-size: 28px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 48px;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 0;
    transition: all 0.3s;
    border-radius: 25px;
    font-weight: 500;
    position: relative;
    opacity: 0.85;
    display: flex;
    align-items: center;
    line-height: 1;
    height: 40px;
}

.nav-links a.active, .nav-links a:focus {
    color: #00ff88;
    opacity: 1;
}

.nav-links a.active::after, .nav-links a:focus::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #4da3ff, #00ff88);
    border-radius: 2px;
    margin-top: 4px;
    transition: width 0.3s;
}

.nav-links a::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4da3ff, #00ff88);
    border-radius: 2px;
    margin-top: 4px;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 60%;
}

/* Menu Icon for Mobile */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
    padding-right: 18px;
}

.menu-icon:hover {
    /* Remove background and add a green border for a modern effect */
    background: none;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #00ff88;
    /* Optional: add a slight scale for feedback */
    transform: scale(1.08);
    transition: box-shadow 0.2s, transform 0.2s;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 100px 5% 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section Styles */
.section {
    width: 100%;
    min-height: 100vh;
    padding: 120px 0 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-content {
    width: 90%;
    max-width: 800px;
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    padding: 40px 32px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: left;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.4s cubic-bezier(.4,0,.2,1), transform 1.4s cubic-bezier(.4,0,.2,1);
}
.section-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h1, .section h2 {
    font-family: "Poetsen One", "Sour Gummy", Arial, sans-serif;
    font-weight: 800;
    margin-bottom: 18px;
    color: #4da3ff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section h2 {
    font-size: 2rem;
}

.section p, .section ul {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 12px;
}

.highlight {
    color: #00ff88;
    font-weight: 700;
}

.skills-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.skills-list li, .services-list li, .contact-list li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.skills-list li::before {
    content: "🟢";
    position: absolute;
    left: 0;
    top: 0;
}
.services-list li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0;
}
.contact-list li::before {
    content: "•";
    color: #00ff88;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-list a {
    color: #4da3ff;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-list a:hover {
    color: #00ff88;
    text-decoration: underline;
}

.contact-message {
    margin-top: 18px;
    font-style: italic;
    color: #b0ffdd;
}

/* Remove section-specific backgrounds for a unified look */
.home-section,
.about-section,
.skills-section,
.services-section,
.contact-section {
    background: none;
}

/* Responsive Design */
@media (max-width: 900px) {
    nav {
        width: calc(100% - 12px);
        margin: 16px auto 0 auto;
        padding: 8px 2vw;
        border-radius: 24px;
    }
    .logo {
        font-size: 1.3rem;
        margin-right: 10px;
        height: 36px;
    }
    .nav-links a {
        height: 32px;
    }
    .section-content {
        padding: 28px 10px;
    }
    .section h1 {
        font-size: 2rem;
    }
    .section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    nav {
        width: 98vw;
        margin: 8px auto 0 auto;
        padding: 6px 1vw;
        border-radius: 16px;
    }
    .logo {
        font-size: 1rem;
        margin-right: 5px;
        height: 28px;
    }
    .nav-links a {
        height: 24px;
    }
    .section {
        padding: 90px 0 40px 0;
    }
    .section-content {
        padding: 18px 2vw;
    }
    .section h1 {
        font-size: 1.3rem;
    }
    .section h2 {
        font-size: 1.1rem;
    }
    .skills-list li, .services-list li, .contact-list li {
        font-size: 0.98rem;
    }
    #backToTop {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
        bottom: 16px;
        right: 16px;
    }
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    .menu-icon:hover {
        background: none !important;
        box-shadow: none !important;
        transform: none !important;
        /* Remove all hover effects on small devices */
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: 420px;
        margin: 0 auto;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        background: rgba(25, 25, 55, 0.95);
        z-index: 3000;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border-radius: 24px;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .nav-links a {
        padding: 12px 25px;
        display: block;
        width: 200px;
        text-align: center;
    }
    .name {
        font-size: 24px;
    }
    .logo {
        font-size: 1.3rem;
        margin-right: 10px;
    }
}

/* Back to top button */
#backToTop {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: linear-gradient(90deg, #4da3ff, #00ff88);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 3000;
}
#backToTop.visible {
    opacity: 1;
    pointer-events: auto;
}

#contactForm {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.13);
    color: #fff;
    font-size: 1rem;
    resize: none;
    margin-bottom: 4px;
}
#contactForm input:focus,
#contactForm textarea:focus {
    outline: 2px solid #4da3ff;
    background: rgba(77,163,255,0.10);
}
.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
#sendEmailBtn {
    background: linear-gradient(90deg, #4da3ff, #005bea);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(77,163,255,0.10);
}
#sendEmailBtn:hover {
    background: linear-gradient(90deg, #005bea, #4da3ff);
    box-shadow: 0 4px 16px rgba(77,163,255,0.18);
}

#sendWhatsAppBtn {
    background: linear-gradient(90deg, #25d366, #128c7e);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(37,211,102,0.10);
}
#sendWhatsAppBtn:hover {
    background: linear-gradient(90deg, #128c7e, #25d366);
    box-shadow: 0 4px 16px rgba(37,211,102,0.18);
}

#formStatus {
    margin-top: 10px;
    font-size: 0.98rem;
    color: #00ff88;
    min-height: 18px;
}

.site-footer {
    width: 100%;
    background: rgba(30, 40, 60, 0.95);
    color: #b3e5fc;
    padding: 28px 0 18px 0;
    text-align: center;
    font-size: 1.05rem;
    letter-spacing: 1px;
    margin-top: 40px;
    box-shadow: 0 -2px 16px 0 rgba(77,163,255,0.08);
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.footer-message {
    color: #00ff88;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}
@media (max-width: 600px) {
    .site-footer {
        font-size: 0.95rem;
        padding: 18px 0 10px 0;
    }
    .footer-message {
        font-size: 0.95rem;
    }
}

.footer-social {
    margin: 12px 0 6px 0;
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}
.footer-social a {
    color: #b3e5fc;
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
}
.footer-social a[aria-label="GitHub"]:hover { color: #333; }
.footer-social a[aria-label="LinkedIn"]:hover { color: #0077b5; }
.footer-social a[aria-label="Instagram"]:hover { color: #e1306c; }
.footer-social a[aria-label="Facebook"]:hover { color: #1877f3; }
.footer-social a[aria-label="Indeed"]:hover { color: #2164f3; }
.footer-social a[aria-label="Email"]:hover { color: #00ff88; }
.footer-social a:hover { transform: scale(1.18) translateY(-2px); }
.footer-location {
    color: #b3e5fc;
    font-size: 0.98rem;
    margin-top: 2px;
    letter-spacing: 1px;
}

.form-buttons button:hover {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 12px rgba(77,163,255,0.2);
    transition: background 0.2s, box-shadow 0.2s;
}

.download-cv-btn:hover {
    background: linear-gradient(90deg, #4da3ff, #00ff88);
    color: #fff;
    box-shadow: 0 4px 16px rgba(77,163,255,0.18);
    transform: translateY(-2px) scale(1.07);
    border: none;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

/* Make web technology icons in skills section larger */
.skills-list .tech-skill i {
    font-size: 56px; /* ~2cm */
    vertical-align: middle;
    margin-right: 18px;
    /* Optionally add a little shadow for pop */
    text-shadow: 0 2px 8px rgba(77,163,255,0.10);
}

.skills-list .tech-skill i:hover {
    transform: scale(1.22);
    filter: drop-shadow(0 0 8px #4da3ff88);
    transition: transform 0.18s, filter 0.18s;
    cursor: pointer;
}

.web-tech-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px; /* ~1.5cm on most screens */
    margin-top: 12px;
    margin-bottom: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tech-skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #4da3ff;
    border-radius: 18px;
    padding: 18px 18px 12px 18px;
    background: rgba(30,40,60,0.85);
    box-shadow: 0 2px 16px 0 rgba(77,163,255,0.08);
    margin-bottom: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 130px;
    height: 110px;
    box-sizing: border-box;
}
.tech-skill:hover {
    border-color: #00ff88;
    box-shadow: 0 4px 24px 0 rgba(0,255,136,0.18), 0 2px 8px rgba(77,163,255,0.18);
}
.tech-skill:active,
.tech-skill:focus,
.tech-skill:focus-visible {
    box-shadow: 0 0 24px 6px #fff !important;
    border-color: #fff !important;
}
.tech-label {
    margin-top: 10px;
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    user-select: none;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tech-skill i,
.tech-skill .fa,
.tech-skill svg {
    margin: 0;
    align-self: center;
    justify-self: center;
    transform: none;
}

.tech-skill:hover i,
.tech-skill:hover .fa,
.tech-skill:hover svg {
    filter: none !important;
    transform: none !important;
    cursor: default !important;
    transition: none !important;
}

.tech-skill.html-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tech-skill.html-logo i {
    margin: 0;
    align-self: center;
    justify-self: center;
    transform: none;
}

.css-logo i,
.bootstrap-logo i,
.js-logo i,
.react-logo i,
.github-logo i,
.firebase-logo i {
    margin: 0 auto !important;
    align-self: center !important;
    justify-self: center !important;
    display: block;
    transform: none !important;
}

.tech-skill.html-logo:hover {
    border-color: #e44d26;
    box-shadow: 0 0 16px 0 #e44d26cc;
}
.tech-skill.css-logo:hover {
    border-color: #1572b6;
    box-shadow: 0 0 16px 0 #1572b6cc;
}
.tech-skill.bootstrap-logo:hover {
    border-color: #563d7c;
    box-shadow: 0 0 16px 0 #563d7ccc;
}
.tech-skill.js-logo:hover {
    border-color: #f7df1e;
    box-shadow: 0 0 16px 0 #f7df1ecc;
}
.tech-skill.react-logo:hover {
    border-color: #61dafb;
    box-shadow: 0 0 16px 0 #61dafbcc;
}
.tech-skill.github-logo:hover {
    border-color: #fff;
    box-shadow: 0 0 16px 0 #ffffffcc;
}
.tech-skill.firebase-logo:hover {
    border-color: #FFA611;
    box-shadow: 0 0 16px 0 #FFA611cc;
}
.tech-skill .shadcn-logo:hover,
.tech-skill.shadcn-logo:hover {
    border-color: #ffffff;
    /* box-shadow: 0 0 16px 0 #ffffffcc !important; */
}

