@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* =============================================
   REINHEIT — SHARED BASE STYLES
   Used by: index.html & shop.html
   ============================================= */

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

:root {
    --bg-color:    #0a0a0a;
    --bg2:         #0f0e0c;
    --bg3:         #161410;
    --gold:        #bd9730;
    --gold-light:  #d4af50;
    --gold-dim:    #8a6e22;
    --gold-pale:   #f0dfa0;
    --text:        #ffffff;
    --text-muted:  #cccccc;
    --text-dim:    #6a6050;
    --cream-bg:    #f5f0e8;
    --dark-panel:  #111111;
    --border-gold: 2.5px solid #bd9730;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--gold);
    font-family: 'Georgia', serif;
}

p {
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

/* =============================================
   SHARED: MENU BUTTON
   ============================================= */
#menuBtn{
    position: fixed ;
    top: 15px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 2px;
    cursor: pointer;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    border-radius: 4px;
    border: 1px solid rgba(189, 151, 48, 0.2) ;
    transition: 0.3s ease;
}

#menuBtn:hover {
    border-color: rgba(189, 151, 48, 0.6);
    background: rgba(0, 0, 0, 0.7) ;
}

#menuBtn div {
    height: 3px;
    border-radius: 2px;
    width: 100%;
    background: #fed;
    transition: 0.3s ease;
}
#menuBtn div:nth-child(2) { 
    width: 75%; 
}
#menuBtn div:nth-child(3) { 
    width: 50%; 
}
#menuBtn:hover div:nth-child(1) { 
    width: 50%; 
}
#menuBtn:hover div:nth-child(3) { 
    width: 100%; 
}
#menuBtn:active div { 
    width: 100%; 
}

/* =============================================
   SHARED: SIDEBAR
   ============================================= */
.side-bar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100vh;
    background: rgba(8, 7, 6, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(6px);
    border-right: 1px solid rgba(189, 151, 48, 0.25);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.side-bar.open {
    left: 0;
}
.side-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s, letter-spacing 0.3s;
    display: block;
    border-bottom: 1px solid rgba(189, 151, 48, 0.1);
    padding-bottom: 1rem;
}
.side-nav a:hover {
    color: var(--gold);
    letter-spacing: 5px;
}
.side-bar .side-nav a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.35s ease;
}
.side-bar .side-nav a:hover::before { width: 60%; }
/* Sidebar overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.sidebar-overlay.active { 
    display: block; 
}

/* =============================================
   SHARED: SCROLL-TO-TOP BUTTON
   ============================================= */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border: 1px solid rgba(189, 151, 48, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
    z-index: 999;
    animation: pulse-glow 3s ease-in-out infinite;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover { background: var(--gold-light); }
.scroll-top-btn svg {
    width: 20px;
    height: 20px;
    stroke: #0a0a0a;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =============================================
   SHARED: BADGES
   ============================================= */
.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.48rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
}
.badge-new  { background: var(--gold); color: var(--bg-color); }
.badge-best { border: 1px solid var(--gold); color: var(--gold); }

/* =============================================
   SHARED: SECTION DIVIDER
   ============================================= */
.section-divider {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: var(--bg-color);
}
.section-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim));
}
.section-divider span:last-child {
    background: linear-gradient(to left, transparent, var(--gold-dim));
}
.section-divider i {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* =============================================
   SHARED: REVEAL / FADE ANIMATIONS
   ============================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(189, 151, 48, 0); }
    50%       { box-shadow: 0 0 18px 4px rgba(189, 151, 48, 0.22); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.18s; }
.fade-up.d3 { transition-delay: 0.28s; }
.fade-up.d4 { transition-delay: 0.38s; }
.fade-up.d5 { transition-delay: 0.48s; }

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* =============================================
   SHARED: FOOTER (shop.html version – homepage
   has its own richer footer in index.css)
   ============================================= */
footer {
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(189, 151, 48, 0.12);
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--bg-color);
}
footer .foot-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--gold);
}
footer .foot-logo span {
    -webkit-text-stroke: 1px var(--gold);
    color: transparent;
}
footer .foot-copy {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}
footer .foot-contact {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}
footer .foot-contact strong { color: var(--gold); }

/* =============================================
   RESPONSIVE – shared elements
   ============================================= */
@media (max-width: 800px) {
    .side-bar { width: 70%; }
    .side-bar .side-nav a { font-size: 2.2rem; }
    footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-btn::before { display: none; }
    .side-bar { width: 85%; }
    .side-bar .side-nav { gap: 2.2rem; }
    .side-bar .side-nav a { font-size: 1.8rem; letter-spacing: 4px; }
    footer { padding: 1.5rem 1rem; }
}
