* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #1b1b2f, #000c1f);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px 5px 30px;
    background: transparent;
    backdrop-filter: blur(5px);
    z-index: 1000;
    min-height: 61px;
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
    line-height: 25.6px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff7e5f;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff7e5f;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #ff7e5f;
}

.nav-link.active::after {
    width: 100%;
    background: #ff7e5f;
}

/* Main Content */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 3px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}
.profile-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: bold;
    font-family: 'Bebas Neue', cursive;
    color: white;
}

.bio-section{
    min-height: 527px;
}

.bio-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff7e5f;
}

.bio-section p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-category h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(255, 126, 95, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #ffffff;
    border: 1px solid rgba(255, 126, 95, 0.3);
}

.nav-link.hamarosan {
    pointer-events: none;
    opacity: 0.5;
    position: relative;
    overflow: visible;
}

.nav-link.hamarosan::before {
    content: 'HAMAROSAN';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
    background: #ff7e5f;
    padding: 2px 6px;
    border-radius: 5px;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 126, 95, 0.6);
    z-index: 10;
}

.nav-link.hamarosan:hover {
    color: #ffffff;
}

.nav-link.hamarosan:hover::after {
    width: 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        font-size: 28px;
    }

    .nav-right {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 10px;
    }

    .logo {
        font-size: 24px;
    }

    .nav-right {
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
    }

    .nav-link.hamarosan::before {
        font-size: 7px;
        padding: 1px 4px;
        background: rgba(255, 126, 95, 0.9);
        letter-spacing: 0.3px;
    }
}

/* Extra kis képernyőkhöz (360px és kisebb) */
@media (max-width: 380px) {
    .navbar {
        padding: 8px 8px;
    }

    .logo {
        font-size: 22px;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-link {
        font-size: 11px;
    }

    .nav-link.hamarosan::before {
        font-size: 7px;
        padding: 1px 3px;
        background: rgba(255, 126, 95, 0.85);
        letter-spacing: 0.2px;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    z-index: 100;
    pointer-events: none;
}

strong {
  color: #ff7e5f;
  font-weight: 600;
}

.wave {
  display: inline-block;
  transform-origin: 70% 70%; /* pivotpont a "csuklónál" */
  animation: wave-animation 2s infinite;
  font-size: 24px;
}

@keyframes wave-animation {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
