:root {
    --primary-color: #54012A;
    --secondary-color: #CCAA66;
    --white-color: #FFFFFF;
    --bg-light: #FFFAF0;
    --text-color: #54012A;
}

@font-face {
    font-family: 'YourFont';  /* Let me know the actual font names from your assets/fonts/ */
    src: url('../assets/fonts/your-font.woff2') format('woff2'),
         url('../assets/fonts/your-font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* If you have more font weights/styles, add them like this:
@font-face {
    font-family: 'YourFont';
    src: url('../assets/fonts/your-font-bold.woff2') format('woff2'),
         url('../assets/fonts/your-font-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
*/

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

body {
    font-family: 'Sentient-Regular', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    padding-top: 72px;  /* Height of navbar (adjust if needed) */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;  /* Change from static to fixed */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;  /* Ensure navbar stays above other content */
    transition: transform 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: transform 0.3s ease-in-out;
    background-color: transparent;
}

.nav-links a {
    font-family: 'Sentient-Regular', serif;
    text-decoration: none;
    color: var(--white-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: right;
}

.nav-links a:hover {
    color: var(--bg-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

.hero-background svg {
    position: absolute;
    left: -10%;
    top: 120%;
    transform: translateY(-50%);
    width: 70%;
    height: auto;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-height: 840px;
    object-fit: contain;
    margin-bottom: -360px;
}

.hero-content h1 {
    font-family: 'Sentient-Bold', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: left;  /* Since hero content is centered on mobile */
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Sentient-Bold', serif;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    text-align: center;
    align-items: center;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button.alt {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button.alt:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Workshops Section */
.workshops {
    padding: 4rem 0 8rem;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

.workshops-grid::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -70px;
    width: 243px;
    height: 250px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='243.536' height='250.419' viewBox='0 0 243.536 250.419'%3E%3Cg id='Group_8' data-name='Group 8' transform='translate(-1450.979 -126.569)'%3E%3Ccircle id='Ellipse_9' data-name='Ellipse 9' cx='96' cy='96' r='96' transform='matrix(0.966, 0.259, -0.259, 0.966, 1500.672, 126.569)' fill='%23ca6'/%3E%3Ccircle id='Ellipse_10' data-name='Ellipse 10' cx='61' cy='61' r='61' transform='matrix(0.966, 0.259, -0.259, 0.966, 1576.672, 227.569)' fill='%2354012a'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
    opacity: 1;
}

.workshop-box {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.workshop-box:hover {
    transform: translateY(-10px);
    box-shadow: rgba(149, 157, 165, 0.3) 0px 12px 30px;
}

.workshop-box h2 {
    font-family: 'Sentient-Medium', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.workshop-details {
    margin: 1.5rem 0;
}

.info-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Sentient-Bold', serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.info-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Form Section */
.form-section {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}

.form-section h2 {
    color:  var(--bg-light);
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--white-color);
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input:not([type="checkbox"]) {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(84, 1, 42, 0.2);
    border-radius: 5px;
    background-color: var(--bg-light);
    font-family: 'Sentient-Regular', serif;
    color: var(--primary-color);
}

.form-group input:not([type="checkbox"]):focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(84, 1, 42, 0.1);
}

/* Style placeholders for different browsers */
.form-group input:not([type="checkbox"])::placeholder {
    color: var(--secondary-color);
    opacity: 0.8;
}

/* For Firefox */
.form-group input:not([type="checkbox"]):-moz-placeholder {
    color: var(--secondary-color);
    opacity: 0.8;
}

/* For Internet Explorer */
.form-group input:not([type="checkbox"]):-ms-input-placeholder {
    color: var(--secondary-color);
    opacity: 0.8;
}

/* For Edge */
.form-group input:not([type="checkbox"])::-ms-input-placeholder {
    color: var(--secondary-color);
    opacity: 0.8;
}

/* Add checkbox container styling */
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

/* Style checkbox labels */
.checkbox label {
    color: var(--bg-light);  /* Ivory color */
    font-family: 'Sentient-Regular', serif;
    line-height: 1.4;
}

/* Custom checkbox styling */
.checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    background-color: var(--secondary-color);
    cursor: pointer;
    position: relative;
    margin: 0;
    flex-shrink: 0;  /* Prevent checkbox from shrinking */
}

/* Checkmark styling */
.checkbox input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Show checkmark when checked */
.checkbox input[type="checkbox"]:checked::before {
    opacity: 1;
}

/* Focus state */
.checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(204, 170, 102, 0.3);
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.section-title {
    font-family: 'Sentient-Bold', serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Sentient-Light', serif;
    color: var(--text-color);
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Update Navigation for hamburger animation */
.nav-active {
    transform: translateX(0%);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        background-color: var(--primary-color);
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 998;
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .nav-links li {
        margin: 1rem 0;
        opacity: 0;
    }

    .nav-links.nav-active li {
        opacity: 1;
        transition: opacity 0.3s ease-in-out;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: 2;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-background {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .workshops-grid::after {
        /* display: none; */
    }
}

/* Update headings */
h1, h2, .section-title, .workshop-box h2 {
    font-family: 'Sentient-Bold', serif;
}

/* Update floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(84, 1, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-family: 'Sentient-Bold', serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 1rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-details address {
    font-style: normal;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(84, 1, 42, 0.1);
    color: var(--text-color);
}

/* Update responsive design for contact section */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        flex-wrap: wrap;
    }
} 

.section-header.text-center.mb-5 {
    padding: 20px 0px 20px;
}

ul.nav-links {
    margin-bottom: 0px;
}

/* Update contact section styles */
.contact-item h3 {
    font-family: 'Sentient-Bold', serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-note {
    margin-top: 1.5rem;
    color: var(--text-color);
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Add styles for the footer logo */
.footer-logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        margin-top: 2rem;
    }
}

/* Add animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Add animation classes */
.animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* Apply animations to sections */
.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-image {
    animation: fadeIn 1s ease 0.4s forwards;
    opacity: 0;
}

.workshops-grid .workshop-box:nth-child(2) {
    animation-delay: 0.2s;
}

.registration-form {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.contact-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.contact-grid .contact-item:nth-child(2) {
    animation-delay: 0.2s;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add hover animations */
.workshop-box, .cta-button, .info-button, .submit-button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-box:hover {
    transform: translateY(-10px);
    box-shadow: rgba(149, 157, 165, 0.3) 0px 12px 30px;
}

.cta-button:hover, .info-button:hover, .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Add intersection observer for scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add styling for bold text elements */
b, strong {
    font-family: 'Sentient-Bold', serif;
    font-weight: 600;
}

/* Update specific strong elements in contact details */
.contact-details strong {
    font-family: 'Sentient-Bold', serif;
    font-weight: 600;
    color: var(--primary-color);
}

/* Update strong elements in workshop details */
.workshop-details strong {
    font-family: 'Sentient-Bold', serif;
    font-weight: 600;
    color: var(--primary-color);
}

/* Add the decorative SVG */
.contact-info::before {
    content: '';
    position: absolute;
    left: -184px;  /* Half of SVG width to hide half of it */
    bottom: 20px;
    width: 368px;
    height: 254px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='368' height='254' viewBox='0 0 368 254'%3E%3Cg id='Group_15' data-name='Group 15' transform='translate(-13726 -2527.921)'%3E%3Crect id='Rectangle_15' data-name='Rectangle 15' width='209' height='18' transform='translate(13966 2568.921) rotate(180)' fill='%23faf2e3'/%3E%3Crect id='Rectangle_16' data-name='Rectangle 16' width='209' height='18' transform='translate(14067 2631.921) rotate(180)' fill='%23faf2e3'/%3E%3Crect id='Rectangle_17' data-name='Rectangle 17' width='209' height='18' transform='translate(13963 2695.921) rotate(180)' fill='%23faf2e3'/%3E%3Crect id='Rectangle_18' data-name='Rectangle 18' width='209' height='18' transform='translate(14067 2758.921) rotate(180)' fill='%23faf2e3'/%3E%3Cellipse id='Ellipse_11' data-name='Ellipse 11' cx='31.5' cy='32' rx='31.5' ry='32' transform='translate(13729 2527.921)' fill='%23faf2e3'/%3E%3Ccircle id='Ellipse_13' data-name='Ellipse 13' cx='31.5' cy='31.5' r='31.5' transform='translate(13830 2591.921)' fill='%23faf2e3'/%3E%3Cellipse id='Ellipse_15' data-name='Ellipse_15' cx='31.5' cy='32' rx='31.5' ry='32' transform='translate(13726 2654.921)' fill='%23faf2e3'/%3E%3Ccircle id='Ellipse_18' data-name='Ellipse_18' cx='31.5' cy='31.5' r='31.5' transform='translate(13830 2718.921)' fill='%23faf2e3'/%3E%3Ccircle id='Ellipse_12' data-name='Ellipse_12' cx='32' cy='32' r='32' transform='translate(13930 2527.921)' fill='%23faf2e3'/%3E%3Ccircle id='Ellipse_14' data-name='Ellipse_14' cx='31.5' cy='31.5' r='31.5' transform='translate(14031 2591.921)' fill='%23faf2e3'/%3E%3Ccircle id='Ellipse_16' data-name='Ellipse_16' cx='32' cy='32' r='32' transform='translate(13927 2654.921)' fill='%23faf2e3'/%3E%3Ccircle id='Ellipse_17' data-name='Ellipse_17' cx='31.5' cy='31.5' r='31.5' transform='translate(14031 2718.921)' fill='%23faf2e3'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* Update responsive design */
@media (max-width: 768px) {
    .contact-info::before {
        display: none;  /* Hide on mobile */
    }
}

/* Optional: Hide navbar on scroll down, show on scroll up */
.navbar.nav-hidden {
    transform: translateY(-100%);
}

/* Update submit button styles */
.submit-button {
    background-color: var(--secondary-color);  /* Gold background */
    color: var(--white-color);  /* White text */
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-family: 'Sentient-Bold', serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #d4b87c;  /* Slightly lighter gold on hover */
}

/* Add toast notification styles */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background: white;
    color: var(--text-color);
    padding: 1rem;
    margin: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.toast.success {
    border-left: 4px solid #28a745;
}

.toast.error {
    border-left: 4px solid #dc3545;
}

.toast-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0 4px;
    font-size: 18px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Thank you page styles */
.thank-you-section {
    padding: 80px 0 100px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thank-you-logo {
    width: 200px;
    margin-bottom: 40px;
}

.thank-you-section h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Sentient-Bold', serif;
}

.thank-you-section p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.gold-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.gold-link:hover {
    color: #d4b87c;
}

/* Bonus boxes styles */
.bonus-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.bonus-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    padding: 20px;
}

.bonus-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Sentient-Bold', serif;
}

.bonus-box p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.bonus-box .cta-button {
    display: inline-block;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bonus-boxes {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .thank-you-section {
        padding: 60px 0;
    }
}

.thank-you-section {
    padding: 80px 0 100px;
}

.social-connect {
    margin-bottom: 3rem;
}

img.thank-you-logo {
    margin-bottom: 40px;
}

.thank-you-section p {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-section p a {
    color: var(--secondary-color);
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo a:hover {
    opacity: 0.9;
}

.success-icon {
    margin: 0 auto 2rem;
    max-width: 80px;
}

.success-icon img {
    width: 100%;
    height: auto;
}

/* Workshop Promo Section */
.workshop-promo {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}

.workshop-promo h2 {
    font-family: 'Sentient-Bold', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.workshop-promo p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.alt-white {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    display: inline-flex;
}

.cta-button.alt-white:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* Update spacing for workshops section */
.workshops {
    padding-top: 0;
}