﻿

/* === Glassmorphism Effect === */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .glass-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
    }

/* === Tech Badges (Animated) === */
.tech-badge {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

    .tech-badge::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( to bottom right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60% );
        transform: rotate(30deg);
    }

    .tech-badge:hover::after {
        animation: shine 1.5s infinite;
    }

@keyframes shine {
    100% {
        left: 150%;
    }
}

/* === Buttons (Pro UX) === */
.btn-github {
    background: #333;
    color: white;
    border-radius: 8px;
    border: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

    .btn-github:hover {
        background: #444;
        transform: scale(1.02);
    }

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border: none;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

    .btn-primary:hover {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    }

/* === Dark Mode === */
.dark-mode .glass-card {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.05);
}

.dark-mode .tech-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

.section-body {
    background-image: linear-gradient(to left bottom, #6dc7cb, #63c3d4, #5fbedd, #63b9e3, #6fb2e7, #6db6ed, #6bbbf2, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.row-card {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.culumn-card {
    width: 360px;
    background: #ffffff;
    padding: 18px;
    margin: 36px;
    box-shadow: 0px 0px 63px 36px rgba(0,0,0,0.18);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .culumn-card p {
        text-align: justify;
    }

.image-realm {
    max-width: 360px;
    height: 270px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
}

img.culumn-card {
    width: 100%;
}

.section-header {
    width: 100%;
    height: 90px;
    top: 0;
    left: 0;
    position: fixed;
    background: #ffffff;
}

.header-row {
    display: flex;
}

.header-column {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .header-column ul {
        width: 80vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-column li {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.section-footer {
    width: auto;
    height: 90px;
    position: absolute;
    bottom: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1080px;
}

.footer-column {
    display: flex;
    justify-content: center;
    align-items: space-between;
}

    .footer-column ul {
        display: flex;
        justify-content: center;
        align-items: space-between;
    }

    .footer-column li {
        width: 100%;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

.button-buy {
    color: #ffffff;
    background: #333333;
    text-align: center;
    padding: 9px 36px;
    text-decoration: none;
    border-radius: 18px;
    width: 200px;
}

h1 {
    font-size: 27px;
    color: #333e4e;
    line-height: 1em;
}