﻿:root {
  --bg-color: #F8F9FA;
  --text-color: #212529;
  --primary-color: #0D1B2A;
  --secondary-color: #1B263B;
  --accent-color: #E0A96D;
  --white: #FFFFFF;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }
.skip-link { position: absolute; top: -50px; left: 0; background: var(--accent-color); color: var(--primary-color); padding: 10px 15px; z-index: 10000; transition: top 0.3s; font-weight: bold; }
.skip-link:focus { top: 0; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header { background-color: var(--primary-color); color: var(--white); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.logo { font-family: var(--font-heading); font-size: 2.2rem; font-weight: bold; color: var(--accent-color); letter-spacing: 1px; }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav a { font-size: 1.1rem; font-weight: 500; }
nav a:hover { color: var(--accent-color); }

/* Hero */
.hero { background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url('https://picsum.photos/seed/bettuntv/1920/1080') center/cover; padding: 10rem 5%; color: var(--white); text-align: center; }
.hero h1 { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
.hero p { font-size: 1.5rem; max-width: 900px; margin: 0 auto 3rem; font-weight: 300; }
.btn { display: inline-block; background-color: var(--accent-color); color: var(--primary-color); padding: 1.2rem 3rem; font-size: 1.2rem; font-weight: bold; border: none; border-radius: 5px; cursor: pointer; transition: transform 0.3s, background-color 0.3s; }
.btn:hover { background-color: #c8935a; transform: translateY(-3px); }

/* Sections */
section { padding: 6rem 5%; }
.bg-dark { background-color: var(--secondary-color); color: var(--white); }
h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 2rem; color: var(--primary-color); text-align: center; }
.bg-dark h2 { color: var(--accent-color); }

/* Features */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.features-text ul { list-style: none; margin-top: 2rem; }
.features-text li { margin-bottom: 1.5rem; font-size: 1.2rem; position: relative; padding-left: 2.5rem; }
.features-text li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent-color); position: absolute; left: 0; font-size: 1.5rem; }
.img-wrapper img { border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

/* Form */
.form-container { max-width: 700px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: bold; font-size: 1.1rem; }
.form-group input { width: 100%; padding: 1rem; border: 1px solid #ced4da; border-radius: 5px; font-family: var(--font-body); font-size: 1rem; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 2rem; }
.checkbox-group input { margin-top: 6px; transform: scale(1.2); }
.checkbox-group label { font-size: 0.95rem; color: #6c757d; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: var(--white); border: 1px solid #e9ecef; border-radius: 5px; margin-bottom: 1rem; padding: 1.5rem; cursor: pointer; transition: box-shadow 0.3s; }
details:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
summary { font-size: 1.3rem; font-weight: bold; color: var(--primary-color); outline: none; }
details p { margin-top: 1rem; font-size: 1.1rem; color: #495057; }

/* Footer */
footer { background-color: var(--primary-color); color: #adb5bd; padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-grid h3 { color: var(--white); font-family: var(--font-heading); margin-bottom: 1.5rem; font-size: 1.5rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.8rem; }
.footer-grid a:hover { color: var(--accent-color); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.9rem; }

/* Cookie Banner */
#cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--white); padding: 1.5rem 5%; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; z-index: 9999; transition: bottom 0.5s ease-in-out; }
#cookie-banner.show { bottom: 0; }
.cookie-text { max-width: 70%; font-size: 1rem; color: var(--text-color); }
.cookie-buttons { display: flex; gap: 1rem; }
.btn-outline { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 0.8rem 1.5rem; border-radius: 5px; cursor: pointer; font-weight: bold; }
.btn-solid { background: var(--primary-color); border: 2px solid var(--primary-color); color: var(--white); padding: 0.8rem 1.5rem; border-radius: 5px; cursor: pointer; font-weight: bold; }

/* Success Msg */
.success-msg { text-align: center; padding: 3rem; background: #d4edda; color: #155724; border-radius: 10px; margin-top: 2rem; }
.success-msg i { font-size: 4rem; margin-bottom: 1rem; color: #28a745; }

/* Legal Pages */
.legal-content { max-width: 900px; margin: 0 auto; background: var(--white); padding: 4rem; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.legal-content h1 { font-family: var(--font-heading); color: var(--primary-color); font-size: 2.5rem; margin-bottom: 2rem; border-bottom: 2px solid var(--accent-color); padding-bottom: 1rem; }
.legal-content h2 { font-size: 1.8rem; text-align: left; margin: 2rem 0 1rem; }
.legal-content p, .legal-content li { font-size: 1.1rem; margin-bottom: 1rem; color: #495057; }
.legal-content ul { padding-left: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  nav ul { display: none; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1.2rem; }
  .features { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cookie-text { max-width: 100%; }
}
