/* ############################################################################################################################################################################ */
/* ############################################################################################################################################################################ */
/* Skye Isle Terrier Sanctuary                                                                                                                                                  */
/*  • File:                      content.css                                                                                                                                    */
/*  • Description:               Core content styles for pages — cards, typography, icons, navigation, and layout                                                             */
/*  • Location:                  /css/content.css                                                                                                                               */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  • Version:                   v0.0.03 α                                                                                                                                      */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  • Project Start Date:        2026-06-19                                                                                                                                     */
/*  • Last updated:              2026-06-20 @ 00:35 EDT                                                                                                                         */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  • Author:                    by Conner Rhoads                                                                                                                               */
/*  • Official Site:             www.skyeisleterriersanctuary.com                                                                                                               */
/* ############################################################################################################################################################################ */
/* ############################################################################################################################################################################ */

@font-face 
{
    font-family: 'Enchanted Land';
    src: url('/fonts/enchantedland.otf') format('opentype');
}

/* ============================================= */
/* PAGE CONTENT CONTAINER                        */
/* ============================================= */
.page-content 
{
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
}

/* ============================================= */
/* IN-PAGE NAVIGATION                            */
/* ============================================= */
.inpage-nav 
{
    max-width: 1100px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.inpage-nav__inner 
{
    background-color: #FFF9C4;
    border: 2px solid #212121;
    border-radius: 10px;
    padding: 14px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.inpage-nav__label 
{
    font-weight: 600;
    color: #212121;
    margin-right: 10px;
}

.inpage-nav a 
{
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1rem;
}

.inpage-nav a:hover 
{
    color: #c9a227;
}

/* ============================================= */
/* CONTENT CARDS                                 */
/* ============================================= */
.content-card 
{
    background-color: #FFF9C4;
    border: 2px solid #212121;
    border-radius: 14px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.content-card__inner 
{
    padding: 40px 45px;
}

.content-card p 
{
    font-size: 1.1rem;
    line-height: 1.75;
    color: #444;
    max-width: 780px;
}

/* ============================================= */
/* SECTION HEADINGS                              */
/* ============================================= */
.section-heading 
{
    font-family: 'Enchanted Land', 'Cinzel', serif;
    font-size: 2.3rem;
    color: #E64A19;
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.6);
}

.section-heading::after 
{
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 65px;
    height: 3px;
    background: linear-gradient(to right, #c9a227, #d4af37);
}

/* ============================================= */
/* IMAGE + TEXT LAYOUT                           */
/* ============================================= */
.content-with-image 
{
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 10px;
}

.content-text 
{
    flex: 1;
}

.content-image 
{
    flex: 0 0 300px;
}

.content-image img 
{
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* ============================================= */
/* VALUES GRID                                   */
/* ============================================= */
.values-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.value-card 
{
    background-color: #D7CCC8;
    border: 2px solid #212121;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.value-card h3 
{
    font-family: 'Enchanted Land', 'Cinzel', serif;
    font-size: 1.3rem;
    color: #D32F2F;
    margin-bottom: 10px;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.6);
}

.value-card p 
{
    font-size: 1rem;
    line-height: 1.65;
    color: #212121;
    margin: 0;
}

/* ============================================= */
/* BACK TO TOP                                   */
/* ============================================= */
.back-to-top 
{
    margin-top: 30px;
    text-align: right;
}

.back-to-top a 
{
    font-size: 0.95rem;
    color: #5D4037;
    text-decoration: none;
}

.back-to-top a:hover 
{
    color: #c9a227;
}

/* ============================================= */
/* SECTION ICONS (inside headings)               */
/* ============================================= */
.sectionicon 
{
    width: 3rem;
    height: 3rem;
    vertical-align: middle;
    margin-right: 14px;
    display: inline-block;
    filter: 
        brightness(0) saturate(100%) invert(26%) sepia(58%) saturate(3050%) hue-rotate(4deg) brightness(93%) contrast(87%)
        drop-shadow(0 10px 40px rgba(0, 0, 0, 0.6));
}