/* Alap stílusok */
body {
    font-family: 'Playfair Display', serif; /* Playfair Display betűtípus alkalmazása az egész oldalra */
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Fejléc */
header {
    background-color: #2f4f4f; /* Zöldes szín */
    color: white;
    padding: 20px 0;
}

/* Fejléc konténer új elrendezéssel */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    flex-wrap: wrap;
}

/* Navigáció középre igazítva */
header nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

header nav ul li {
    margin-right: 25px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

/* Nyelvválasztó dizájn */
.language-selector {
    display: flex;
    align-items: center;
}

.language-selector select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='gray' viewBox='0 0 24 24' width='18' height='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px;
}

.language-selector select:hover {
    border-color: #2f4f4f;
    box-shadow: 0 0 5px rgba(47, 79, 79, 0.3);
}

.language-selector select:focus {
    outline: none;
    border-color: #2f4f4f;
}

/* "Rólunk" szöveg kézírásos stílus */
#about-title {
    text-align: center;
    margin-top: 80px;
}

body #about-title h2 {
    font-family: 'Playfair Display', serif !important;
    font-size:2.2em !important; /* <-- Itt történt a növelés */
    color: #2f4f4f !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1) !important;
}


/* Rólunk szakasz */
#about {
    padding: 80px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.about-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.about-image {
    flex: 1;
    margin-right: 30px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-text {
    flex: 2;
    text-align: left;
}

.about-text p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #666;
}

/* Alsó sáv stílus */
footer {
    background-color: #2f4f4f;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 1.2em;
    font-weight: bold;
}

/* Reszponzív dizájn - mobil nézet */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
        margin-bottom: 10px;
    }

    header nav ul li {
        margin: 10px 0;
    }

    #about {
        flex-direction: column;
        padding: 20px 5%;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        margin-bottom: 20px;
    }

    .about-text {
        text-align: center;
    }
}
/* Alsó márkafelirat blokk */
#bottom-title {
    text-align: center;
    background-color: #fff;
    padding: 50px 20px 30px;
    margin-bottom: 80px; /* ÚJ! */
}

/* Díszvonal szöveg körül */
.decor-line-with-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    width: 100%;
    max-width: 900px;
}

.decor-line-with-text::before,
.decor-line-with-text::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 0 15px;
}

/* Felirat stílusa + animált shine effekt */
.shine-effect {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #2f4f4f;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hover hatás: arany szín + csillanó vonás */
.shine-effect:hover {
    color: #d4af37;
    transform: translateY(-3px);
    text-shadow: 0 1px 4px rgba(212, 175, 55, 0.6);
    cursor: default;
}

/* Shine animációs vonás */
.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    height: 100%;
    width: 50%;
    background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: skewX(-20deg);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

/* Szlogen stílus + finom fade-in */
.brand-slogan {
    font-size: 1.3em;
    font-style: italic;
    color: #777;
    margin-top: 10px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
/* Kutyáink szekció stílusai */
#dogs {
    padding: 80px 10%;
    background-color: #fff;
    text-align: center;
}

.dogs-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #2f4f4f;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.dogs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.dog-card {
    width: 330px; /* korábbi 300px helyett kb. 10% nagyobb */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dog-card img {
    width: 100%;
    height: 445px;
    object-fit: cover; 
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);

    border: 3px solid #c5a557; /* elegáns arany keret */
}

.dog-card h3 {
    font-size: 1.8em;
    color: #2f4f4f;
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}

.dog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(47, 79, 79, 0.2);
}
.decorative-line {
    width:1020px;
    height: 4px;
    background: linear-gradient(to right, transparent, #c5a557, transparent);
    margin: 10px auto 40px auto;
    border-radius: 2px;
}
.dog-card a {
    text-decoration: none; /* aláhúzás eltávolítása */
    color: inherit;        /* örökli a szülő elem színét */
}

.dog-card a:hover {
    text-decoration: none; /* hover állapotban sincs aláhúzás */
}
.dog-profile {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.dog-profile-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 3px solid #c5a557;
}

.dog-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #2f4f4f;
}

.dog-description {
    margin-top: 20px;
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}
/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    border: 4px solid #c5a557;
    background-color: white;
    padding: 10px;
    animation: fadeIn 0.3s ease;
}

.lightbox-overlay:active {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.gallery-back-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 20px 0 0 0; /* 10% jobbra igazítás */
    box-sizing: border-box;
  }
  
  .gallery-back-button .back-btn {
    background-color: #c5a557;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-back-button .back-btn:hover {
    background-color: #a88c3f;
    transform: scale(1.05);
  }
  
  @media (max-width: 900px) {
    .gallery-back-button {
      justify-content: center;
      padding-right: 0;
    }
  }
  /* Alap beállítások */

body {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
}

/* Kép és szöveg rugalmas igazítása */

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    padding: 20px;
    text-align: justify;
}

/* Menü rugalmas kezelése */

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav li {
    margin: 10px;
}

/* Mobil nézet: 768px alatt */

@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 10px;
    }

    .about-text {
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: 5px 0;
    }
}

/* Extra kis képernyő: 480px alatt */

@media screen and (max-width: 480px) {
    header {
        padding: 10px;
    }

    .about-text {
        font-size: 16px;
    }

    nav li {
        font-size: 18px;
    }

    .brand-slogan {
        font-size: 16px;
    }
}
