/* Custom Font */
@font-face {
   font-family: ShibaFont;
   src: url(fonts/go3v2.ttf);
}

.kulim-park-semibold {
  font-family: "Kulim Park", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.merriweather-<uniquifier> {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5EBD7;
    padding-top: 60px;
    padding-bottom: 200px;
}

/* Fix Info Header */
.info-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #E8DCC4;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-item {
    margin: 0 10px;
    font-size: 40px;
}

.header-separator {
    color: #888;
    margin: 0 5px;
}

/* Like Container */
.like-container {
    position: absolute;
    right: 20px;
    background-color: rgba(212, 175, 119, 0.3);
    border: 2px solid #D4AF77;
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.like-counter {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: center;
}

.like-button {
    background-color: #4169E1;
    border: 2px solid #00008B;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.like-button svg {
    display: block;
}

.like-button:hover {
    background-color: #1E90FF;
    transform: scale(1.1);
}

.like-button:active {
    transform: scale(0.95);
}

.like-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.like-button:disabled:hover {
    background-color: #4169E1;
    transform: none;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #D4AF77;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Logos Section */
.logos-text {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.partner-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.placeholder-logo {
    height: 90px;
    width: 90px;
    background-color: #999;
    border: 2px solid #666;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.placeholder-logo:hover {
    transform: scale(1.1);
    background-color: #777;
}

/* Asami Section */
.asami-section {
    padding: 0 20px 0 0;
    background-color: #C9A882;
    margin-bottom: 20px;
    border-radius: 262px 20px 20px 262px;
    font-family: "Merriweather", serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 262px;
    display: flex;
    align-items: center;
}

.asami-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.asami-image {
    position: relative;
    width: 262px;
    height: 262px;
    flex-shrink: 0;
}

.asami-image img {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #D4AF77;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.asami-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: calc(100% - 262px);
}

.asami-text p {
    color: #333;
    margin: 0;
}

/* Quote Section */
.quote-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #e9b762;
    margin-bottom: 20px;
    border-radius: 20px;
    font-family: "Merriweather", serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-title {
    font-family: 'ShibaFont', cursive;
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 18px;
    color: #555;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Accordion Container */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Accordion Section */
.accordion-section {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accordion-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Accordion Header */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

/* Different background colors for each section */
.accordion-section:nth-child(1) .accordion-header {
    background-color: #D4AF77;
}

.accordion-section:nth-child(2) .accordion-header {
    background-color: #e9b762;
}

.accordion-section:nth-child(3) .accordion-header {
    background-color: #C9A882;
}

.accordion-section:nth-child(4) .accordion-header {
    background-color: #FFFACD;
}

.accordion-section:nth-child(5) .accordion-header {
    background-color: #e9b762;
}

.accordion-section:nth-child(6) .accordion-header {
    background-color: #B8956A;
}

.accordion-section:nth-child(7) .accordion-header {
    background-color: #e9b762;
}

.accordion-section:nth-child(8) .accordion-header {
    background-color: #C9A882;
}

.accordion-header:hover {
    filter: brightness(0.95);
}

.accordion-header h2 {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    color: #333;
    margin: 0;
}

.accordion-icon {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Accordion Content */
.accordion-content {
    display: none;
    padding: 25px;
    background-color: #fff;
    line-height: 1.8;
}

.accordion-content p {
    margin-bottom: 15px;
    color: #555;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Footer / Impresszum */
.impresszum {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #E8DCC4;
    padding: 20px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

.footer-content p {
    margin: 3px 0;
}

.footer-content strong {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
        padding-bottom: 280px;
    }

    .info-header {
        padding: 12px 15px;
    }

    .header-content {
        font-size: 12px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .header-item {
        font-size: 28px;
    }

    .header-separator {
        display: none;
    }

    .like-container {
        position: absolute;
        right: 10px;
        padding: 6px 12px;
    }

    .like-counter {
        font-size: 14px;
        min-width: 25px;
    }

    .like-button {
        width: 30px;
        height: 30px;
    }

    .like-button svg {
        width: 16px;
        height: 16px;
    }

    .hero-section {
        padding: 30px 15px;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .logos-text {
        font-size: 14px;
    }

    .logos-container {
        gap: 15px;
    }

    .partner-logo {
        height: 75px;
    }

    .placeholder-logo {
        height: 75px;
        width: 75px;
        font-size: 12px;
    }

    .asami-section {
        border-radius: 262px 15px 15px 262px;
        margin-bottom: 15px;
        padding-right: 15px;
    }

    .asami-content {
        gap: 0;
    }

    .asami-text {
        position: static;
        transform: none;
        flex: 1;
        width: auto;
    }

    .main-title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .main-content {
        padding: 15px;
    }

    .accordion-container {
        gap: 12px;
    }

    .accordion-header {
        padding: 15px 18px;
    }

    .accordion-header h2 {
        font-size: 22px;
    }

    .accordion-icon {
        font-size: 28px;
    }

    .accordion-content {
        padding: 18px;
        font-size: 14px;
    }

    .impresszum {
        padding: 15px 10px;
    }

    .footer-content {
        font-size: 11px;
    }

    .footer-content strong {
        font-size: 13px;
    }
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 60px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #D4AF77;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-name {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #D4AF77;
    color: #333;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #B8956A;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background-color: #bbb;
}

.carousel-dot.active {
    background-color: #D4AF77;
    border-color: #B8956A;
    transform: scale(1.2);
}

/* Responsive Design - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-title {
        font-size: 42px;
    }

    .accordion-header h2 {
        font-size: 26px;
    }

    .carousel-container {
        padding: 20px 50px;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
    }
}

/* Mobile Responsive - Carousel */
@media (max-width: 768px) {
    .carousel-container {
        padding: 15px 50px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-image {
        width: 90px;
        height: 90px;
        border-width: 3px;
    }

    .testimonial-name {
        font-size: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    body {
        padding-bottom: 320px;
    }

    .main-title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 14px;
    }

    .logos-text {
        font-size: 13px;
    }

    .logos-container {
        gap: 12px;
    }

    .partner-logo {
        height: 68px;
    }

    .placeholder-logo {
        height: 68px;
        width: 68px;
        font-size: 11px;
    }

    .accordion-header h2 {
        font-size: 18px;
    }

    .accordion-icon {
        font-size: 24px;
    }

    .accordion-content {
        font-size: 13px;
    }

    .carousel-container {
        padding: 10px 40px;
    }

    .testimonial-image {
        width: 80px;
        height: 80px;
    }

    .testimonial-name {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Dog Gallery Styles */
.dog-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.dog-item {
    text-align: center;
}

.dog-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 6px solid burlywood;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dog-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.dog-name {
    font-family: "Merriweather", serif;
    font-weight: 600;
    font-size: 24px;
    color: #333;
    margin-top: 4px;
    margin-bottom: 0;
}

/* Mobile Responsive - Dog Gallery */
@media (max-width: 768px) {
    .dog-gallery {
        gap: 15px;
    }

    .dog-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .dog-gallery {
        gap: 12px;
    }

    .dog-name {
        font-size: 14px;
        margin-top: 8px;
    }
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.gallery-thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 3/4) {
    .gallery-thumbnail {
        height: 400px;
    }
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 175, 119, 0.8);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.lightbox-btn:hover {
    background-color: rgba(184, 149, 106, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Mobile Responsive - Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    @supports not (aspect-ratio: 3/4) {
        .gallery-thumbnail {
            height: 300px;
        }
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }

    .lightbox-btn {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* Fogadalom Styles */
.fogadalom {
    background-color: beige;
    border: 6px solid #8B4513;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    line-height: 1.8;
}

.fogadalom p:first-child {
    font-size: 1.3em;
    font-weight: bold;
}
