/* Alap stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #121212;
    color: #FFFFFF;
    line-height: 1.6;
    padding: 20px;
    font-size: 16px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    background: #1E1E1E;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Profil szekció */
.profile-section {
    text-align: center;
    padding: 40px;
    border-bottom: 2px solid #333;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

.name {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: #d8470e;
    font-weight: bold;
}

.description {
    color: #B3B3B3;
    margin-bottom: 25px;
    font-style: italic;
}

.social-links .btn {
    display: inline-block;
    margin: 12px 8px;
    padding: 12px 24px;
    color: #FFF;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.social-links .discord {
    background: #7289DA;
}

.social-links .instagram {
    background: linear-gradient(135deg, #003087, #0070e0);
}

.social-links .github {
    background: #333;
}

.social-links .btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* Projektek */
.projects-section {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: bold;
}

.project-card {
    background: #252525;
    padding: 25px;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.project-info {
    flex: 1;
    padding-right: 20px;
}

.project-info h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #fff;
    font-weight: bold;
}

.project-info a {
    display: inline-block;
    padding: 12px 24px;
    color: #ffe0d4;
    text-decoration: none;
    background-color: #ff9710; /* Discord szín */
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.project-info a:hover {
    background-color: #ff7810; /* Sötétebb árnyalat */
}

.project-image {
    width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
/* A toast alapstílusai */
.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #ff7810;
    color: white;
    text-align: center;
    border-radius: 20px; /* Kerek sarkok */
    padding: 16px 30px;  /* Belső térköz */
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2); /* Árnyék hozzáadása */
}

/* A toast megjelenése */
.toast.show {
    visibility: visible;
    opacity: 1;
}

/* A toast animációk */
.toast {
    animation: slidein 0.5s ease-out, fadeout 3s 2.5s forwards;
}

/* A slide animáció */
@keyframes slidein {
    from {
        bottom: -50px;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

/* Az eltűnés animációja */
@keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* Munkák szekció */
.work-section {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.work-card {
    background: #252525;
    padding: 25px;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.work-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: bold;
}

.work-card p {
    color: #b3b3b3;
    font-size: 1rem;
}


