/* --- Alapvető és betűtípus stílusok --- */
body {
    font-family: 'Lexend', sans-serif;
}

@media screen and (max-width: 736px) {
    #header {
         padding-top: 100px;
    }
}

/* --- Akadálymentesítési segédosztályok --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: #2c1a11;
    color: white;
    padding: 10px 15px;
    z-index: 10001;
    transition: top 0.3s ease;
    border-bottom: none;
}

.skip-link:focus {
    top: 0;
}

a:focus-visible, button:focus-visible, iframe:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid #d4a373;
    outline-offset: 2px;
    border-radius: 4px;
}

/* --- Felső logó --- */
.top-logo-container {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 10000;
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}
.top-logo-svg {
    height: 20px;
    width: auto;
    display: block;
}
@media screen and (max-width: 736px) {
    .top-logo-container {
        top: 10px;
        left: 15px;
    }
    .top-logo-svg {
        height: 15px;
    }
}

/* --- Nyelvválasztó --- */
.lang-switcher, .lang-switcher2 {
    position: absolute;
    z-index: 10000;
    font-family: 'Lexend', sans-serif;
    background-color: rgba(49, 37, 37, 0.12);
    padding: 10px 15px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: fadeIn 0.0s ease-in forwards;
    animation-delay: 0.0s;
}
.lang-switcher {
    top: 20px;
    right: 30px;
}
.lang-switcher2 {
    top: 90px;
    right: 30px;
}
.lang-switcher a, .lang-switcher2 a, .lang-switcher span {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: none !important;
    margin: 0 5px;
    transition: color 0.3s;
    display: inline-block;
}
.lang-switcher a:hover {
    color: #2c1a11;
}
.lang-switcher .active-lang {
    color: #2c1a11 !important;
    cursor: default;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
@media screen and (max-width: 736px) {
    .lang-switcher {
        top: 10px;
        right: 15px;
        padding: 6px 10px;
        font-size: 1.0em;
    }
    .lang-switcher2 {
        top: 60px;
        right: 15px;
        padding: 6px 10px;
        font-size: 1.0em;
    }
    .lang-switcher a, .lang-switcher span {
        margin: 0 3px;
    }
}

/* --- Header logó --- */
.main-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
}

/* --- Térkép szekció (#one) --- */
.map-full-width-container {
    width: 100%; /* Foglalja el a szülő konténer teljes szélességét */
    margin-left: auto;
    margin-right: auto;
    padding: 0 !important; /* Felülbírálja a col-* osztályok belső margóját */
}

.map-iframe {
    height: 600px;
    border-radius: 20px;
    border: 0;
    width: 100%; /* Biztosítja, hogy az iframe kitöltse a konténerét */
    display: block; /* Megszünteti az esetleges alsó margót */
}

@media screen and (max-width: 736px) {
    .map-iframe {
        height: 400px !important;
    }
}

/* --- "Mitől specialty" szekció (#two) --- */
#two.main.style2 {
    padding: 4em 0;
    background-color: #f7f7f7;
}
#two .container {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
}
@media screen and (max-width: 1000px) {
    #two .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    #two h2, #two h3, #two p, #two li {
        text-align: left !important;
    }
    #two ul {
        padding-left: 1.2em !important;
        list-style-position: outside !important;
        text-align: left !important;
    }
    #two .major {
        text-align: left !important;
    }
    #two .col-12-medium {
        margin-bottom: 2em;
    }
}

/* --- Kávé pörkölése szekció --- */
.coffee-content-wrapper {
    background-color: #6f5e53;
    color: #f0f0f0;
    font-family: 'Lexend', sans-serif;
    text-align: left;
    line-height: 1.6;
    box-sizing: border-box;
    width: 100%;
    overflow-wrap: break-word;
    padding: 20px;
}
@media (min-width: 768px) {
    .coffee-content-wrapper {
        padding: 40px;
    }
}
@media (min-width: 1024px) {
    .coffee-content-wrapper {
        padding: 60px 80px;
        max-width: 1200px;
        margin: 0 auto;
    }
}
.coffee-content-wrapper p, 
.coffee-content-wrapper li {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    opacity: 0.95;
}
.coffee-content-wrapper h1 {
    color: #ffffff;
    font-weight: 550 !important;
    font-size: 2.2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}
.coffee-content-wrapper h2 {
    color: #ffffff;
    font-weight: 550 !important;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #d4a373;
    padding-bottom: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .coffee-content-wrapper h1 { font-size: 3.0rem; }
    .coffee-content-wrapper h2 { font-size: 2.5rem; }
}
.coffee-content-wrapper h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}
.coffee-content-wrapper h4 {
    color: #d4a373;
    font-weight: 700;
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-decoration: underline;
    text-decoration-color: #d4a373;
    text-underline-offset: 4px;
}
.coffee-content-wrapper ul, 
.coffee-content-wrapper ol {
    margin-left: 20px;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.coffee-content-wrapper li {
    padding-left: 10px;
    margin-bottom: 10px;
}
.coffee-content-wrapper li::marker {
    color: #d4a373;
    font-size: 1.2em;
}
.coffee-content-wrapper strong {
    color: #ffffff;
    font-weight: 800;
}
.kiemelt-doboz {
    background-color: RGBA(212, 163, 115, 0.3);
    border-left: 5px solid #d4a373;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0;
}

/* --- Footer --- */
.site-footer {
    margin-top: 40px;
}
.back-to-top {
    border: none;
    text-decoration: none;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
}
/* --- Ellenőrző lista (Checklist) stílusok --- */
.checklist-container {
    text-align: left;
    margin: 0 auto;
    max-width: 900px;
}

.phase-title {
    font-size: 1.8em;
    color: #3d2c21;
    border-bottom: 2px solid #d4a373;
    padding-bottom: 10px;
    margin-top: 3em;
    margin-bottom: 1.5em;
    text-transform: uppercase;
}

.check-item {
    background-color: #f9f9f9;
    border-left: 5px solid #6f5e53;
    padding: 15px 20px;
    margin-bottom: 8px;
    border-radius: 4px;
    line-height: 1.6;
    transition: background-color 0.3s;
}

.check-item:hover {
    background-color: #f0ebe8;
}

/* Behúzott/al-elemek stílusa */
.check-item-nested {
    margin-left: 30px;
    background-color: #ffffff;
    border-left-color: #d4a373;
    font-size: 0.95em;
}

.check-item.highlighted {
    background-color: #6f5e53;
    font-weight: bold;
    color: #fff;
}