:root {
    --rose: #c08a92;
    --rose-dark: #a76f78;
    --cream: #fdfbf9;
    --beige: #f8f4f2;
    --text: #3a3a3a;
    --text-light: #6b5f5a;
    --border: #e5ddd9;
    --heading: #2a2420;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--heading);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER --- */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0eae6;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    letter-spacing: 0.5px;
    color: var(--heading);
    text-decoration: none;
    font-weight: 500;
}

.logo span {
    color: var(--rose);
}

nav {
    display: flex;
    gap: 38px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #5a524e;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--rose);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rose);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    color: #3a3a3a;
    -webkit-appearance: none;
}

.mobile-toggle svg {
    display: block;
    stroke: currentColor;
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #e8dcd5;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1522771930-78848d9293e8?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 35%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.35));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 0 24px;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 4.5rem);
    color: white;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    margin-bottom: 36px;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.btn {
    display: inline-block;
    background: var(--rose);
    color: white;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 138, 146, 0.3);
}

/* --- SZEKCIÓK --- */
section {
    padding: 100px 24px;
}

section h2 {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 60px;
}

/* Üdvözöllek */
.welcome {
    background: #fff;
    text-align: center;
}

.welcome p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: #777;
    font-weight: 300;
}

/* Portfólió */
.portfolio {
    background: var(--beige);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1080px;
    margin: 0 auto;
}

.card {
    text-align: center;
}

.card-image {
    width: 100%;
    height: 460px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.card:hover .card-image img {
    transform: scale(1.04);
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.card p {
    font-size: 14px;
    color: #888;
    font-weight: 300;
}

/* --- FOOTER --- */
footer {
    background: var(--beige);
    border-top: 1px solid #ede5e0;
    margin-top: 100px;
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--heading);
    font-weight: 500;
}

.footer-col p,
.footer-col a {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--rose);
}

.footer-bottom {
    border-top: 1px solid #e5ddd9;
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: #8a7f7a;
}

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: auto;
        min-height: 56px;
        padding: 14px 48px 14px 0;
        position: relative;
        align-items: center;
    }
    .logo {
        font-size: 22px;
        white-space: nowrap;
    }
    nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 8px 0 0;
        border-top: 1px solid #f0eae6;
        box-shadow: 0 8px 16px rgba(0,0,0,.04);
        z-index: 99;
    }
    nav.active {
        display: flex !important;
    }
    nav a {
        width: 100%;
        padding: 14px 24px;
        text-align: left;
        border-bottom: 1px solid #f5f0ed;
        font-size: 15px;
    }
    nav a:last-child {
        border: 0;
    }
    nav a.active::after {
        display: none;
    }
    .mobile-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    section {
        padding: 80px 24px;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Rólam oldal */
.about {
    padding: 100px 24px;
}

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-grid img {
    width: 100%;
    border-radius: 16px;
}

.about-grid h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 24px;
    text-align: left;
}

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

.about-grid .btn {
    margin-top: 12px;
}

@media(max-width:900px){
    .about-grid{
        grid-template-columns:1fr; 
        gap: 50px;
        text-align: center;
    }
    .about-grid h2 {
        text-align: center;
    }
}
/* Kapcsolat / Időpontfoglalás oldal */
.booking-section {
    padding: 100px 24px;
    max-width: 1150px;
    margin: 0 auto;
}

.booking-header h2 {
    text-align: center;
    font-size: 3em;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--heading);
}

.booking-header p {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 70px;
    line-height: 1.6;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: start;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: #fff;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(192, 138, 146, 0.15);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    background: var(--rose);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--rose-dark);
    transform: translateY(-1px);
}

/* Jobb oldali infó oszlop */
.info-col h3 {
    font-size: 26px;
    margin-bottom: 22px;
}

.info-block {
    margin-bottom: 42px;
}

.info-block h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a7f7a;
    margin-bottom: 14px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: #5a524e;
    font-size: 15px;
    line-height: 1.5;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--rose);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--rose);
}

.hours p {
    color: #5a524e;
    font-size: 14px;
    margin-bottom: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: #6b5f5a;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(192, 138, 146, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* Kapcsolat oldal */
.booking-section {
    padding: 100px 24px;
    max-width: 1150px;
    margin: 0 auto;
}

.booking-header h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 14px;
}

.booking-header p {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 70px;
    line-height: 1.6;
}

.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
    align-items: start;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    margin-top: 6px;
    background: #fff;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(192, 138, 146, 0.15);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    background: var(--rose);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 16px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--rose-dark);
    transform: translateY(-1px);
}

.info-col {
    position: sticky;
    top: 120px;
}

.info-block {
    margin-bottom: 42px;
}

.info-col h3 {
    font-size: 26px;
    margin-bottom: 22px;
}

.info-block h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a7f7a;
    margin-bottom: 14px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: #5a524e;
    font-size: 15px;
    line-height: 1.5;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--rose);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--rose);
}

/* Árak oldal */
.pricing {
    padding: 100px 24px;
    text-align: center;
}

.pricing-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 500px;
    margin: -40px auto 70px;
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.price-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 16px;
    border: 1px solid #f0eae6;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.price-card.featured {
    border: 2px solid var(--rose);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rose);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.price {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    margin: 12px 0 24px;
    text-align: center;
    color: var(--heading);
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
}

.price-features li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '✓';
    color: var(--rose);
    font-weight: 600;
    font-size: 16px;
}

.price-btn {
    width: 100%;
    display: block;
    text-align: center;
    background: transparent;
    color: var(--rose);
    border: 1.5px solid var(--rose);
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background: var(--rose);
    color: white;
}

.featured .price-btn {
    background: var(--rose);
    color: white;
}

.featured .price-btn:hover {
    background: var(--rose-dark);
}

@media (max-width: 960px) {
    .booking-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .info-col {
        position: static;
    }
    .price-card.featured {
        transform: scale(1);
    }
}
/* Galéria oldal - 6 kategória kártya */
.gallery-page {
    padding: 100px 24px;
}

.gallery-page h2 {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 60px;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1080px;
    margin: 0 auto 80px;
}

.category-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card-image {
    width: 100%;
    height: 460px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.04);
}

.category-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease;
}

.category-card:hover h3 {
    text-decoration-color: var(--rose);
}

.category-card p {
    font-size: 14px;
    color: #888;
    font-weight: 300;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease;
}

.category-card:hover p {
    text-decoration-color: #bbb;
}

/* Galéria szekciók */
.category-gallery {
    padding: 80px 24px;
    border-top: 1px solid #f0eae6;
    scroll-margin-top: 80px;
}

.category-gallery h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

@media (max-width: 960px) {
    .category-cards {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .category-card-image {
        height: 380px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-grid img {
        height: 200px;
    }
}
/* Lightbox galériához */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

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

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gallery-grid img {
    cursor: zoom-in;
}
/* Social ikonok */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--heading);
}

.social-icons a:hover {
    background: var(--rose);
    color: white;
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}
/* Kapcsolat oldal 2 oszlop */
.contact-page {
    padding: 80px 0;
}

.contact-page h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-page > .container > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose);
}

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

.contact-info {
    padding-top: 10px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.info-item svg {
    width: 20px;
    height: 20px;
    color: var(--rose);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-block p {
    margin: 5px 0;
    line-height: 1.6;
}

.contact-info .social-icons {
    margin-top: 10px;
}

/* Mobil */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* Elérhetőségek - linkek örököljék a szöveget */
.contact-info .info-item a,
.contact-info .contact-item a {
    color: inherit;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.contact-info .info-item a:hover {
    color: var(--rose);
}

/* Ikonok mérete egységes */
.contact-info .info-item svg,
.contact-info .contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--rose);
}
.lightbox-prev,.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    transition: background.2s;
}
.lightbox-prev:hover,.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}
@media (max-width: 768px) {
   .lightbox-prev,.lightbox-next { width: 45px; height: 45px; font-size: 30px; }
   .lightbox-prev { left: 10px; }
   .lightbox-next { right: 10px; }
}
/* Portfólió kártyák linkként */
.portfolio-grid a.card,
.portfolio-grid a.card:visited {
  color: inherit;
  text-decoration: none;
  display: block;
}

.portfolio-grid a.card h3,
.portfolio-grid a.card p {
  color: inherit;
  text-decoration: none;
}