/* KABARTSY JEWELRY - Main Stylesheet */

:root {
    --gold: #C9A962;
    --gold-light: #E8D5A3;
    --gold-dark: #8B7355;
    --black: #1A1A1A;
    --charcoal: #2D2D2D;
    --cream: #FAF8F5;
    --cream-dark: #F0EBE3;
    --white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --text-light: #9A9A9A;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--cream);
}

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

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

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

/* HEADER */
header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--cream-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--gold);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
}

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

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

/* HERO */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
    padding: 40px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-small {
    height: 40vh;
    min-height: 300px;
}

.hero-small h1 {
    font-size: 42px;
}

/* PAGE HEADER */
.page-header {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* BREADCRUMBS */
.breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs span {
    margin: 0 10px;
}

/* TRUST BAR */
.trust-bar {
    background: var(--charcoal);
    color: var(--white);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-item span {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
}

/* PRODUCT GRID */
.products {
    padding: 80px 0;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--cream);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-info .price {
    color: var(--gold);
    font-weight: 600;
}

.product-info .material {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* COLLECTIONS */
.collections {
    padding: 80px 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: block;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}

.collection-overlay h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
}

/* STORY / ABOUT SECTION */
.story {
    padding: 100px 0;
    background: var(--charcoal);
    color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.story-image img {
    width: 100%;
    height: auto;
}

/* CONTENT PAGES */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-section.alt {
    background: var(--cream);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.content-text p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.content-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-text li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* FORMS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 1px solid var(--cream-dark);
    background: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    background: var(--cream);
    padding: 40px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--gold);
}

/* SIZING GUIDE */
.size-chart {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.size-chart th,
.size-chart td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--cream-dark);
}

.size-chart th {
    background: var(--charcoal);
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-chart tr:nth-child(even) {
    background: var(--cream);
}

/* FOOTER */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.7;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

    .story-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    nav ul {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* PROFESSIONAL IMAGE ENHANCEMENTS */

/* Subtle shadow and polish on product images */
.product-card img {
    filter: contrast(1.05) saturate(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-card:hover img {
    filter: contrast(1.08) saturate(1.15) brightness(1.02);
}

/* Hero image overlay for depth */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

/* Collection cards - luxury feel */
.collection-card img {
    filter: contrast(1.05) saturate(1.05);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Gold tint overlay for luxury branding */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201,169,98,0.05) 0%, transparent 100%);
    pointer-events: none;
}

.product-card {
    position: relative;
}

