/* CSS Változók - Fekete-rózsaszín színséma */
:root {
    --primary-color: #ff1493;
    --primary-dark: #c7158c;
    --primary-light: #ff69b4;
    --secondary-color: #1a1a1a;
    --accent-color: #ff1493;
    --light-bg: #0a0a0a;
    --dark-bg: #000000;
    --text-dark: #ffffff;
    --text-light: #cccccc;
    --text-white: #ffffff;
    --shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --container-width: 1200px;
}

/* Galéria előnézet stílusok a fő oldalon */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-preview-item {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-preview-item:hover {
    transform: translateY(-5px);
}

.gallery-preview-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-preview-image i {
    font-size: 3rem;
}

/* Bejelentkezési link stílus */
.login-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.login-link:hover {
    color: var(--primary-light);
}

/* Alap stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #000000;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Gombok */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border: none;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

/* Fejléc */
.header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(255, 20, 147, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--text-white);
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.social-header {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #C13584);
}

.social-icon.tiktok {
    background-color: #000000;
    border: 2px solid var(--primary-color);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
}

/* Hero rész */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow);
}

.image-placeholder i {
    font-size: 6rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Section stílusok */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Rólam rész */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Szolgáltatások */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #2a2a2a;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Galéria előnézet */
.gallery-preview {
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #2a2a2a;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.gallery-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-image-placeholder i {
    font-size: 3rem;
}

.gallery-item p {
    padding: 20px;
    text-align: center;
    font-weight: 500;
    color: var(--text-white);
}

.text-center {
    text-align: center;
}

/* Kapcsolat */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3, .contact-instructions h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-white);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #2a2a2a;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-item small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-work-image {
    width: 67%;
    height: 67%;
    max-height: 2000000px;
    object-fit: cover;
    border-radius: 100000000px;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
}

/* Mobilon elrejtjük a képet */
@media (max-width: 768px) {
    .hero-image {
        display: none;
    }
}

/* Gépen mutatjuk */
@media (min-width: 769px) {
    .hero-image {
        display: block;
    }
}

/* Régi placeholder stílusok eltávolítása vagy módosítása */
.image-placeholder {
    display: none;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-instructions ol {
    margin-bottom: 20px;
}

.contact-instructions li {
    margin-bottom: 10px;
    padding-left: 25px;
    color: var(--text-light);
    position: relative;
}

.contact-instructions li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.instagram-cta {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid #2a2a2a;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Lábléc */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo h3 {
    font-size: 1.8rem;
}

.footer-logo p {
    color: #aaa;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-social p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-link {
    color: var(--primary-color);
    font-weight: 500;
}

.admin-link:hover {
    text-decoration: underline;
}

/* Admin link elrejtése normál látogatóknak */
.admin-link {
    display: none;
}

/* Reszponzív design */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
}

/* Mobil (768px alatt) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(255, 20, 147, 0.2);
        z-index: 999;
        margin: 0;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links a {
        padding: 15px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #2a2a2a;
        display: block;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.95);
    }
    
    .social-header {
        display: none;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-info {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .image-placeholder i {
        font-size: 4rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Kis mobil (480px alatt) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .about-stats {
        gap: 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item i {
        font-size: 2rem;
    }
    
    .instagram-cta {
        padding: 20px;
    }
}

/* Extra kis kijelzők (320px alatt) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* Nyomtatási stílusok */
@media print {
    .header, .footer, .hero-buttons, .social-header {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .container {
        max-width: 100%;
    }
    
    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}