Changed around line 1
+ :root {
+ --christmas-red: #c41e3a;
+ --christmas-green: #165b33;
+ --gold: #ffd700;
+ --white: #fff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Helvetica Neue', Arial, sans-serif;
+ line-height: 1.6;
+ background: linear-gradient(to bottom, #0a2f1f, #165b33);
+ color: var(--white);
+ overflow-x: hidden;
+ }
+
+ .snowfall {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+ z-index: 1000;
+ }
+
+ header {
+ background-color: rgba(0, 0, 0, 0.8);
+ padding: 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .lights-container {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 10px;
+ }
+
+ .lights {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: repeating-linear-gradient(90deg,
+ var(--christmas-red) 0px,
+ var(--christmas-red) 10px,
+ transparent 10px,
+ transparent 20px,
+ var(--gold) 20px,
+ var(--gold) 30px,
+ transparent 30px,
+ transparent 40px,
+ var(--christmas-green) 40px,
+ var(--christmas-green) 50px);
+ animation: twinkle 1s infinite;
+ }
+
+ @keyframes twinkle {
+ 0%, 100% { opacity: 1; }
+ 50% { opacity: 0.5; }
+ }
+
+ h1 {
+ text-align: center;
+ font-size: 3rem;
+ color: var(--gold);
+ text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
+ margin-bottom: 1rem;
+ }
+
+ .subtitle {
+ display: block;
+ font-size: 1.5rem;
+ color: var(--white);
+ }
+
+ nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ nav a {
+ color: var(--white);
+ text-decoration: none;
+ font-size: 1.2rem;
+ transition: color 0.3s;
+ }
+
+ nav a:hover {
+ color: var(--gold);
+ }
+
+ #hero {
+ height: 60vh;
+ background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
+ url('data:image/svg+xml;utf8,
');
+ background-size: cover;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ }
+
+ .hero-content {
+ padding: 2rem;
+ background: rgba(0,0,0,0.7);
+ border-radius: 10px;
+ }
+
+ section {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .hours-grid {
+ display: grid;
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .hours-card {
+ background: rgba(0,0,0,0.7);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ border: 2px solid var(--gold);
+ }
+
+ .contact-info {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ footer {
+ background-color: rgba(0,0,0,0.8);
+ text-align: center;
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .subtitle {
+ font-size: 1rem;
+ }
+
+ nav {
+ flex-direction: column;
+ align-items: center;
+ gap: 1rem;
+ }
+
+ #hero {
+ height: 40vh;
+ }
+ }