:root {
    --bg-color: #fcfcfc; /* Light off-white */
    --surface-color: #ffffff;
    --text-color: #1a1a1a;
    --text-muted: #737373;
    --accent-color: #444444;
    --nav-height: 80px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.4s;
}

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

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

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover, a.active {
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-speed);
    border-radius: 2px;
}

.btn:hover {
    background: var(--text-color);
    color: var(--surface-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(252, 252, 252, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

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

/* Views Container */
#app-container {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

.view {
    display: none;
    padding: 4rem 5%;
    opacity: 0;
    animation: fadeIn var(--transition-speed) forwards;
}

.view.active {
    display: block;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hero Section */
.hero {
    height: calc(100vh - var(--nav-height) - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1); /* extremely subtle */
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(252, 252, 252, 0.95);
    padding: 3rem 4rem;
    border-radius: 2px;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* Typography elements */
h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 1px;
}

/* Gallery & Shop Grid */
.gallery-grid, .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.gallery-item, .shop-item {
    background: transparent;
    padding: 0;
    transition: transform var(--transition-speed);
}
.gallery-item:hover, .shop-item:hover {
    transform: translateY(-5px);
}
.gallery-item img, .shop-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 2px;
}
.gallery-info, .shop-info {
    padding: 0 0.5rem;
}
.gallery-info h3, .shop-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.gallery-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.shop-info .price {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}
.shop-item button {
    width: 100%;
    text-align: center;
}

/* About View */
.about-container {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Forms */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 16px;
    background: var(--surface-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    transition: border-color var(--transition-speed);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--text-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none; 
    }
    .about-container {
        flex-direction: column;
    }
}
