/*
Theme Name: Női Klikk
Theme URI: https://noiklikk.hu
Author: Női Klikk Team
Author URI: https://noiklikk.hu
Description: A modern nők magazinja - Tökéletesen reszponzív WordPress téma UX/UI szempontból kifogástalan dizájnnal.
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: noi-klikk
Tags: magazine, blog, responsive, modern, women, lifestyle
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1A0B2E;
    color: #f3f4f6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .logo-font {
    font-family: 'Playfair Display', serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A0B2E;
}

::-webkit-scrollbar-thumb {
    background: #431975;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF007F;
}

/* Glassmorphism */
.glass {
    background: rgba(26, 11, 46, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(67, 25, 117, 0.25);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: #00F2EA;
    box-shadow: 0 10px 30px -10px rgba(0, 242, 234, 0.3);
}

/* Neon Text */
.text-glow-pink {
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.text-glow-cyan {
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.5);
}

/* Underline Animation */
.underline-anim {
    position: relative;
}

.underline-anim::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #00F2EA;
    transition: width 0.3s ease-in-out;
}

.underline-anim:hover::after {
    width: 100%;
}

/* Image Zoom */
.img-zoom-container {
    overflow: hidden;
}

.img-zoom {
    transition: transform 0.5s ease;
}

.group:hover .img-zoom {
    transform: scale(1.05);
}

/* Button Gradient */
.btn-gradient {
    background: linear-gradient(45deg, #FF007F, #431975);
    background-size: 200% 200%;
    transition: background-position 0.5s;
}

.btn-gradient:hover {
    background-position: right center;
}

/* WordPress Core Styles */
.wp-block-image {
    margin: 2rem 0;
}

.wp-block-quote {
    border-left: 4px solid #FF007F;
    padding-left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #00F2EA;
    margin: 2.5rem 0;
    background: linear-gradient(90deg, rgba(255,0,127,0.1) 0%, rgba(0,0,0,0) 100%);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Mobile Menu Styles */
#mobile-menu {
    will-change: transform;
}

#mobile-menu-overlay {
    will-change: opacity;
}

/* Desktop Menu Transition */
#desktop-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#desktop-menu.hidden {
    opacity: 0;
    visibility: hidden;
}

#mobile-menu-btn-wrapper {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu-btn-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Mobile Menu Animation */
#mobile-menu.translate-y-0 {
    transform: translateY(0);
}

#mobile-menu.-translate-y-full {
    transform: translateY(-100%);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Pagination Styles */
.pagination-wrapper {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper a,
.pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}
