/*
Theme Name: Beauty Art Sminktetoválás - Kreatívoldal
Theme URI: https://kreativoldal.hu
Author: Kreatívoldal
Author URI: https://kreativoldal.hu
Description: Elegáns és modern WordPress téma szépségipari szakembereknek.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beauty-art
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, beauty, salon
*/

/*
 * A téma a Tailwind CSS-t használja a stílusokhoz.
 * Az inline Tailwind konfiguráció a header.php-ban található.
 * Ez a fájl csak a WordPress theme információkat tartalmazza.
 */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fbf9f9;
}

::-webkit-scrollbar-thumb {
    background: #e8b5b8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d69fa2;
}

/* Font fallbacks */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-lora {
    font-family: 'Lora', serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Material Icons custom settings */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Custom Logo Size */
.custom-logo {
    max-height: 80px;
    width: auto;
    height: auto;
}

.custom-logo-link {
    display: inline-block;
    line-height: 1;
}

/* WordPress Core Alignment Classes */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* WordPress Caption */
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8b5b8 0%, #d09599 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(232, 181, 184, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(232, 181, 184, 0.6);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Template Info Panel */
.template-info-wrapper {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    z-index: 999;
}

.template-info-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #e8b5b8 0%, #d09599 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(232, 181, 184, 0.4);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.template-info-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(232, 181, 184, 0.6);
}

.template-info-toggle svg {
    animation: bounce 1s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 20px rgba(232, 181, 184, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(232, 181, 184, 0.7), 0 0 0 10px rgba(232, 181, 184, 0.1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.template-info-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.template-info-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.template-info-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #5e4a4b;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.template-info-close:hover {
    background: #fbf9f9;
    color: #191011;
    transform: rotate(90deg);
}

.template-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #e8b5b8 0%, #d09599 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.template-info-content h3 {
    font-size: 1.25rem;
    color: #191011;
    margin-bottom: 0.5rem;
    text-align: center;
}

.template-info-content p {
    color: #191011;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.6;
    font-size: 0.9rem;
}

.template-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.template-features li {
    padding: 0.5rem 0;
    color: #191011;
    border-bottom: 1px solid #fbf9f9;
    font-size: 0.85rem;
}

.template-features li:last-child {
    border-bottom: none;
}

.template-info-cta {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #e8b5b8 0%, #d09599 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 181, 184, 0.3);
}

.template-info-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 181, 184, 0.5);
}

@media (max-width: 768px) {
    .template-info-wrapper {
        right: 0.75rem;
        bottom: 90px;
    }

    .template-info-toggle {
        padding: 0.6rem 0.9rem;
        font-size: 0.75rem;
        gap: 0.25rem;
    }

    .template-info-toggle svg {
        width: 16px;
        height: 16px;
    }

    .template-info-panel {
        width: calc(100vw - 1.5rem);
        right: 0;
        max-width: 280px;
        padding: 1rem;
        bottom: 60px;
    }

    .template-info-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }

    .template-info-icon svg {
        width: 28px;
        height: 28px;
    }

    .template-info-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .template-info-content p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .template-features li {
        padding: 0.4rem 0;
        font-size: 0.8rem;
    }

    .template-info-cta {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}