/* ============================================
   FANNI SZABÓ - PROFESSIONAL PORTFOLIO
   Cream (#F5E6D3) & Warm Brown (#8B7355)
   ============================================ */

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

:root {
    --cream: #F5E6D3;
    --light-cream: #FAF7F2;
    --warm-brown: #8B7355;
    --dark-brown: #5C4A3D;
    --accent-brown: #A0826D;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #F5E6D3 0%, #FAF7F2 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 230, 211, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #E8DDD0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-brown);
    transition: width 0.3s ease;
}

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

.lang-select {
    padding: 0.6rem 1rem;
    background: var(--cream);
    border: 1px solid var(--warm-brown);
    border-radius: 2px;
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.lang-select:hover {
    background: var(--warm-brown);
    color: var(--light-cream);
}

.lang-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.2);
}

/* ============================================
   PAGES CONTAINER
   ============================================ */

.pages-container {
    margin-top: var(--nav-height, 70px);
    min-height: calc(100vh - var(--nav-height, 70px));
}

.page {
    display: none;
    min-height: calc(100vh - var(--nav-height, 70px));
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: calc(100vh - var(--nav-height, 70px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ============================================
   PAGE TITLE
   ============================================ */

.page-title {
    font-size: 4rem;
    margin-bottom: 3rem;
    color: var(--dark-brown);
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.page-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-brown), var(--accent-brown));
    margin: 1.5rem auto 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   INTRO PAGE
   ============================================ */

.intro-content {
    justify-content: flex-start;
    padding-top: 2rem;
    background-image: url('../img/background/background.jpg'), linear-gradient(135deg, rgba(245, 230, 211, 0.5) 0%, rgba(160, 130, 109, 0.1) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border-radius: 0;
    min-height: 700px;
    position: relative;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
    padding: 3rem;
    background: none;
    border-radius: 0;
    justify-items: center;
}

.intro-left {
    display: none;
    justify-content: center;
}

.profile-container {
    position: relative;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #E8DDD0 0%, #D4C4B0 50%, #C0B0A0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    outline: none;
}

.intro-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 115px 0 0 450px; /* FENT: 50px, BALRÓL: 520px */
}

.intro-hello {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.85), 0 1px 3px rgba(255, 255, 255, 0.9);
}

.intro-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.85), 0 1px 4px rgba(255, 255, 255, 0.9);
}

.intro-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.85), 0 1px 3px rgba(255, 255, 255, 0.9);
}

.intro-email {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--warm-brown);
    text-decoration: underline;
    transition: all 0.3s ease;
    font-weight: 500;
    width: fit-content;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.85), 0 1px 3px rgba(255, 255, 255, 0.9);
}

.intro-email:hover {
    color: var(--dark-brown);
}

/* ============================================
   BRANDS SECTION
   ============================================ */

.brands-section {
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--accent-brown) 100%);
    padding: 5rem 2rem;
    text-align: center;
    width: 100%;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.brands-content {
    max-width: 1400px;
    margin: 0 auto;
}

.brands-title {
    font-size: 1.8rem;
    color: var(--light-cream);
    margin-bottom: 3rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-height: 120px;
}

.brand-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.brand-card img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    width: auto;
}

.brands-more {
    color: var(--light-cream);
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* ============================================
   ANALYTICS PAGE — cinematic dark theme
   ============================================ */

#analytics-page.page.active {
    background:
        radial-gradient(ellipse at 15% 0%, rgba(160, 130, 109, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 100%, rgba(160, 130, 109, 0.15) 0%, transparent 55%),
        linear-gradient(160deg, #1C1712 0%, #2B2117 50%, #1C1712 100%);
}

#analytics-page .page-title {
    color: var(--light-cream);
}

#analytics-page .page-title::after {
    background: linear-gradient(90deg, var(--accent-brown), #E8C9A0);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 5rem;
}

.stat-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 3rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(232, 201, 160, 0.15);
    border-top: 1px solid rgba(232, 201, 160, 0.3);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(24px);
    animation: statRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    display: flex;
    flex-direction: column;
}

.stat-main {
    flex: 1;
}

.stat-number-sm {
    font-size: 2.1rem !important;
}

/* ---- Expand / details toggle ---- */

.stat-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem auto 0;
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(232, 201, 160, 0.35);
    border-radius: 30px;
    color: #E8C9A0;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-toggle:hover {
    background: rgba(232, 201, 160, 0.1);
    border-color: rgba(232, 201, 160, 0.6);
}

.stat-toggle .toggle-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card.expanded .stat-toggle .toggle-icon {
    transform: rotate(180deg);
}

.stat-details {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card.expanded .stat-details {
    grid-template-rows: 1fr;
}

.stat-details-inner {
    overflow: hidden;
    min-height: 0;
}

.stat-details .stat-details-inner {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(232, 201, 160, 0.15);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
}

.detail-label {
    font-size: 0.8rem;
    color: #C9B8A8;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--light-cream);
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}

.detail-group + .detail-group {
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px dashed rgba(232, 201, 160, 0.15);
}

.detail-group-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #E8C9A0;
    margin-bottom: 0.5rem;
}

.detail-group-title span {
    color: #8A7A6A;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 0.7rem;
}

.analytics-grid .stat-card:nth-child(1) { animation-delay: 0.05s; }
.analytics-grid .stat-card:nth-child(2) { animation-delay: 0.15s; }
.analytics-grid .stat-card:nth-child(3) { animation-delay: 0.25s; }
.analytics-grid .stat-card:nth-child(4) { animation-delay: 0.35s; }

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

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 201, 160, 0.25);
    border-color: rgba(232, 201, 160, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E8C9A0 0%, var(--accent-brown) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #C9B8A8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ============================================
   SOCIAL MEDIA SECTION — cinematic dark theme
   ============================================ */

.social-section {
    width: 100%;
    max-width: 1200px;
    margin-top: 2rem;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(232, 201, 160, 0.15);
}

.social-title {
    font-size: 1.6rem;
    color: var(--light-cream);
    margin-bottom: 3rem;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
    border-radius: 6px;
    border: 1px solid rgba(232, 201, 160, 0.12);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: statRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.social-links-grid .social-link-card:nth-child(1) { animation-delay: 0.05s; }
.social-links-grid .social-link-card:nth-child(2) { animation-delay: 0.12s; }
.social-links-grid .social-link-card:nth-child(3) { animation-delay: 0.19s; }
.social-links-grid .social-link-card:nth-child(4) { animation-delay: 0.26s; }
.social-links-grid .social-link-card:nth-child(5) { animation-delay: 0.33s; }
.social-links-grid .social-link-card:nth-child(6) { animation-delay: 0.4s; }

.social-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 201, 160, 0.08), transparent);
    transition: left 0.5s ease;
}

.social-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border-color: rgba(232, 201, 160, 0.35);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

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

.social-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    padding: 13px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    box-shadow: 0 0 0 rgba(37, 244, 238, 0);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0e5fc9 100%);
}

.social-icon.snapchat {
    background: linear-gradient(135deg, #FFFC00 0%, #e6e300 100%);
    color: #000;
}

.social-icon.telegram {
    background: linear-gradient(135deg, #29b6f6 0%, #0088cc 100%);
}

.social-icon.veyatalk {
    background: linear-gradient(135deg, #A0826D 0%, #8B7355 100%);
}

.social-link-card:hover .social-icon {
    transform: scale(1.08);
}

.social-link-card:hover .social-icon.tiktok { box-shadow: 0 0 20px rgba(255, 255, 255, 0.15); }
.social-link-card:hover .social-icon.instagram { box-shadow: 0 0 20px rgba(220, 39, 67, 0.5); }
.social-link-card:hover .social-icon.facebook { box-shadow: 0 0 20px rgba(24, 119, 242, 0.5); }
.social-link-card:hover .social-icon.snapchat { box-shadow: 0 0 20px rgba(255, 252, 0, 0.4); }
.social-link-card:hover .social-icon.telegram { box-shadow: 0 0 20px rgba(0, 136, 204, 0.5); }
.social-link-card:hover .social-icon.veyatalk { box-shadow: 0 0 20px rgba(160, 130, 109, 0.5); }

.social-info {
    flex: 1;
}

.social-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--light-cream);
}

.social-info p {
    font-size: 0.88rem;
    color: #A8998A;
}

.arrow {
    font-size: 1.3rem;
    color: #E8C9A0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.social-link-card:hover .arrow {
    transform: translateX(6px);
    opacity: 1;
}


/* ============================================
   GALLERY PAGES
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--light-cream);
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   VIDEO GRID
   ============================================ */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: #000;
    aspect-ratio: 9/16;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CONTENT PAGE
   ============================================ */

.content-section {
    text-align: center;
    max-width: 800px;
}

.content-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--warm-brown);
    color: var(--light-cream);
    border: none;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.contact-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 1024px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-container {
        width: 300px;
        height: 300px;
    }

    .intro-title {
        font-size: 4rem;
    }

    .page-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.85rem 1.25rem;
    }

    .nav-logo {
        flex: 1;
        text-align: left;
        font-size: 1.25rem;
    }

    .lang-select {
        order: 2;
    }

    .nav-menu {
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
        gap: 1.25rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .page-content {
        padding: 2rem 1rem;
    }

    .intro-wrapper {
        gap: 1.5rem;
        padding: 2rem;
    }

    .profile-container {
        width: 250px;
        height: 250px;
    }

    .intro-content {
        min-height: 500px;
        background-position: center;
        padding-top: 1rem;
    }

    .intro-right {
        margin: 0 auto !important;
        max-width: 100%;
        padding: 0 1rem 0 3rem; /* BALRÓL 3rem padding, hogy ne lógjon bele a képbe */
    }

    .intro-title {
        font-size: 3rem;
    }

    .intro-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1.5rem;
    }

    .brand-card {
        padding: 1.5rem;
        min-height: 100px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-link-card {
        padding: 1.2rem 1.5rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .social-info h3 {
        font-size: 1rem;
    }

    .social-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem;
    }

    .lang-select {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .page-content {
        padding: 1.5rem 1rem;
    }

    .profile-container {
        width: 200px;
        height: 200px;
    }

    .intro-hello {
        font-size: 1.3rem;
    }

    .intro-content {
        min-height: 450px;
        background-position: center;
    }

    .intro-right {
        margin: 0 auto !important;
        padding: 0 1rem 0 3.5rem; /* Mobilon még picit több hely balról */
    }

    .intro-title {
        font-size: 2.2rem;
    }

    .intro-subtitle {
        font-size: 0.85rem;
    }

    .intro-email {
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .brand-card {
        padding: 1rem;
        min-height: 80px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-number-sm {
        font-size: 1.6rem !important;
    }

    .stat-toggle {
        font-size: 0.7rem;
        padding: 0.5rem 1.1rem;
    }

    .detail-value {
        font-size: 0.85rem;
    }

    .contact-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-link-card {
        padding: 1rem 1.2rem;
        gap: 1rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .social-info h3 {
        font-size: 0.95rem;
    }

    .social-info p {
        font-size: 0.8rem;
    }

    .arrow {
        font-size: 1.2rem;
    }
}

/* ============================================
   CONTACT MODAL
   ============================================ */

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.contact-modal-content {
    background: var(--light-cream);
    border-radius: 2px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--dark-brown);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #E8DDD0;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-brown);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--warm-brown);
    color: var(--light-cream);
    border: none;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact-modal-content {
        padding: 2rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .close-modal {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-modal {
        padding: 1rem;
    }

    .contact-modal-content {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        gap: 0.3rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   ABOUT ME SECTION
   ============================================ */

.about-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-info-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
}

.about-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-info-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.about-info-text h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--warm-brown);
    margin-bottom: 0.3rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.about-info-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-bio-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--warm-brown);
}

.about-bio-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

@media (max-width: 768px) {
    .about-bio-section {
        padding: 2rem;
    }
    
    .about-bio-text {
        font-size: 1.05rem;
        text-align: left;
    }
}

/* ============================================
   EMAIL CONTACT BOX
   ============================================ */

.email-contact-box {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.email-label {
    color: var(--light-cream);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
}

.email-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.email-wrapper:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

#contactEmail {
    color: var(--light-cream);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: var(--light-cream);
    color: var(--warm-brown);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.copy-btn:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn .tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-brown);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.copy-btn:hover .tooltip {
    opacity: 1;
    bottom: 130%;
}

.copy-btn.copied {
    background: #4CAF50;
    color: white;
}
