/*
Theme Name: RuKanvas
Theme URI: https://rukanvas.com/
Author: Antigravity
Author URI: https://ai.google/
Description: A premium, dark-themed online selling platform for wall art. Featuring elegant gold accents and a warm sunset color palette.
Version: 1.0.0
Tags: e-commerce, dark, gold, portfolio, full-width-template
Text Domain: rukanvas
*/

:root {
    --deep-navy: #0B1B28;
    --gold: #D4AF37;
    --warm-sunset: #FF8C42;
    --soft-cream: #F8F1E5;
    --cool-teal: #3AB0A4;
    --light-gray: #E0E0E0;
    --dark-charcoal: #121212;
    --white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--deep-navy);
    color: var(--soft-cream);
    font-family: var(--font-body);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--warm-sunset);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-top: 0;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: var(--dark-charcoal);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.site-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

.site-title a {
    color: var(--gold);
}

.site-description {
    font-size: 0.9rem;
    color: var(--soft-cream);
    margin: 0;
    letter-spacing: 1px;
}

.site-logo img {
    max-height: 80px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: var(--soft-cream);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-navigation a:hover {
    color: var(--warm-sunset);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(rgba(11, 27, 40, 0.85), rgba(11, 27, 40, 0.95)), 
                url('https://images.unsplash.com/photo-1495344517868-8ebaf0a2044e?q=80&w=1200&auto=format&fit=crop') no-repeat center center/cover;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    color: var(--light-gray);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--gold);
    color: var(--deep-navy);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    font-family: var(--font-body);
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--warm-sunset);
    border-color: var(--warm-sunset);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
}
.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: none;
}

/* Gallery / Shop */
.gallery-section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--soft-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.gallery-card {
    background-color: var(--dark-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.4);
}

.gallery-card-img {
    width: 100%;
    height: 280px;
    background-color: var(--deep-navy);
    object-fit: cover;
    display: block;
}

.gallery-card-content {
    padding: 2rem;
}

.gallery-card-title {
    font-size: 1.4rem;
    color: var(--soft-cream);
    margin-bottom: 0.8rem;
}
.gallery-card-title a {
    color: var(--soft-cream);
}
.gallery-card-title a:hover {
    color: var(--gold);
}

.gallery-card-price {
    font-weight: 600;
    color: var(--warm-sunset);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background-color: var(--dark-charcoal);
    padding: 4rem 5% 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.site-footer p {
    color: var(--light-gray);
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
