@import "price-cards.css";

@font-face {
    font-family: 'Alice';
    src: url('../fonts/Alice/Alice-Regular.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/Cinzel/Cinzel-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 900;
    font-display: swap;
}

:root,
:root[data-theme="light"] {
    --pico-font-family-serif: "Cinzel", serif;
    --pico-font-family-body: "Alice", serif;
    --pico-primary: #8b5e83;
    --pico-primary-hover: #6d4a67;
    --pico-primary-underline: rgba(139, 94, 131, 0.5);
    --pico-color: #3d3431;
    --pico-h1-color: #2a2422;
    --pico-muted-color: #7a6e6a;
    --body-tint: #fff5f2;
    --accent-tint: #f8ece8;
}

html { height: 100%; }

body {
    font-family: var(--pico-font-family-body);
    background: 
        linear-gradient(rgba(255, 245, 242, 0.92), rgba(255, 245, 242, 0.92)),
        url("../images/background/watercolor1024.webp");
    background-repeat: repeat;
    background-size: 1024px 1024px;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--pico-color);
}

main.container { flex: 1; }

.site-header, .site-footer {
    width: 100%;
    background-color: var(--accent-tint);
    background-image: url("../images/background/watercolor-texture.webp");
    background-blend-mode: multiply;
    background-size: 600px 600px;
}

.site-header { border-bottom: 1px solid rgba(139, 94, 131, 0.1); }
.site-footer { border-top: 1px solid rgba(139, 94, 131, 0.1); padding: 3rem 0; margin-top: 5rem; }

nav.nav-wrapper strong {
    font-family: var(--pico-font-family-serif);
    letter-spacing: 0.1rem;
    color: var(--pico-primary);
}

nav.nav-wrapper a:not([role="button"]) {
    color: var(--pico-primary) !important;
    font-family: var(--pico-font-family-serif);
    font-size: 0.9rem;
    font-weight: 600;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, var(--pico-primary), transparent);
    opacity: 0.3;
    margin: 3rem 0;
}

button, [role="button"] {
    border-radius: 4px !important;
    background-color: var(--pico-primary) !important;
    border: none !important;
    color: #fff !important;
}

button:hover, [role="button"]:hover {
    background-color: var(--pico-primary-hover) !important;
}

article.testimonial {
    background: rgba(255, 255, 255, 0.6) !important;
    border-radius: 0 !important;
    border: none !important;
    border-left: 4px solid var(--pico-primary) !important;
    padding: 2.5rem;
    box-shadow: 10px 10px 0px rgba(139, 94, 131, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

article.testimonial footer {
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--pico-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto !important;
    padding-top: 1rem;
}

section {
    padding: 2rem 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.step-header h3 { margin-bottom: 0 !important; }
.step-header i { font-size: 1.5rem; color: var(--pico-primary); }

.img-left { float: left; margin: 0.5rem 2rem 1rem 0; max-width: 40%; height: auto; }
.img-right { float: right; margin: 0.5rem 0 1rem 2rem; max-width: 40%; height: auto; }
.rounded-img { border-radius: 4px; }

section::after { content: ""; display: table; clear: both; }

.centered-content { text-align: center; margin-bottom: 3rem; }
.max-width-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.icon-accent { color: var(--pico-primary); font-size: 2rem; }

h1, h2 { letter-spacing: -0.02em; line-height: 1.1; }
p { line-height: 1.7; }