html {
    scroll-behavior: smooth;
}
body {
    color: #222222;
}

/* Font Families */
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-dmsans { font-family: "DM Sans", sans-serif; } /* Fixed from "serif" */

/* Max Content Width */
.max-content-width { max-width: 1280px; margin: 0 auto; }  

/* WYSIWYG Content */
.wysiwyg-content {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px; 
    color: #4b4b4b;
}

.wysiwyg-content p {
    margin-bottom: 16px; 
}

/* Headings */
.wysiwyg-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 32px; 
    font-weight: bold;
    margin-bottom: 20px;
}

.wysiwyg-content h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 22px; 
    margin-bottom: 16px;
    font-weight: bold;
}


/* Lists */
.wysiwyg-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.wysiwyg-content ul li {
    margin-bottom: 20px;
}

.wysiwyg-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.wysiwyg-content ol li {
    margin-bottom: 20px;
}

/* Links */
.wysiwyg-content a {
    color: #a2762b;
    font-weight: bold;
    text-decoration: underline;
}

.wysiwyg-content a:hover {
    color: #815a1e;
}


/* Mobile Adjustments */
@media (max-width: 767px) {
    .wysiwyg-content {
        font-size: 16px; 
    }
    
    .wysiwyg-content h2 {
        font-size: 26px; 
    }

    .wysiwyg-content h3 {
        font-size: 20px; 
        margin-bottom: 14px;
    }
    
    .wysiwyg-content ul, 
    .wysiwyg-content ol {
        padding-left: 1rem; 
    }

    .wysiwyg-content ul li,
    .wysiwyg-content ol li {
        margin-bottom: 14px; 
    }
}


/* Background Colors */
.platinum {
    background-color: #e8e9ee;
}

.blue {
    background-color: #4d9ab6;
}

.golden {
    background-color: #dac8aa;
}

/* Background Images */
.sunburst-platinum {
    background-image: url('/assets/images/sunburst-platinum.jpg');
    background-size: cover;
    background-position: center;
}

.sunburst-golden {
    background-image: url('/assets/images/sunburst-golden.jpg');
    background-size: cover;
    background-position: center;
}



/* General Button Styling */
.button {
    padding: 12px 24px;
    border: 1px solid #a2762b;
    background-color: transparent;
    color: #a2762b;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
}

/* Hover Effect */
.button:hover {
    background-color: #a2762b;
    color: white;
    transform: scale(1.05);
}

/* Mobile Button Adjustments */
@media (max-width: 767px) {
    .button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

