:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C49A6C;
    --dark-gold: #A37B50;
    --darker-gold: #705827;
    --dark-bg: #1A1A1A;
    --light-cream: #FDF5E6;
    --light-gold: #E8D8A2;
    --rich-gold: #BF9B30;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-cream);
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* Default Element Styles */
p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark-gold);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--darker-gold);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--darker-gold);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--darker-gold);
    margin-bottom: 0.5rem;
}

/* Text Classes */
.text-light {
    color: var(--darker-gold);
}

.text-dark {
    color: var(--light-cream);
}

/* Heading Classes for h2 */
.heading-light {
    color: var(--darker-gold);
}

.heading-dark {
    color: var(--light-cream);
}

/* Subheading Classes for h3 */
h3.subheading-light {
    color: var(--darker-gold);
    opacity: 0.8;
}

h3.subheading-dark {
    color: var(--light-cream);
    opacity: 0.8;
    font-weight: 200;
}

/* Button Styles */
.btn-light {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--darker-gold);
    background-color: var(--light-cream);
    border: 1px solid var(--primary-gold);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    cursor: pointer;
}

.btn-dark {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--light-cream);
    background-color: var(--darker-gold);
    border: 1px solid var(--light-gold);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: var(--light-gold);
    color: var(--dark-bg);
    cursor: pointer;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    p {
        font-size: 0.875rem;
    }

    .btn-light,
    .btn-dark {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.8125rem;
    }

    .btn-light,
    .btn-dark {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
}