body {
    font-family: var(--font-montserrat);
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
    line-height: 1.6;
    font-size: 16px;
}

/* Headings */
h2, h3, h4, h5, h6 {
    font-family: var(--font-italiana);
    font-weight: 400;
    margin-bottom: var(--space-md);
    color: var(--color-dark-brown);
    text-transform: uppercase;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

/* Paragraphs */
p {
    margin-bottom: var(--space-md);
}

/* Links */
a {
    color: var(--color-primary);
    transition: color 0.3s ease;
    text-decoration: none;
}

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

#glass-link {
    color: var(--color-text-dark);
}

/* Rule Lines */

/* Editorial-style rule: two fading lines with a centered dot */
.rule {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rule-line {
    flex: 1;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.2;
}

.rule-accent {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    opacity: 0.4;
}

/* Buttons */

.button-glass-base {
    font-weight: 500;
    border-radius: 3px;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.button-gradient {
    position: absolute;
    background: linear-gradient( 
        35deg, 
        rgb(250, 209, 173) 0%, 
        rgb(176, 140, 118) 100% 
    );
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    border-radius: 10px;
}

.footer-content {
    font-family: var(--font-roboto);
    font-weight: 400;
}