
:root {
     --ruby: #7A1F2D;
     --champagne: #D4AF37;
     --ivory: #F8F6F3;
     --charcoal: #2B2B2B;
     --blush: #E7C9C9;
 }

 body {
     font-family: 'Montserrat', sans-serif;
     background: var(--ivory);
     color: var(--charcoal);
     line-height: 1.7;
     margin: 0;
     padding: 0;
 }

 header {
     background: white;
     padding: 2rem;
     border-bottom: 1px solid #eee;
     text-align: center;
 }

 .site-link {
     color: var(--ruby);
     text-decoration: none;
 }


 header h1 {
     font-family: 'Playfair Display', serif;
     color: var(--ruby);
     font-size: 2.3rem;
     margin-bottom: .5rem;
 }

 main {
     max-width: 900px;
     margin: auto;
     padding: 3rem 2rem 5rem;
 }

 h2 {
     font-family: 'Playfair Display', serif;
     color: var(--ruby);
     margin-top: 3rem;
     margin-bottom: .5rem;
 }

 a {
     color: var(--ruby);
 }

 footer {
     text-align: center;
     padding: 2rem;
     font-size: .9rem;
     background: white;
     border-top: 1px solid #eee;
 }


 #scrollTopBtn {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 45px;
     height: 45px;
     border-radius: 50%;
     background-color: var(--ruby);
     color: white;
     font-size: 1.5rem;
     font-weight: bold;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     z-index: 1000;
 }

 #scrollTopBtn:hover {
     background-color: var(--champagne);
     color: var(--charcoal);
 }

 #scrollTopBtn.show {
     opacity: 1;
     visibility: visible;
 }