
/* =========================
   ALAPBEÁLLÍTÁSOK
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fcfbff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}
.hero-dogs {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 15px;

    object-fit: contain;
    border: none;
    background: transparent;
    border-radius: 0;
}

/* =========================
   FEJLÉC
========================= */

header {
    background: linear-gradient(135deg, #efe7ff, #ffffff);
    padding: clamp(60px, 10vw, 100px) 20px;
    text-align: center;
}

header h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: #7c5ac9;
    margin-bottom: 20px;
}

header p {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
}



/* =========================
   GOMBOK
========================= */

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #b9a3f5;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
    font-weight: 600;
}

.btn:hover {
    background: #9f84eb;
}


/* =========================
   NAVIGÁCIÓ
========================= */

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: none;
    background: transparent;
    border-radius: 0;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: clamp(15px, 3vw, 30px);
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #7c5ac9;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #9f84eb;
}


/* =========================
   SZEKCIÓK
========================= */

section {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: clamp(50px, 8vw, 80px) 20px;
}

h2 {
    text-align: center;
    color: #7c5ac9;
    margin-bottom: 40px;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.about {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    font-size: clamp(1rem, 2vw, 1.1rem);
}


/* =========================
   ÁRLISTA
========================= */

.pricing {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(min(250px, 100%), 1fr)
    );
    gap: 25px;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
}

#arlista {
    display: block;

    width: 100%;
    max-width: 1000px;
    height: auto;

    margin: 30px auto 0;

    border: 1px solid rgb(230, 162, 200);
    border-radius: 10px;
}


/* =========================
   GALÉRIA
========================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(min(250px, 100%), 1fr)
    );
    gap: 20px;
}

.gallery-item {
    background: #f3edff;
    border: 2px dashed #cbb8ff;
    border-radius: 20px;
    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8a72d8;
    font-weight: 500;
}

.gallery img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 450px;

    object-fit: cover;

    border: none;
    border-radius: 20px;
    background: #f3edff;
}


/* =========================
   KAPCSOLAT
========================= */

.contact-wrapper {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(min(320px, 100%), 1fr));

    gap: 40px;
    align-items: start;
}

.contact-box {
    width: 100%;
    background: white;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 90, 201, 0.08);
}

.contact-box p {
    margin-bottom: 15px;
}

.contact-box a {
    color: #7c5ac9;
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}


/* =========================
   GOOGLE MAP
========================= */

iframe {
    display: block;
    width: 100%;
    height: 450px;
    min-height: 350px;

    border: none;
    border-radius: 20px;
}


/* =========================
   TIKTOK
========================= */

.tiktok-box {
    width: 100%;
    max-width: 700px;
    margin: 30px auto 0;
    text-align: center;
}


/* =========================
   KUTYÁS SLIDER
========================= */

.slider {
    position: relative;

    width: 100%;
    max-width: 900px;

    margin: auto;

    overflow: hidden;
    border-radius: 20px;

    background: #f3edff;
}

.slides {
    display: flex;
    transition: transform 0.4s ease;
}

.slides img {
    flex: 0 0 100%;
    width: 100%;
    height: clamp(280px, 55vw, 500px);

    object-fit: contain;

    background: #f3edff;

    border: none;
    border-radius: 20px;
}


/* =========================
   SLIDER GOMBOK
========================= */

.prev,
.next {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.5);
    color: white;

    font-size: 24px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.3s;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}


/* =========================
   LÁBLÉC
========================= */

footer {
    background: #efe7ff;
    text-align: center;

    padding: 30px 20px;

    color: #666;

    margin-top: 50px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .nav-container {
        flex-direction: column;
    }

    nav ul {
        gap: 15px 25px;
    }

    .logo img {
        width: 65px;
        height: 65px;
    }

    iframe {
        height: 400px;
    }
}


/* =========================
   MOBIL
========================= */

@media (max-width: 600px) {

    nav {
        padding: 8px 15px;
    }

    .nav-container {
        gap: 8px;
    }

    .logo img {
        width: 55px;
        height: 55px;
    }

    nav ul {
        width: 100%;
        gap: 8px 15px;
    }

    nav a {
        font-size: 0.9rem;
    }

    header {
        padding: 55px 15px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.95rem;
    }

    section {
        padding: 55px 15px;
    }

    h2 {
        margin-bottom: 30px;
        font-size: 1.9rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        min-height: 0;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .slider {
        border-radius: 15px;
    }

    .slides img {
        height: 70vw;
        min-height: 250px;
        max-height: 400px;
    }

    .prev,
    .next {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .prev {
        left: 8px;
    }

    .next {
        right: 8px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    iframe {
        height: 350px;
        min-height: 300px;
    }

    #arlista {
        width: 100%;
        height: auto;
    }
}


/* =========================
   KIS MOBIL
========================= */

@media (max-width: 400px) {

    nav ul {
        gap: 6px 10px;
    }

    nav a {
        font-size: 0.82rem;
    }

    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .prev,
    .next {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}
@media (max-width: 600px) {
    .hero-dogs {
        width: 90px;
        margin-bottom: 10px;
    }
}