/* ==========================================================================
   1. ORGANIC THEME VARIABLES & SYSTEM RESET
   ========================================================================== */
:root {
    /* The Magical Forest Color Palette */
    --canopy-dark:   #0d110d; /* Dark slate-forest green background to make art pop */
    --moss-floor:    #161e16; /* Card background mimicking her black lacquer display trays */
    --deep-moss:     #233821; /* Rich forest accent */
    --fae-blush:     #fbcce3; /* Soft pastel pink matching her hair and table linens */
    --dewdrop-gold:  #ebd79a; /* Antique brass/gold for filigree lines and borders */
    --parchment:     #faf7f2; /* Soft ivory text color for high contrast readability */
    
    /* Premium Font Configurations */
    --font-header:   'Cinzel Decorative', 'Cinzel', serif;
    --font-body:     'Cormorant Garamond', 'Garamond', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--canopy-dark);
    color: var(--parchment);
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.6;
    overflow-x: hidden;

    /* THE MOORING BASE ENGINE: Forces footer to stay anchored to structural document bounds */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ==========================================================================
   2. STICKY NAV & ETHEREAL HERO LAYOUT
   ========================================================================== */
.fairy-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background-color: rgba(13, 17, 13, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(235, 215, 154, 0.15);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    font-family: var(--font-header);
    color: var(--fae-blush);
    text-decoration: none;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--parchment);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .active-link {
    color: var(--dewdrop-gold) !important;
}

/* Hero Section featuring the hand-drawn heart frame outline */
.enchanted-hero {
    padding: 160px 20px 80px;
    text-align: center;
    background: radial-gradient(circle at center, #1b241b 0%, var(--canopy-dark) 70%);
}

.hero-logo-frame {
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    border: 2px dashed var(--dewdrop-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Background image asset frame holding Photo 79 */
.heart-logo-cameo {
    width: 100%;
    height: 100%;
    background-image: url('images/mayed-with-love-logo.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.enchanted-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--parchment);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(251, 204, 227, 0.2);
}

.enchanted-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    font-style: italic;
}

/* ==========================================================================
   3. VAULT TOOLBAR CONTROL PANELS
   ========================================================================== */
.vault-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px auto 40px;
    flex-wrap: wrap;
    max-width: 900px;
    padding: 0 20px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(235, 215, 154, 0.3);
    color: var(--parchment);
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: italic;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-btn:hover, .filter-btn.active-tag {
    background-color: var(--fae-blush);
    color: var(--canopy-dark);
    border-color: var(--fae-blush);
    font-weight: bold;
    box-shadow: 0 0 15px rgba(251, 204, 227, 0.4);
}

/* ==========================================================================
   4. APOTHECARY MERCHANDISING SHOWCASE GRID
   ========================================================================== */
.artifact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.artifact-card {
    background-color: var(--moss-floor);
    border: 1px solid rgba(235, 215, 154, 0.1);
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.artifact-card .image-frame {
    width: 100%;
    height: 300px;
    background-color: #080a08; /* Deep shadow cavity mimicking booth boards */
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(35, 56, 33, 0.5);
}

.artifact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05); /* Soft moody starting state */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

/* Highly interactive hover pop highlights clay scale textures and glitter wings */
.artifact-card:hover {
    border-color: var(--dewdrop-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(235, 215, 154, 0.15);
    transform: translateY(-5px);
}

.artifact-card:hover img {
    transform: scale(1.04);
    filter: brightness(1.05) contrast(1.15); /* Snaps vibrant iris pigments awake */
}

.artifact-meta h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--dewdrop-gold);
    font-style: italic;
    margin-bottom: 4px;
}

.artifact-meta p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
}

/* ==========================================================================
   5. RESPONSIVE NATURE MEDIAS
   ========================================================================== */
.fairy-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(235, 215, 154, 0.1);
    font-size: 0.9rem;
    
    /* THE MOORING ENGINE LOCK: Anchors permanently to the document floor */
    width: 100%;
    margin-top: auto; 
    flex-shrink: 0;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Adds perfect vertical breathing room between links and copyright */
}

.fairy-footer p {
    opacity: 0.6;
}

/* FOOTER SOCIAL LINK ROW MECHANICS */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social-links a {
    text-decoration: none;
    color: var(--dewdrop-gold); /* Starts as her elegant antique gold */
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-style: italic;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-divider {
    color: rgba(235, 215, 154, 0.2);
    font-size: 0.7rem;
    user-select: none;
}

/* Interactive hover glow shifts the link color to her signature fae blush pink */
.footer-social-links a:hover {
    color: var(--fae-blush);
    text-shadow: 0 0 10px rgba(251, 204, 227, 0.4);
}

.easter-egg {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--fae-blush);
    margin-top: 5px;
}

/* ==========================================================================
   MASTER MOBILE RESPONSIVE TUNING ENGINE (768px and Below)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Navbar Navigation Stack Fix */
    .nav-container {
        flex-direction: column;
        gap: 12px;
        padding: 10px;
    }

    /* 1. The List Container Grid Track */
    .nav-links {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 12px; /* Leaves gentle, proportional gaps between links */
        padding: 0;
        list-style: none;
        
        /* NEW: Allows links to drop elegantly if a phone screen is extremely narrow */
        flex-wrap: wrap; 
    }

    /* 2. NEW: The List Item Nodes (The structural fix!) */
    .nav-links li {
        /* THE SOLID LOCK: Forbids the list tags from ever stacking "THE" on top of the word */
        white-space: nowrap; 
        display: inline-block;
    }

    /* 3. The Anchor Text Links Sizing */
    .nav-links a {
        font-size: 0.75rem; /* Elegant, small-scale typography footprint for mobile viewports */
        letter-spacing: 0.5px;
        text-transform: uppercase;
        display: inline-block;
    }

    /* 2. Hero Spacing Clearance */
    .enchanted-hero {
        padding-top: 160px;
        padding-bottom: 40px;
    }

    /* 3. The Faerie Contract Mobile Reflow */
    .contract-layout-container {
        padding: 140px 10px 40px; /* Reduces container margins so it expands to the screen edge */
    }

    .parchment-scroll-box {
        padding: 25px 15px; /* DRASTICALLY slims padding so content has room to breathe */
        outline-offset: -5px; /* Pulls the decorative border closer to the edge */
        box-shadow: 10px 10px 0px rgba(0,0,0,0.5); /* Reduces heavy desktop shadows */
    }

    .scroll-heading {
        font-size: 2rem; /* Shrinks title text size so it stays on one line */
    }

    .scroll-intro {
        font-size: 1rem;
        padding: 0 5px;
    }

    /* 4. Form Field Width Locks */
    .form-row input, .form-row select, .form-row textarea {
        width: 100%; /* Forces input fields to expand safely across the inner scroll width */
        font-size: 1rem;
    }

    .tribute-directory {
        padding: 15px 10px;
    }

    .tribute-item {
        font-size: 1rem;
    }

    .tribute-dots {
        margin: 0 8px; /* Reducess horizontal menu dot gaps on thin viewports */
    }

    .seal-contract-btn {
        width: 100%; /* Spreads the button fully across the screen for easy thumb clicking */
    }
}


/* ==========================================================================
   THE FLOATING LIGHTBOX OVERLAY STYLES
   ========================================================================== */
.lightbox-overlay {
    display: none; /* Stays completely hidden by default until JS wakes it */
    position: fixed;
    inset: 0; /* Stretches the curtain completely across top, bottom, left, and right */
    background-color: rgba(13, 17, 13, 0.96); /* Dark matching moss shade curtain */
    z-index: 5000; /* Forces the box above your sticky navigation layers */
    justify-content: center;
    align-items: center;
    cursor: zoom-out; /* Gives users a visual indicator that clicking closes it */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border: 2px solid var(--dewdrop-gold);
    box-shadow: 0 0 30px rgba(235, 215, 154, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snaps open gracefully */
}

/* The structural Close Rivet button Cross */
.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: var(--fae-blush);
    font-size: 3rem;
    font-family: var(--font-header);
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: var(--dewdrop-gold);
}

/* Active states handling smooth canvas entry animations */
.lightbox-overlay.active-view {
    display: flex;
    opacity: 1;
}

.lightbox-overlay.active-view .lightbox-content {
    transform: scale(1);
}


/* ==========================================================================
   NAVBAR LOGO & ARCHIVE GALLERY UPGRADES
   ========================================================================== */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px; /* Leaves perfect breathing room between logo and text */
}

.nav-logo-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--dewdrop-gold);
    object-fit: cover;
    box-shadow: 0 0 8px rgba(235, 215, 154, 0.3);
}

/* Pinterest-style Masonry Multi-Photo Dumping Ground */
/* Gallery Container & Typography Framework */
.archive-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 20px 60px; /* Gives the fixed navbar perfect headroom clearance */
    flex: 1 0 auto;
}

/* Centers, expands, and adds a mystical glow to the main Gallery Title text */
.archive-gallery-container h2.gallery-heading {
    text-align: center;
    font-size: 3rem; /* Visually stands out as a premium title element */
    color: var(--parchment);
    font-family: var(--font-header);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(251, 204, 227, 0.25); /* Elegant soft fae-pink glow */
}


/* ==========================================================================
   THE UNBREAKABLE AUTO-REFULOW GRID ENGINE
   ========================================================================== */
.archive-masonry {
    display: flex;
    flex-wrap: wrap; /* Allows remaining cards to slide up and wrap into new rows */
    gap: 25px; /* Perfect uniform spacing between all boxes */
    width: 100%;
    justify-content: flex-start; /* Aligns rows neatly to the left */
}

/* FIXED-GRID WIDTH CALCULATION */
.archive-item {
    background-color: var(--moss-floor);
    border: 1px solid rgba(235, 215, 154, 0.1);
    padding: 12px;
    border-radius: 4px;
    cursor: zoom-in;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
    
    /* 🌟 THE RESORT MECHANIC: Forces exactly 5 equal columns per row on desktop, 
       no matter how many items are filtered out! */
    flex: 0 0 calc(20% - 20px); 
}

/* ==========================================================================
   GRID RESPONSIVE TUNING OVERRIDES
   ========================================================================== */
/* Tablet Screen Widths: Automatically shifts to 3 uniform boxes per row */
@media (max-width: 1200px) {
    .archive-item { flex: 0 0 calc(33.33% - 17px); }
}

/* Phone Screen Widths: Snaps to 1 full-width box per row for easy vertical scrolling */
@media (max-width: 768px) {
    .archive-item { flex: 0 0 100%; }
}

/* NEW: Locks every photo into a uniform square without stretching her art */
.archive-item img {
    width: 100%;
    height: 280px; /* Forces a uniform height for every photo box on the screen */
    object-fit: cover; /* Centers and cleanly clips the photo edges like a picture frame */
    display: block;
    border-radius: 2px;
}

.archive-item:hover {
    border-color: var(--fae-blush);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   5-COLUMN SPECIAL WORKBENCH OVERRIDES
   ========================================================================== */

/* ==========================================================================
   5-COLUMN SPECIAL WORKBENCH OVERRIDES
   ========================================================================== */
@media (max-width: 1200px) {
    .archive-masonry { flex-wrap: wrap; }
}

/* THE SPECIAL MIDDLE SECTION MODIFIER */
/* THE SPECIAL MIDDLE SECTION MODIFIER (SYMMETRY ALIGNED) */
.archive-item.special-artifact {
    background-color: #21161b; /* Soft, deep wine-pink tint matching Malayna's hair accent */
    box-shadow: 0 0 15px rgba(235, 215, 154, 0.25);
    position: relative;
    
    /* FIX: Draws the gold border INSIDE the card boundaries so it never breaks column sizing math */
    outline: 2px solid var(--dewdrop-gold);
    outline-offset: -6px; /* Insets the gold framing line like a professional gallery mat */
}

/* THE SPECIAL TEXT LABEL (FLOATING LAYER FIX) */
.archive-item.special-artifact::after {
    content: '✦ Special Exhibit ✦';
    position: absolute;
    
    /* Centers the text ribbon precisely at the top of the card block */
    top: 20px; 
    left: 50%;
    transform: translateX(-50%);
    
    /* Styling to look like an official museum display banner */
    background-color: rgba(33, 22, 27, 0.9); /* Matching wine-pink background */
    padding: 4px 12px;
    border: 1px solid var(--dewdrop-gold);
    border-radius: 12px;
    
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--dewdrop-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 5;
    pointer-events: none; /* Allows clicks to pass right through to the lightbox */
}


/* ==========================================================================
   DYNAMIC LIGHTBOX FLOATING BADGE STYLES
   ========================================================================== */
.lightbox-floating-badge {
    display: none; /* Stays invisible by default until the script calls it */
    position: absolute;
    top: 25px; /* Positions it prominently at the top center of the large photo image */
    left: 50%;
    transform: translateX(-50%);
    
    background-color: rgba(33, 22, 27, 0.95); /* Deep wine-pink matching theme background */
    border: 2px solid var(--dewdrop-gold);
    color: var(--dewdrop-gold);
    padding: 8px 24px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    
    font-family: var(--font-header);
    font-size: 0.9rem; /* Scaled up larger to look beautifully proportional on big screens */
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    z-index: 6000; /* Ensures it sits flat on top of the zoomed image canvas layer */
}

/* Custom class state marker handled by the script trigger */
.lightbox-floating-badge.show-badge {
    display: block;
}


/* ==========================================================================
   THE ARTISAN PROFILE BIOGRAPHY COMPONENT
   ========================================================================== */
.artisan-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 20px 80px;
    display: grid;
    /* Generates an elegant split: 45% photo, 55% reading text page */
    grid-template-columns: 45fr 55fr; 
    gap: 60px;
    align-items: start;
    flex: 1 0 auto;
}

/* SIDE A: PORTRAIT FRAME PHYSICS */
.artisan-portrait-frame {
    position: relative;
    border: 1px solid rgba(235, 215, 154, 0.2);
    padding: 15px;
    background-color: var(--moss-floor);
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.4);
}

.artisan-portrait-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover; /* Crops her fairy portrait cleanly like a tall canvas gallery frame */
    display: block;
    border: 1px solid rgba(235, 215, 154, 0.1);
}

/* SIDE B: BIOGRAPHY PARCHMENT OVERLAYS */
.artisan-bio-card {
    padding: 20px 0;
}

.bio-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--fae-blush);
    display: block;
    margin-bottom: 5px;
}

.bio-title {
    font-size: 3rem;
    color: var(--parchment);
    font-family: var(--font-header);
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(251, 204, 227, 0.2);
}

/* THE SCROLLING BIO ENGINE: Expanded to match square photo heights */
.bio-narrative-text {
    /* NEW: Expanded height block to give text more space before the scroll bar activates */
    max-height: 475px; 
    
    overflow-y: auto; 
    padding-right: 15px; 
    margin: 25px 0 35px 0;
}

.bio-narrative-text p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 20px;
    text-align: justify;
}

/* ==========================================================================
   CUSTOM WHIMSICAL SCROLLBAR STYLING
   ========================================================================== */
/* Styles the overall width of the scrollbar runway track */
.bio-narrative-text::-webkit-scrollbar {
    width: 4px;
}

/* Styles the background runway line */
.bio-narrative-text::-webkit-scrollbar-track {
    background: rgba(235, 215, 154, 0.05);
    border-radius: 2px;
}

/* Styles the actual draggable little brass indicator knob */
.bio-narrative-text::-webkit-scrollbar-thumb {
    background: var(--dewdrop-gold);
    border-radius: 2px;
    box-shadow: 0 0 5px var(--dewdrop-gold);
}

.bio-narrative-text strong {
    color: var(--dewdrop-gold);
    font-weight: normal;
}

/* LOWER MARKET COMPONENT BLOCK */
.bio-booth-highlight {
    margin-top: 45px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(235, 215, 154, 0.2);
    padding: 15px;
}

.highlight-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.highlight-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-caption {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dewdrop-gold);
    opacity: 0.7;
}

/* ==========================================================================
   ARTISAN MOBILE COLLAPSE OVERRIDES
   ========================================================================== */
@media (max-width: 900px) {
    .artisan-layout-container {
        grid-template-columns: 1fr; /* Snaps the split profile screen down into a single layout column */
        gap: 40px;
        padding-top: 140px;
    }

    .artisan-portrait-frame img {
        height: 450px; /* Shortens the image height slightly on tablets and phone edges */
    }

    .bio-title {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   THE FAERIE CONTRACT APOTHECARY FORM STYLES
   ========================================================================== */
.contract-layout-container {
    max-width: 800px; /* Kept focused and narrower to look like a tight scroll layout */
    margin: 0 auto;
    padding: 160px 20px 80px;
    flex: 1 0 auto;
}

.parchment-scroll-box {
    background-color: #1a1e1a; /* Matching deep moss floor tone */
    border: 1px solid rgba(235, 215, 154, 0.15);
    outline: 2px solid var(--dewdrop-gold); /* Double layer outline framing mimics dynamic scroll paper edge lines */
    outline-offset: -8px;
    padding: 45px;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.5);
    position: relative;
}

.scroll-crest {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: var(--dewdrop-gold);
    margin-bottom: 5px;
}

.scroll-heading {
    text-align: center;
    font-size: 2.8rem;
    color: var(--parchment);
    text-shadow: 0 0 15px rgba(251, 204, 227, 0.2);
    margin-bottom: 15px;
}

.scroll-intro {
    text-align: center;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 650px;
    margin: 0 auto 30px;
}

/* INPUT FORM COMPONENT ROWS */
.fae-form {
    margin-top: 30px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.form-row label {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--dewdrop-gold);
    font-style: italic;
}

.required-star {
    color: var(--fae-blush);
    font-weight: bold;
}

/* Custom text and select track boxes stylized to look dark, rustic, and industrial */
.form-row input, .form-row select, .form-row textarea {
    background-color: #0b0d0b; /* Cavity dark background layers */
    border: 1px solid rgba(235, 215, 154, 0.2);
    color: var(--parchment);
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

/* Web text area bounding physics lock */
.form-row textarea {
    min-height: 150px;
    max-height: 350px;
    resize: vertical; /* Our signature safe expansion rule! */
}

/* Visual highlighters when a user focuses a box field node */
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    border-color: var(--fae-blush);
    box-shadow: 0 0 10px rgba(251, 204, 227, 0.2);
}

/* THE SEILING ACTION BUTTON BUTTON SYSTEM */
.form-action {
    text-align: center;
    margin-top: 35px;
}

.seal-contract-btn {
    background: transparent;
    border: 2px solid var(--dewdrop-gold);
    color: var(--dewdrop-gold);
    padding: 14px 40px;
    font-family: var(--font-header);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(235, 215, 154, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.seal-contract-btn:hover {
    background-color: var(--fae-blush);
    border-color: var(--fae-blush);
    color: var(--canopy-dark);
    font-weight: bold;
    box-shadow: 0 0 25px rgba(251, 204, 227, 0.5);
    transform: translateY(-2px);
}

/* Form adaptive layout collapse for tablets and mobile screens */
@media (max-width: 600px) {
    .parchment-scroll-box {
        padding: 25px 20px;
    }
    .scroll-heading {
        font-size: 2.2rem;
    }
    .seal-contract-btn {
        width: 100%; /* Expands to be fully touch friendly on phones */
    }
}


/* ==========================================================================
   THE FAERIE CONTRACT PRICE DIRECTORY COMPONENT
   ========================================================================== */
.tribute-directory {
    background-color: rgba(11, 13, 11, 0.4);
    border: 1px solid rgba(235, 215, 154, 0.1);
    padding: 25px;
    margin: 30px 0 10px 0;
    border-radius: 4px;
}

.directory-title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--fae-blush);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tribute-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Beautiful menu-style dotted dot connector rows */
.tribute-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-body);
    font-size: 1.2rem;
}

.tribute-name {
    color: var(--parchment);
    font-weight: normal;
}

.tribute-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(235, 215, 154, 0.25);
    margin: 0 15px;
}

.tribute-price {
    color: var(--dewdrop-gold);
    font-family: var(--font-header);
    font-size: 1.05rem;
}

.tribute-note {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.5;
    margin-top: 20px;
}