body { padding-top: 70px; background-color: #fff8f0; /* Soft snowy beige */ overflow-x: hidden; } .navbar { background: linear-gradient(135deg, #004225, #c1121f); /* Xmas green to red */ border-bottom: 3px solid #ffd700; /* Christmas gold */ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); padding: 10px 0; } .nav-link { color: #ffd700 !important; /* Gold links */ font-weight: bold; letter-spacing: 1px; transition: all 0.3s ease-in-out; } .nav-link:hover { color: #fff8f0 !important; /* Light snow hover */ transform: scale(1.1); } .navbar-toggler { border: 2px solid #ffd700; } .navbar-toggler:focus { box-shadow: 0 0 5px #ffd700; } p, span { color: #333; /* Easier readability on light bg */ } .btn { background-color: #c1121f; /* Christmas red */ color: #fff; font-family: 'Arial', sans-serif; padding: 10px 20px; border-radius: 25px; border: none; text-transform: uppercase; font-weight: bold; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease-in-out; } .btn:hover { background-color: #ffd700; /* Gold hover */ color: #004225; /* Deep green text */ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 0 0 15px #ffd700; transform: scale(1.05); } section.roadmap { padding: 20px; background: url('santa-bg.png') no-repeat center center; background-size: cover; font-family: Arial, sans-serif; color: #000; } section.roadmap .container::before { background: linear-gradient( to bottom, #c1121f, #004225 ); /* Red to green line */ } section.roadmap p { background: rgba(255, 255, 255, 0.85); border: 2px solid #004225; } section.roadmap p::before { background: #ffd700; color: #004225; } .cookie-banner { background: #004225; color: #fff; padding: 1rem 1.5rem; position: fixed; bottom: 1rem; left: 1rem; right: 1rem; border-radius: 8px; display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); z-index: 9999; } @media (min-width: 768px) { .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; } } .cookie-text { font-size: 1rem; line-height: 1.5; color: #fff; } .cookie-button { background: #c1121f; color: #fff; padding: 0.5rem 1rem; font-size: 0.9rem; border: none; border-radius: 6px; cursor: pointer; text-decoration: none; transition: background 0.2s ease; } .cookie-button:hover { background: #a10e19; } /* Hide banner when the user clicks "Accept" */ #hide-cookie:target { display: none; } .footer { background: linear-gradient(135deg, #004225, #c1121f); border-top: 3px solid #ffd700; color: white; padding: 40px 0; } .footer-links a, .footer-disclaimer p, .footer-copyright p { color: #ffd700; }