
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Lato:wght@400;700&display=swap');

:root {
    --rf-bg: #1a1a1a;
    --rf-surface: #2a2a2a;
    --rf-accent: #8b5a2b; 
    --rf-accent-glow: #e6a817; 
    --rf-green: #3d5e30;
    --rf-text: #e0e0e0;
    --rf-font-head: 'Cinzel', serif;
    --rf-font-body: 'Lato', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--rf-bg); color: var(--rf-text); font-family: var(--rf-font-body); background-image: radial-gradient(circle at center, #2a2a2a 0%, #111 100%); background-attachment: fixed; }
a { color: var(--rf-accent-glow); text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; text-shadow: 0 0 10px var(--rf-accent-glow); }


.rf-header { background: rgba(20, 20, 20, 0.9); padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--rf-accent); position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.rf-logo { font-family: var(--rf-font-head); font-size: 28px; font-weight: 900; color: var(--rf-accent-glow); display: flex; align-items: center; gap: 10px; letter-spacing: 2px; }
.rf-logo svg { width: 35px; height: 35px; }
.rf-nav { display: flex; gap: 30px; }
.rf-nav a { font-family: var(--rf-font-head); font-size: 16px; font-weight: 700; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }
.rf-nav a:hover { color: var(--rf-accent-glow); }
.rf-menu-btn { display: none; background:none; border:none; color: var(--rf-accent-glow); font-size: 30px; cursor:pointer; }


.rf-hero { position: relative; height: 90vh; display: flex; align-items: center; overflow: hidden; justify-content: center; border-bottom: 5px solid var(--rf-accent); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.rf-hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); z-index: -2; object-fit: cover; filter: brightness(0.6) sepia(0.3); }
.rf-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,26,26,1) 0%, rgba(26,26,26,0) 50%); z-index: -1; }
.rf-hero-content { text-align: center; z-index: 1; padding: 20px; }
.rf-hero-title { font-family: var(--rf-font-head); font-size: 5rem; text-shadow: 2px 2px 4px #000, 0 0 20px var(--rf-accent-glow); margin-bottom: 20px; color: #fff; }
.rf-hero-desc { font-size: 1.5rem; text-shadow: 1px 1px 2px #000; margin-bottom: 40px; }


.rf-cta { display: inline-block; padding: 15px 40px; background: linear-gradient(to bottom, #4a4a4a, #2a2a2a); color: var(--rf-accent-glow); font-family: var(--rf-font-head); font-size: 1.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; border: 2px solid var(--rf-accent); border-radius: 4px; box-shadow: 0 4px 6px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2); transition: all 0.3s; position: relative; overflow: hidden; cursor:pointer; }
.rf-cta::after { content: ''; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background: radial-gradient(circle, rgba(230, 168, 23, 0.2) 0%, transparent 60%); opacity:0; transition:0.3s; transform: scale(0.5); }
.rf-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(230, 168, 23, 0.3), inset 0 1px 0 rgba(255,255,255,0.2); color: #fff; text-shadow: 0 0 5px var(--rf-accent-glow); border-color: var(--rf-accent-glow); }
.rf-cta:hover::after { opacity:1; transform: scale(1); }


.rf-section { padding: 80px 50px; max-width: 1200px; margin: 0 auto; }
.rf-section-title { font-family: var(--rf-font-head); font-size: 3rem; text-align: center; margin-bottom: 60px; color: var(--rf-accent-glow); text-shadow: 2px 2px 4px rgba(0,0,0,0.5); position: relative; }
.rf-section-title::after { content: ''; display: block; width: 100px; height: 3px; background: var(--rf-accent); margin: 15px auto 0; box-shadow: 0 0 10px var(--rf-accent-glow); }


.rf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; margin-top: 40px; }
.rf-card { background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23222"/></svg>'); border: 2px solid var(--rf-accent); border-radius: 8px; position: relative; transition: 0.3s; padding: 20px; box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 5px 15px rgba(0,0,0,0.5); display: flex; flex-direction: column; }
.rf-card:hover { transform: scale(1.02); border-color: var(--rf-accent-glow); box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 30px rgba(230,168,23,0.2); z-index: 10; }
.rf-card-img-wrap { width: calc(100% + 40px); margin: -40px -20px 20px -20px; height: 200px; position: relative; overflow: visible; }
.rf-card-img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px 8px 0 0; transition: 0.3s; border-bottom: 2px solid var(--rf-accent); }
.rf-card:hover .rf-card-img { transform: translateY(-15px) scale(1.05); border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); border-color: var(--rf-accent-glow); }
.rf-card-tags { margin-bottom: 10px; text-align: center; }
.rf-tag { display: inline-block; font-family: var(--rf-font-head); font-size: 0.8rem; font-weight: 700; color: var(--rf-accent-glow); padding: 2px 10px; border: 1px solid var(--rf-accent); margin: 0 5px; border-radius: 10px; background: rgba(0,0,0,0.5); }
.rf-card-title { font-family: var(--rf-font-head); font-size: 1.6rem; text-align: center; margin-bottom: 10px; color: #fff; }
.rf-card-rating { text-align: center; font-size: 1.1rem; color: #ffd700; margin-bottom: 15px; }
.rf-card-desc { font-size: 1rem; line-height: 1.6; color: #bbb; text-align: center; flex-grow: 1; margin-bottom: 20px; }


.rf-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 40px; }
.rf-filter-btn { background: #222; border: 1px solid var(--rf-accent); color: #ccc; font-family: var(--rf-font-head); font-weight: 700; padding: 10px 20px; cursor: pointer; transition: 0.3s; border-radius: 4px; }
.rf-filter-btn:hover, .rf-filter-btn.active { background: var(--rf-accent); color: #fff; box-shadow: 0 0 10px var(--rf-accent-glow); border-color: var(--rf-accent-glow); }


.rf-detail-hero { width: 100%; height: 450px; object-fit: cover; border: 4px solid var(--rf-accent); border-radius: 10px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.rf-parchment { background: #222; background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></svg>'); border: 2px solid var(--rf-accent); padding: 40px; border-radius: 8px; box-shadow: inset 0 0 50px rgba(0,0,0,0.8), 0 10px 20px rgba(0,0,0,0.5); margin-bottom: 40px; position: relative; }
.rf-parchment::before, .rf-parchment::after { content:''; position:absolute; width: 20px; height: 20px; border: 2px solid var(--rf-accent-glow); }
.rf-parchment::before { top: 10px; left: 10px; border-right:none; border-bottom:none; }
.rf-parchment::after { bottom: 10px; right: 10px; border-left:none; border-top:none; }


.rf-input { width: 100%; background: rgba(0,0,0,0.5); border: 1px solid var(--rf-accent); padding: 15px; color: #fff; font-family: var(--rf-font-body); font-size: 1.1rem; margin-bottom: 20px; border-radius: 4px; transition: 0.3s; }
.rf-input:focus { outline: none; border-color: var(--rf-accent-glow); box-shadow: inset 0 0 10px rgba(230,168,23,0.2); }
.rf-popup-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(5px); }
.rf-popup-bg.show { opacity: 1; visibility: visible; }
.rf-popup { background: #222; border: 2px solid var(--rf-accent-glow); padding: 50px; text-align: center; border-radius: 8px; box-shadow: 0 0 30px rgba(230,168,23,0.3); max-width: 500px; transform: scale(0.9); transition: 0.3s; }
.rf-popup-bg.show .rf-popup { transform: scale(1); }


.rf-faq-item { border-bottom: 1px solid var(--rf-accent); margin-bottom: 10px; }
.rf-faq-q { padding: 20px 0; font-family: var(--rf-font-head); font-size: 1.2rem; cursor: pointer; color: var(--rf-accent-glow); display: flex; justify-content: space-between; align-items: center; }
.rf-faq-q:hover { text-shadow: 0 0 5px var(--rf-accent-glow); }
.rf-faq-a { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 20px; color: #ccc; line-height: 1.6; }
.rf-faq-item.active .rf-faq-a { max-height: 500px; padding: 0 20px 20px 20px; }
.rf-faq-icon { transition: transform 0.3s; }
.rf-faq-item.active .rf-faq-icon { transform: rotate(180deg); }


.rf-footer { background: #111; border-top: 5px solid var(--rf-accent); padding: 60px 20px; text-align: center; }
.rf-footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; flex-wrap: wrap; }

@media (max-width: 768px) {
    .rf-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #1a1a1a; padding: 20px; border-bottom: 2px solid var(--rf-accent); }
    .rf-nav.active { display: flex; }
    .rf-menu-btn { display: block; }
    .rf-hero-title { font-size: 3rem; }
    .rf-section { padding: 40px 20px; }
}
