/* assets/css/style.css */
:root {
    --primary-color: #3a2c21; /* Dark Walnut / Deep Brown */
    --secondary-color: #f5f0eb; /* Warm Beige / Cream */
    --accent-color: #c6a87c; /* Gold / Muted Brass */
    --bg-color: #fdfbf7; /* Off White / Ivory */
    --text-color: #2b2b2b; /* Charcoal / Dark Brown */
    --text-light: #6c6a66;
    --dark-section: #251c15; /* Deep Espresso */
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

h1, h2, h3, h4, h5, h6, .brand-accent {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

/* Typography Overrides */
.text-primary-custom { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }
.bg-dark-section { background-color: var(--dark-section) !important; }

/* Buttons */
.premium-btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(198, 168, 124, 0.2);
}

.premium-btn:hover {
    background-color: #b09265;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(198, 168, 124, 0.3);
}

.btn-outline-premium {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.65rem 2rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-outline-premium:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Navbar */
.custom-navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.custom-navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.brand-accent {
    color: var(--accent-color);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(37, 28, 21, 0.9) 0%, rgba(37, 28, 21, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f5f0eb;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Trust Points */
.trust-point-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.trust-point-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Collection Cards */
.collection-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

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

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
    transition: var(--transition-smooth);
}

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

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
}

.collection-title {
    color: #fff;
    margin-bottom: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.collection-link {
    color: var(--accent-color);
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}

.collection-card:hover .collection-title {
    transform: translateY(0);
}

.collection-card:hover .collection-link {
    opacity: 1;
    transform: translateY(0);
}

/* Image Masonry Gallery */
.gallery-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(58, 44, 33, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Footer */
.custom-footer {
    background-color: var(--dark-section);
    color: var(--text-light);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Floating Actions */
.back-to-top, .floating-email {
    position: fixed;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
}

.back-to-top {
    bottom: 30px;
    background-color: var(--primary-color);
}

.floating-email {
    bottom: 90px;
    background-color: var(--accent-color);
}

.back-to-top.show, .floating-email.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover, .floating-email:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(37, 28, 21, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 1.5rem 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}
