/* Reset és alapok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7B2D8E;
    --primary-dark: #5A1F6A;
    --secondary-color: #9B4DCA;
    --accent-color: #C77DFF;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #FAF5FF;
    --bg-dark: #2D2235;
    --white: #fff;
    --shadow: 0 4px 15px rgba(123, 45, 142, 0.1);
    --shadow-hover: 0 8px 25px rgba(123, 45, 142, 0.2);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.main-header {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.logo-image {
    height: 50px;
    width: auto;
    margin-right: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-nav a {
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* Main content */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 200px);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%),
                url('../pictures/index/22459183_1795916963772282_5724213642970658646_o.webp') center/cover no-repeat;
    color: var(--white);
    padding: 16rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow:
        0 0 15px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(0, 0, 0, 0.5),
        3px 3px 6px rgba(0, 0, 0, 1);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin: 0 auto 0.2rem;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow:
        0 0 10px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 0, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 1);
}

.hero-subtitle:first-of-type {
    margin-bottom: 0.8rem;
}

.hero-subtitle:last-of-type {
    margin-bottom: 1.5rem;
}

.hero p:not(.hero-subtitle) {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Awards Section */
.awards-section {
    padding: 4rem 0;
    background: var(--white);
}

/* Awards Carousel */
.awards-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.awards-carousel {
    overflow: hidden;
    flex: 1;
}

.awards-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.award-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    min-width: 180px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.award-item.gold::before {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.award-item.silver::before {
    background: linear-gradient(90deg, #C0C0C0, #A8A8A8, #C0C0C0);
}

.award-item.bronze::before {
    background: linear-gradient(90deg, #CD7F32, #B8860B, #CD7F32);
}

.award-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.award-item.gold .award-icon {
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.award-item.silver .award-icon {
    color: #A8A8A8;
    text-shadow: 0 2px 10px rgba(192, 192, 192, 0.5);
}

.award-item.bronze .award-icon {
    color: #CD7F32;
    text-shadow: 0 2px 10px rgba(205, 127, 50, 0.5);
}

.award-year {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    color: var(--primary-dark);
}

.award-title {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin: 0.25rem 0;
}

.award-place {
    font-weight: 600;
    margin-top: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.award-item.gold .award-place {
    color: #B8860B;
}

.award-item.silver .award-place {
    color: #707070;
}

.award-item.bronze .award-place {
    color: #8B4513;
}

.award-place i {
    margin-right: 0.25rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* News Section */
.news-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

/* Year Selector */
.year-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
    z-index: 100;
}

.year-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    background: transparent;
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.year-btn:hover {
    color: var(--primary-color);
    background: var(--bg-color);
}

.year-btn.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(123, 45, 142, 0.3);
}

@media (max-width: 768px) {
    .year-selector {
        border-radius: 20px;
        padding: 0.75rem;
        gap: 0.4rem;
    }

    .year-btn {
        min-width: 60px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: linear-gradient(to bottom, #fff 0%, #faf8fc 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(123, 45, 142, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid rgba(155, 77, 202, 0.1);
    max-width: 450px;
}

.news-card::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(155, 77, 202, 0.15);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    z-index: 2;
}

.news-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 12px 30px rgba(123, 45, 142, 0.15);
    border-color: rgba(155, 77, 202, 0.25);
}

.news-card:hover::before {
    transform: rotate(-20deg) scale(1.2);
    color: rgba(155, 77, 202, 0.35);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    background: #f8f4fc;
}

.news-content {
    padding: 1.5rem;
    text-align: center;
}

.news-content .news-title,
.news-content .news-excerpt {
    text-align: left;
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(155, 77, 202, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.news-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.news-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f4fc 0%, #efe8f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(155, 77, 202, 0.25);
    position: relative;
}

.news-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%239B4DCA' opacity='0.15' d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* News Single Page */
.news-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.news-single-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-dark);
}

.back-link i {
    margin-right: 0.5rem;
}

.news-single .news-date {
    color: var(--text-light);
}

.news-single .news-date i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.news-single-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.news-single-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.news-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-single-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.news-single-content p {
    margin-bottom: 1.5rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.empty-state p {
    font-size: 1rem;
}

/* Features Section - Checkerboard */
.features-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.features-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.features-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.features-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Bento Grid Layout */
.features-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, minmax(120px, auto));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    align-items: stretch;
}

.bento-item {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bento-item:hover img {
    transform: scale(1.05);
}

/* Szöveg dobozok */
.bento-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    align-self: stretch;
}

.bento-text h3 {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.8rem);
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.bento-text p {
    font-size: clamp(0.85rem, 1.5vw + 0.3rem, 1.2rem);
    line-height: 1.5;
    color: #fff;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Grid pozíciók */
.bento-large-left {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.bento-utitars {
    grid-column: 3;
    grid-row: 1 / 3;
}

.bento-small-img {
    grid-column: 4;
    grid-row: 1 / 3;
}

.bento-puppies {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
    height: 420px;
}

.bento-plussmaci {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    height: 420px;
}

.bento-hug {
    grid-column: 3;
    grid-row: 4 / 5;
}

.bento-listen {
    grid-column: 4;
    grid-row: 4 / 5;
}

.bento-large-right {
    grid-column: 1 / 3;
    grid-row: 4 / 7;
}

.bento-smile {
    grid-column: 3;
    grid-row: 5 / 7;
}

.bento-dogs {
    grid-column: 4;
    grid-row: 5 / 7;
}

/* Responsive */
@media (max-width: 992px) {
    .features-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-large-left,
    .bento-utitars,
    .bento-small-img,
    .bento-puppies,
    .bento-plussmaci,
    .bento-hug,
    .bento-listen,
    .bento-large-right,
    .bento-smile,
    .bento-dogs,
    .bento-item.bento-text:first-of-type {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-large-left,
    .bento-large-right {
        grid-column: 1 / 3;
    }

    .bento-item {
        min-height: 200px;
    }

    .bento-puppies,
    .bento-plussmaci {
        height: auto;
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .features-bento {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 1rem 2rem;
    }

    .bento-large-left,
    .bento-large-right {
        grid-column: 1;
    }

    .bento-item {
        min-height: 180px;
    }

    .bento-puppies,
    .bento-plussmaci {
        height: auto;
        min-height: 200px;
    }

    .bento-text {
        min-height: auto;
        padding: 1.5rem;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image-grid img:hover {
    transform: scale(1.03);
}

/* About Bento Grid */
.about-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.about-bento-item {
    border-radius: 20px;
    overflow: hidden;
    min-height: 180px;
}

.about-bento-img {
    box-shadow: var(--shadow);
}

.about-bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-bento-img:hover img {
    transform: scale(1.05);
}

.about-bento-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.about-bento-text h3 {
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-bento-text p {
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem);
    color: #fff;
    line-height: 1.7;
    font-style: italic;
}

@media (max-width: 768px) {
    .about-bento {
        grid-template-columns: 1fr;
    }

    .about-bento-item {
        min-height: 250px;
    }
}

/* Litters Section */
.litters-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.litter-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 300px 1fr;
    margin-top: 2rem;
}

.litter-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

.litter-content {
    padding: 2rem;
}

.litter-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.litter-parents {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.parent-info {
    text-align: center;
}

.parent-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 3px solid var(--accent-color);
}

.parent-name {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Meetup Section - Kennel Találkozó */
.meetup-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #c9a0dc 0%, #b088c8 100%);
    color: var(--white);
}

.meetup-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    font-style: italic;
}

.meetup-quote {
    text-align: center;
    font-size: clamp(1rem, 1.5vw + 0.3rem, 1.3rem);
    color: #fff;
    font-style: italic;
    margin-bottom: 2rem;
}

.meetup-hero-image {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.meetup-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.meetup-description {
    text-align: center;
    font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.1rem);
    color: #fff;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-style: italic;
}

.meetup-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.meetup-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.meetup-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.meetup-gallery-item:hover img {
    transform: scale(1.05);
}

/* Bento elrendezés a képen látható módon */
.meetup-item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.meetup-item-2 {
    grid-column: 2;
    grid-row: 1;
}

.meetup-item-3 {
    grid-column: 2;
    grid-row: 2;
}

.meetup-item-4 {
    grid-column: 1;
    grid-row: 3;
}

.meetup-item-5 {
    grid-column: 2;
    grid-row: 3;
}

.meetup-item-6 {
    grid-column: 3;
    grid-row: 1 / 3;
}

.meetup-item-7 {
    grid-column: 4;
    grid-row: 1 / 4;
}

.meetup-gallery-item:nth-child(5) {
    grid-column: 3;
    grid-row: 3;
}

/* További képek ha vannak */
.meetup-gallery-item:nth-child(n+8) {
    grid-column: span 1;
}

@media (max-width: 768px) {
    .meetup-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .meetup-item-1,
    .meetup-item-2,
    .meetup-item-3,
    .meetup-item-4,
    .meetup-item-5,
    .meetup-item-6,
    .meetup-item-7 {
        grid-column: auto;
        grid-row: auto;
    }

    .meetup-gallery-item {
        min-height: 200px;
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-value a {
    color: var(--accent-color);
    transition: var(--transition);
}

.contact-value a:hover {
    color: var(--white);
}

/* Cards */
.card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.card-grid .card {
    width: 300px;
    flex-shrink: 0;
}

.card {
    background: transparent;
    border-radius: 15px;
    overflow: visible;
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    margin-bottom: 1rem;
    text-align: center;
}

.card-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin: 0 0 0.25rem 0;
}

.card-regname {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

.card-image-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto;
}

.card-image {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover .card-image {
    box-shadow: var(--shadow-hover);
    transform: scale(1.03);
}

.card-image.placeholder {
    object-fit: contain;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 30px;
}

.card-image.deceased {
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.card-image.deceased:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.dog-status-badge {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.dogs-section {
    padding: 4rem 0;
}

.dogs-section.alt-bg {
    background: var(--white);
}

.country-flag {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.country-flag .flag-icon {
    display: block;
    width: 40px;
    height: 30px;
}

.card-content {
    padding: 1rem;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.gender-icon {
    font-size: 1rem;
}

.gender-icon.male {
    color: #3498db;
}

.gender-icon.female {
    color: #e84393;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
}

.btn-magic {
    position: relative;
    overflow: visible;
}

.btn-magic::before,
.btn-magic::after {
    content: '✦';
    position: absolute;
    font-size: 0.45rem;
    color: var(--accent-color);
    pointer-events: none;
    animation: orbit 3.5s linear infinite;
}

.btn-magic::after {
    animation: orbit 3.5s linear infinite reverse;
    animation-delay: -1.75s;
    color: #ffd700;
}

@keyframes orbit {
    0% {
        top: 50%;
        left: -6px;
        transform: translateY(-50%);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    25% {
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.8;
    }
    50% {
        top: 50%;
        left: calc(100% + 3px);
        transform: translateY(-50%);
        opacity: 0.8;
    }
    75% {
        top: calc(100% + 2px);
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 50%;
        left: -6px;
        transform: translateY(-50%);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(123, 45, 142, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: var(--white);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
}

.btn-danger {
    background-color: #e74c3c;
    color: var(--white);
}

.btn-danger:hover {
    background-color: #c0392b;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(123, 45, 142, 0.1);
}

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: #ccc;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.25rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: #ccc;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Section titles */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title.light {
    color: var(--white);
}

.section-title.light::after {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto 0;
}

.section-subtitle.light {
    color: var(--white);
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .litter-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        padding: 1rem;
        display: none;
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero {
        padding: 10rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .card-grid .card {
        width: 100%;
        max-width: 350px;
    }

    .awards-carousel-wrapper {
        max-width: 90%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .award-item {
        min-width: 150px;
        padding: 1rem 1.25rem;
    }

    .award-icon {
        font-size: 2.5rem;
    }

    .award-year {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.7rem;
        letter-spacing: 0.03em;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* News Modal */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.news-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.news-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.news-modal-gallery {
    position: relative;
}

.news-modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    background: #f8f4fc;
    border-radius: 20px 20px 0 0;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-image-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.news-card {
    position: relative;
}

.news-modal-body {
    padding: 2rem;
}

.news-modal-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-modal-title {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.news-modal-text {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Modal header image */
.news-modal-header-image {
    width: 100%;
    background: #f5f5f5;
    border-radius: 20px 20px 0 0;
    text-align: center;
    padding: 1rem;
}

.news-modal-header-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}

/* Modal thumbnails gallery */
.news-modal-thumbnails {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.news-modal-thumbnails h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .news-modal {
        padding: 1rem;
    }

    .news-modal-image {
        max-height: 250px;
    }

    .news-modal-body {
        padding: 1.5rem;
    }

    .news-modal-title {
        font-size: 1.4rem;
    }

    .news-modal-header-image img {
        max-height: 250px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 0.5rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* Puppies Gallery Section */
.puppies-section {
    padding: 4rem 0;
    background: var(--white);
}

.puppies-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.puppies-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.puppies-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.puppies-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.puppies-gallery-item:hover img {
    transform: scale(1.1);
}

.puppies-gallery-placeholder {
    background: linear-gradient(135deg, var(--bg-color) 0%, #E8D5F0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
}

@media (max-width: 768px) {
    .puppies-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .puppies-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .puppies-gallery-item:nth-child(9) {
        grid-column: span 2;
    }
}

/* Planned Pairings Section */
.pairings-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, #E8D5F0 100%);
}

.pairings-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.pairing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pairing-dog {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 320px;
}

.pairing-dog-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(123, 45, 142, 0.2);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.pairing-dog:hover .pairing-dog-image {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.pairing-dog-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.pairing-dog .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.pairing-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 110px;
}

.pairing-heart i {
    font-size: 5rem;
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.pairing-period {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    width: 100%;
}

.pairing-period-text {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.pairing-description {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 0.5rem;
    text-align: center;
}

.pairing-info-top {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Pairing card layout adjustment */
.pairing-card-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.pairing-card-footer {
    width: 100%;
}

.pairing-card {
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .pairing-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .pairing-dog-image {
        width: 140px;
        height: 140px;
    }

    .pairing-dog-name {
        font-size: 1.1rem;
    }

    .pairing-heart i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .pairing-card-inner {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: nowrap;
        align-items: center;
    }

    .pairing-heart {
        transform: none;
        flex-shrink: 0;
    }

    .pairing-heart i {
        font-size: 1.5rem;
    }

    .pairing-dog {
        flex: 1;
        min-width: 0;
    }

    .pairing-dog-image {
        width: 100px;
        height: 100px;
    }

    .pairing-dog-name {
        font-size: 0.9rem;
    }

    .pairing-dog .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* CTA Section - Szeretnél egy berni kölyköt? */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    text-align: center;
}

.cta-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
}

.cta-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.cta-bubble {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.8s ease, translate 0.8s ease;
    opacity: 0;
}

.cta-bubble.slide-left {
    translate: -100px 0;
}

.cta-bubble.slide-right {
    translate: 100px 0;
}

.cta-bubble.animate-in {
    opacity: 1;
    translate: 0 0;
}

.cta-bubble:hover {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.cta-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-center {
    text-align: center;
}

.cta-center h2 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    color: var(--white);
    margin: 0;
    font-weight: 700;
}

.cta-title-zoom {
    opacity: 0;
    transform: scale(0.3) translateZ(-200px);
    transition: opacity 1s ease, transform 1s ease;
}

.cta-title-zoom.animate-in {
    opacity: 1;
    transform: scale(1) translateZ(0);
}

.cta-center .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .cta-row {
        justify-content: center;
        gap: 1.5rem;
    }

    .cta-bubble {
        width: 120px;
        height: 120px;
    }

    .cta-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .cta-bubble {
        width: 100px;
        height: 100px;
    }
}

/* =============================================
   PRELOADER
   ============================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-icon {
    font-size: 4rem;
    color: #7B2D8E;
    animation: paw-bounce 1s ease-in-out infinite;
}

.preloader-text {
    display: block;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes paw-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* =============================================
   STATISTICS SECTION
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, #7B2D8E 0%, #5A1F6A 100%);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.9;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 2rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7B2D8E 0%, #5A1F6A 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(123, 45, 142, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 45, 142, 0.5);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* =============================================
   ACTIVITY FEED SECTION - Mi újság nálunk?
   ============================================= */
.activity-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f4fc 0%, #efe8f5 100%);
}

.activity-section .section-title {
    margin-bottom: 2rem;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.activity-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(123, 45, 142, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(123, 45, 142, 0.15);
    border-color: rgba(155, 77, 202, 0.2);
}

.activity-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f4fc 0%, #efe8f5 100%);
}

.activity-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-thumbnail img {
    transform: scale(1.08);
}

.activity-icon-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Activity típus színek */
.activity-photo .activity-icon-badge {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.activity-gallery .activity-icon-badge {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.activity-dog .activity-icon-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.activity-news .activity-icon-badge {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.activity-show .activity-icon-badge {
    background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
}

.activity-default .activity-icon-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.activity-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex: 1;
}

.activity-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.activity-time i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Üres állapot */
.activity-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.activity-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--secondary-color);
}

.activity-empty p {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .activity-section {
        padding: 3rem 0;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }

    .activity-thumbnail {
        height: 160px;
    }

    .activity-content {
        padding: 1rem;
    }

    .activity-text {
        font-size: 0.95rem;
    }

    .activity-icon-badge {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
