/* Dark Elegant Theme Update */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Cormorant+Garamond:wght@400;600&display=swap');

:root {
    --primary-color: #d4af37; /* Gold Boutique */
    --primary-hover-color: #b9972e;
    --background-color: #121212; /* Dark background */
    --container-bg: #1e1e1e;
    --text-color: #e0e0e0;
    --text-secondary-color: #b3b3b3;
    --box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--background-color);
    color: var(--text-color);
    background-image: url('parchment-texture.jpg');
    background-size: cover;
    background-blend-mode: multiply;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
}

p {
    font-size: 1.2rem;
    color: var(--text-secondary-color);
}

.container {
    background: var(--container-bg);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 85%;
    width: 100%;
}

.logo {
    width: 180px;
    margin-bottom: 1.8rem;
    transition: transform var(--transition-speed) ease, opacity 1s ease-in-out;
    opacity: 0;
    animation: fadeIn 1.5s forwards ease-in-out, candleFlicker 2s infinite ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes candleFlicker {
    0% { filter: brightness(0.9); }
    50% { filter: brightness(1.1); }
    100% { filter: brightness(0.9); }
}

.btn {
    font-family: 'Playfair Display', serif;
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    background: transparent;
    font-weight: 600;
    box-shadow: 0px 0px 8px rgba(212, 175, 55, 0.2);
}

.btn:hover {
    background: var(--primary-color);
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0px 0px 12px rgba(212, 175, 55, 0.4);
}

/* Elegant Underline Animation for Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

a:hover::after {
    width: 100%;
    left: 0;
}

/* Instagram Embed */
.instagram-feed {
    margin-top: 3rem;
    text-align: center;
}
.instagram-feed iframe {
    width: 100%;
    max-width: 500px;
    height: 600px;
    border: none;
}

/* Candle Preview Section */
.product-preview {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-align: center;
}

.product-preview img {
    width: 100px;
    margin-bottom: 1rem;
}

.product-preview h2 {
    font-size: 2rem;
    color: var(--primary-color);
}