/*
Theme Name: Bespoke Italian Kitchens
Theme URI: https://mebelvitaly.ru
Author: Mebel Vitaly
Author URI: https://mebelvitaly.ru
Description: Премиальная тема для итальянских кухонь с полным управлением через админку WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bespoke-kitchens
Tags: luxury, furniture, e-commerce, custom-menu, custom-logo, featured-images, full-width-template
*/

/* Premium Typography - Unified Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #e8c968;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --gray: #666666;
    --light-gray: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--primary);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
    font-weight: 300;
    letter-spacing: 0.3px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    font-weight: 300;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Collections */
.collections {
    background: var(--off-white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.collection-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.collection-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary);
    transition: var(--transition);
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.collection-card:hover .image-placeholder {
    transform: scale(1.05);
}

.collection-info {
    padding: 40px;
}

.collection-info h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.collection-info p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.collection-price {
    display: block;
    font-size: 28px;
    color: var(--gold);
    font-weight: 300;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.collection-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.collection-btn:hover {
    background: var(--gold);
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--gray);
    margin-top: 10px;
}

.sticky {
    background: var(--off-white);
}

.bypostauthor {
    font-weight: 600;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .container,
    .container-wide {
        padding: 0 20px;
    }
}
