/* ############################################################################################################################################################################ */
/* ############################################################################################################################################################################ */
/* Glyh Entertainment Public Website                                                                                                                                            */
/*  • Page:            	        LimeSurvey Module Stylesheet (limesurvey.css)                                                                                                 */
/*  • Description:              Styling for the Surveys Portal and individual embedded surveys. Matches Glyph dark/gold theme and global styles.                                */
/*  • Location:               	/modules/limesurvey/css/limesurvey.css                                                                                                          */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  • Version:                  v0.0.09 α                                                                                                                                       */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  • Project Start Date:       2026-04-07                                                                                                                                      */
/*  • Creation Date:            2026-05-18                                                                                                                                      */
/*  • Last updated:             2026-05-18 @ 2200 EDT                                                                                                                           */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  • Author:                   by Conner Rhoads                                                                                                                                */
/*  • Official Site:            www.glyphentertainment.com                                                                                                                      */
/* ############################################################################################################################################################################ */
/* CHANGE LOG:                                                                                                                                                                  */
/*  • 2026-05-18:               Major cleanup + reorganized sections. Added proper banner overlay with title over image.                                                     */
/* ############################################################################################################################################################################ */
/* ############################################################################################################################################################################ */

/* ============================================================================================================================================================================ */
/* [START] LIMESURVEY MODULE STYLESHEET                                                                                                                                         */
/* ============================================================================================================================================================================ */

:root 
{
    --glyph-bg-dark: #1a1a1a;
    --glyph-bg-card: #2a2a2a;
    --glyph-gold: #ffd700;
    --glyph-gold-hover: #ffeb3b;
    --glyph-text: #e0e0e0;
    --glyph-text-muted: #aaaaaa;
    --glyph-border: #333333;
}

/* ============================================================================================================================================================================ */
/* Portal / List View                                                                                                                                                           */
/* ============================================================================================================================================================================ */

.surveys-portal 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.surveys-portal .survey-header 
{
    text-align: center;
    margin-bottom: 50px;
}

.surveys-portal .survey-header h1 
{
    color: var(--glyph-gold);
    font-family: 'CelticMD', serif;
    font-size: 2.6rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.surveys-portal .survey-header p 
{
    color: var(--glyph-text-muted);
    font-size: 1.1rem;
}

/* Survey Cards */
.survey-list 
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.survey-card 
{
    background: var(--glyph-bg-card);
    border: 1px solid var(--glyph-border);
    border-radius: 12px;
    padding: 28px 26px;
    text-decoration: none;
    color: var(--glyph-text);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.survey-card:hover 
{
    transform: translateY(-6px);
    border-color: var(--glyph-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.survey-card h3 
{
    color: var(--glyph-gold);
    font-family: 'CelticMD', serif;
    margin-bottom: 14px;
    font-size: 1.45rem;
    line-height: 1.3;
}

.survey-card p 
{
    color: var(--glyph-text-muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* ============================================================================================================================================================================ */
/* Banner with Overlay (Title + Description over banner image)                                                                                                                 */
/* ============================================================================================================================================================================ */

.survey-banner 
{
    position: relative;
    max-width: 1220px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.banner-image 
{
    width: 100%;
    height: auto;
    display: block;
}

.banner-overlay 
{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 50px 35px;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
    text-align: center;
}

.banner-overlay .survey-main-title 
{
    font-family: 'CelticMD', serif;
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 
        0 0 12px rgba(255, 215, 0, 0.95),
        0 0 24px rgba(255, 200, 60, 0.7);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Gold bar under title (on banner) */
.banner-overlay .gold-bar 
{
    height: 3px;
    background: #ffd700;
    margin: 0 auto 16px;
    max-width: 380px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.banner-overlay .survey-description 
{
    color: #e0e0e0;
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ============================================================================================================================================================================ */
/* Navigation Bar (Top + Bottom)                                                                                                                                               */
/* ============================================================================================================================================================================ */

.release-top-banner 
{
    background: #1f1f1f;
    border: 2px solid #ffd700;
    border-radius: 9999px;
    padding: 10px 18px;
    margin: 0 auto 24px;
    max-width: 1220px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 0 8px #2a2118, 0 8px 25px rgba(0, 0, 0, 0.8);
}

.survey-nav .survey-nav-controls 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* Home Icon */
.survey-home-btn 
{
    display: flex;
    align-items: center;
    padding: 4px 8px;
}

.survey-home-btn img.nav-icon 
{
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* Dropdown */
.survey-question-select.question-select 
{
    min-width: 160px;
    background: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 0.92rem;
    cursor: pointer;
}

.survey-question-select.question-select:focus 
{
    outline: none;
    border-color: #ffd700;
}

/* Navigation Buttons */
.survey-arrows.survey-arrows 
{
    display: flex;
    gap: 6px;
}

.survey-arrows.survey-arrows button 
{
    background: #2a2a2a;
    color: #ffd700;
    border: 1px solid #444;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.survey-arrows.survey-arrows button:hover 
{
    background: #ffd700;
    color: #1a1a1a;
    border-color: #ffd700;
}

/* Bottom nav spacing */
.survey-nav-bottom 
{
    margin-top: 50px;
}

/* ============================================================================================================================================================================ */
/* General / Shared Styles                                                                                                                                                      */
/* ============================================================================================================================================================================ */

.survey-error 
{
    background: #3a2a2a;
    color: #ffaaaa;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 60px auto;
}

/* ============================================================================================================================================================================ */
/* QR Code (Top right of banner)                                                                                                                                            */
/* ============================================================================================================================================================================ */

.survey-qr-code 
{
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.65);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ffd700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.survey-qr-code img 
{
    width: 90px;
    height: 90px;
    display: block;
    border-radius: 4px;
}

/* ============================================================================================================================================================================ */
/* [END] LIMESURVEY MODULE STYLESHEET                                                                                                                                           */
/* ============================================================================================================================================================================ */