/* =========================================
   ÁLTALÁNOS BEÁLLÍTÁSOK
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, nav a {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
    padding-top: 70px; 
    padding-bottom: 80px; 
}

strong {
    font-weight: 600; 
}

/* --- VÉKONY RÖGZÍTETT FEHÉR FEJLÉC --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #ffffff; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-bottom: 3px solid #6a4c8c;
}

.header-logo {
    font-family: 'Alfa Slab One', serif;
    font-size: 22px; 
    color: #111111; 
    letter-spacing: 2px;
}

nav a {
    text-decoration: none;
    color: #111111; 
    margin-left: 30px;
    font-size: 16px;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #6a4c8c; 
}

nav a.active {
    border-bottom: 2px solid #111111; 
    color: #6a4c8c;
}

/* =========================================
   1. SÖTÉT TÉMA (KIK VAGYUNK & WEBSHOP ALAPOK)
   ========================================= */
body.dark-theme {
    background-color: #1a1a1a; 
    color: #ffffff;
    overflow-x: hidden;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    flex-grow: 1;
    position: relative;
    z-index: 5;
}

.content-left {
    flex: 1;
    max-width: 580px; 
}

.content-left h1 {
    font-size: 5.5rem;
    line-height: 0.9;
    margin-bottom: 30px;
}

.content-left h1 span {
    color: #6a4c8c;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #ffffff; 
    font-weight: 400; 
}

.about-list {
    list-style: none;
    margin-bottom: 45px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.08); 
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #6a4c8c;
    transition: transform 0.3s ease;
}

.about-list li:hover {
    transform: translateX(5px);
}

.about-list i {
    color: #6a4c8c;
    font-size: 26px;
    margin-right: 20px;
    margin-top: 5px;
}

.list-title {
    display: block;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.about-list p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f1f5f9; 
}

.btn-primary {
    display: inline-block;
    background-color: #6a4c8c;
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(106, 76, 140, 0.4);
}

.btn-primary:hover {
    background-color: #553975;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 76, 140, 0.6);
}

/* --- LOGÓ EFFEKTEK --- */
.content-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.logo-sunlight {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(130, 80, 180, 0.5) 0%, rgba(106,76,140,0.15) 50%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
    animation: pulseSun 3s infinite alternate;
    pointer-events: none; 
}

@keyframes pulseSun {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.main-logo {
    width: 100%;
    max-width: 450px;
    border-radius: 50%; 
    border: 3px solid #6a4c8c;
    position: relative;
    z-index: 2;
    animation: floatIntense 4s ease-in-out infinite;
}

@keyframes floatIntense {
    0%, 100% { 
        transform: translateY(0px); 
        box-shadow: 0 0 60px rgba(106, 76, 140, 0.7); 
    }
    50% { 
        transform: translateY(-20px); 
        box-shadow: 0 0 120px rgba(106, 76, 140, 1), 0 0 60px rgba(153, 102, 255, 0.6), inset 0 0 30px rgba(106, 76, 140, 0.6); 
    }
}

/* --- SEO MÁRKASZEKCIÓ FORMÁZÁSA --- */
.seo-brands-container {
    padding: 40px 10%;
    background-color: #151515; 
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
    position: relative;
    z-index: 5;
}

.seo-brands-container h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: none; 
    letter-spacing: 0;
}

.seo-brands-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-brands-list li {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(106, 76, 140, 0.15);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #94a3b8; 
    transition: all 0.3s ease;
    cursor: default;
}

.seo-brands-list li:hover {
    background-color: rgba(106, 76, 140, 0.2);
    color: #ffffff;
    border-color: #6a4c8c;
    transform: translateY(-2px);
}

/* =========================================
   2. VILÁGOS TÉMA (KAPCSOLAT)
   ========================================= */
body.light-theme {
    background-color: #f8fafc;
    background-image: url('https://www.transparenttextures.com/patterns/textured-paper.png');
    color: #0f172a;
    position: relative;
    overflow-x: hidden; 
}

.bg-graphic {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    height: 70vh;
    opacity: 0.04; 
    filter: grayscale(100%); 
    z-index: 0;
    pointer-events: none;
}

.contact-main {
    padding: 40px 10%;
    max-width: 1400px;
    margin: 0 auto;
    flex-grow: 1;
    position: relative;
    z-index: 5;
}

.page-title {
    font-size: 3.5rem; 
    font-weight: 400; 
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 15%;
    width: 70%;
    height: 4px;
    background-color: #6a4c8c;
}

.contact-layout {
    display: flex;
    justify-content: center; 
    align-items: flex-start;
    margin-bottom: 60px;
}

.locations-wrapper {
    width: 100%;
    max-width: 1250px; 
    display: flex;
    gap: 40px;
}

.location-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    flex: 1;
    border-top: 6px solid #6a4c8c; 
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 76, 140, 0.12);
}

.card-icon-top {
    position: absolute;
    top: -25px;
    right: 35px;
    background-color: #6a4c8c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(106, 76, 140, 0.3);
}

.location-card h3 {
    font-size: 1.6rem; 
    margin-bottom: 15px;
    color: #0f172a;
    white-space: nowrap; 
}

.location-card .address {
    font-weight: 600; 
    margin-bottom: 25px;
    color: #475569;
    font-size: 1.05rem;
}

.location-card .address i {
    color: #6a4c8c;
    margin-right: 5px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail .label {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600; 
    margin-bottom: 5px;
}

.contact-detail a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600; 
    font-size: 1.15rem;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: #6a4c8c;
}

.contact-detail i {
    color: #6a4c8c;
    margin-right: 8px;
    width: 20px;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
}

.closed-tag {
    color: #ef4444;
    font-weight: 600; 
}

.map-btn {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid #6a4c8c;
    color: #6a4c8c;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.map-btn:hover {
    background-color: #6a4c8c;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(106, 76, 140, 0.2);
}

.map-btn i {
    margin-left: 5px;
    font-size: 0.85rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden; 
    border: 1px solid #e2e8f0;
}

.map-container iframe {
    display: block; 
}

/* =========================================
   3. FEHÉR BIZALOMÉPÍTŐ LÁBLÉC (FIXED FOOTER)
   ========================================= */
.quality-banner {
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff; 
    color: #0f172a; 
    display: flex;
    justify-content: space-around;
    align-items: center; 
    padding: 12px 5%; 
    z-index: 1000; 
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15); 
    border-top: 3px solid #6a4c8c;
}

.quality-item {
    flex: 1;
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 15px; 
}

.banner-icon {
    font-size: 28px; 
    color: #6a4c8c;
}

.quality-item-text {
    text-align: left;
}

.quality-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    letter-spacing: 1px;
    color: #111111; 
}

.quality-item p {
    font-size: 0.8rem;
    color: #475569; 
    font-weight: 600;
}

/* =========================================
   4. WEBSHOP OLDAL SPECIFIKUS STÍLUSOK
   ========================================= */
body.webshop-page {
    background-image: 
        linear-gradient(rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.95)),
        url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pulse-shop-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 350px;
    background-color: #1a1a1a;
    border: 5px solid #6a4c8c;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    z-index: 2;
    animation: floatIntense 4s ease-in-out infinite; 
    transition: all 0.3s ease;
}

.pulse-shop-btn i {
    font-size: 70px;
    color: #6a4c8c;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.pulse-shop-btn span {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.2;
}

.pulse-shop-btn:hover {
    background-color: #6a4c8c;
}

.pulse-shop-btn:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* =========================================
   5. LEBEGŐ FACEBOOK GOMB
   ========================================= */
.floating-fb-btn {
    position: fixed;
    bottom: 100px; 
    right: 30px;
    background-color: #1877F2; 
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px; 
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    z-index: 999;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
    animation: pulseFb 2s infinite;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-fb-btn i {
    font-size: 22px;
}

.floating-fb-btn:hover {
    background-color: #166fe5;
    color: #ffffff;
    transform: scale(1.05) translateY(-5px);
    animation: none; 
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.8);
}

@keyframes pulseFb {
    0% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(24, 119, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0); }
}

/* --- Kisebb kijelzőkre (mobil) optimalizálás --- */
@media (max-width: 950px) {
    .locations-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .location-card h3 {
        white-space: normal; 
    }
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    .content-left {
        max-width: 100%;
    }
    .about-list li {
        text-align: left;
    }
    .content-right {
        justify-content: center;
    }
    .pulse-shop-btn {
        width: 300px;
        height: 300px;
    }
    .pulse-shop-btn span {
        font-size: 1.6rem;
    }
    
    .quality-banner {
        padding: 10px 2%;
        gap: 10px;
    }
    .quality-item {
        flex-direction: column;
        gap: 5px;
    }
    .quality-item p {
        display: none; 
    }
    .quality-item-text {
        text-align: center;
    }
    .banner-icon {
        font-size: 20px;
    }
    .quality-item h4 {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
        height: auto;
        padding: 10px 5%;
    }
    body {
        padding-top: 100px; 
    }
    nav a {
        margin: 0 10px;
        font-size: 14px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 15px;
        padding: 12px 16px;
        border-radius: 50%; 
    }
    .floating-fb-btn .fb-text {
        display: none; 
    }
    .floating-fb-btn i {
        margin: 0;
    }
}
