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

body {
    background: #5a0f1a;
    font-family: 'Inter', sans-serif;
    color: #111;
}

/* GOLD LINES */
.gold-line {
    position: fixed;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, #c9a227, #b8962e);
    z-index: 0;
}

.gold-line.left { left: 0; }
.gold-line.right { right: 0; }

/* HEADER */
header {
    text-align: center;
    padding: 60px 20px 20px;
    color: #fff;
    position: relative;
    z-index: 1;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    letter-spacing: 2px;
}

header p {
    font-size: 13px;
    opacity: 0.6;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    color: #fff;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
}

.tagline {
    margin-top: 10px;
    letter-spacing: 3px;
    opacity: 0.7;
}

/* MAIN */
main {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* CARD */
.card {
    background: #ffffff;
    margin: 40px 0;
    padding: 35px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* GOLD ACCENT INSIDE CARD */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, #b8962e);
}

/* TEXT */
.card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.card p {
    line-height: 1.7;
}

ul {
    list-style: none;
}

li {
    margin: 10px 0;
}

/* BUTTON */
.btn {
    margin-top: 20px;
    padding: 12px 28px;
    border: 1px solid #111;
    background: none;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn:hover {
    background: #111;
    color: #fff;
}

/* FOOTER */
footer {
    background: #0e0e0e;
    color: #fff;
    margin-top: 80px;
    padding: 50px 20px;
}

.footer-inner {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #d4af37;
    margin: 0 12px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.6;
}

/* COOKIE */
.cookie {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 999;
}

.cookie a {
    color: #d4af37;
}

.cookie button {
    background: #d4af37;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
  } 
