/*	------------------------------------------------------------------	*/
/* 	CSS for the User pages of A Daily Lens							*/
/*	Table of Contents:													*/
/*		Globals															*/
/*		Layout															*/
/*		Footer															*/
/*		Hero															*/
/*		Legal Pages														*/
/*		FAQ																*/
/*		Contact															*/
/*		Responsive														*/
/*																		*/
/*	Conventions:														*/
/* 		Classes     - kebab-case                                        */
/*      IDs         - camelCase                                         */
/*      Variables   - UPPER_CASE (PHP constants)                        */
/*                  --kebab-case (CSS custom properties)                */
/*	------------------------------------------------------------------	*/


/*	------------------------------------------------------------------	*/
/*	Globals																*/
/*	------------------------------------------------------------------	*/

:root {

    --color-background: #070608;
    --color-surface: #15141B;

    --color-purple: #5D2EA8;
    --color-violet: #8E63D8;

    --color-gold: #F59A16;
    --color-gold-light: #FFD04B;

    --color-cream: #F5DE9D;

    --color-text: #F6F1E8;
    --color-text-secondary: #B8AFA3;

    --color-border: #35254E;
	
	/* New (Dark Blue) A Daily Lens palette */

    --color-midnight-blue: #0D1726;
    --color-deep-blue: #183A5A;
    --color-slate-blue: #6F86A3;
    --color-blue-border: #263B55;

    --color-cream-gold: #D8BE72;
    --color-cream-gold-light: #F2D98C;

}


*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    min-height: 100%;
}


body {

    min-height: 100%;

    margin: 0;

    background: var(--color-background);

    color: var(--color-text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;

}


/*	------------------------------------------------------------------	*/
/*	Layout																*/
/*	------------------------------------------------------------------	*/

section {
    padding: 90px 0;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ------- */
/* HEADER: */
/* ------- */

.site-header {
    padding: 18px 0 4px;
}

.site-header .container {
    display: flex;
    align-items: center;
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;

    color: var(--color-cream);
    text-decoration: none;

    font-size: 1.1rem;
    font-weight: 600;

    transition: color 0.2s ease;
}

.home-link img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 7px;
}

.home-link:hover {
    color: var(--color-gold);
}


/*	------------------------------------------------------------------	*/
/*	Footer																*/
/*	------------------------------------------------------------------	*/

.footer-tagline {
    margin: 0;
    color: var(--color-cream);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}


.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;

    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-nav a {
    text-decoration: none;
    color: var(--color-text-secondary);

    padding-bottom: 2px;

    border-bottom: 2px solid transparent;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}


.footer-nav a:hover {
    color: var(--color-cream-gold);
    border-bottom-color: var(--color-cream-gold);
}


.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 1rem;

    text-align: center;
}


.footer-copyright {
    margin: 0;

    font-size: 0.70rem;
    color: #46556B;
    opacity: 1;
}


.site-footer hr {
    width: 70%;

    border: none;
    border-top: 1px solid #46556B;
    margin: -8px 0 5px;
}


/*	------------------------------------------------------------------	*/
/*	Hero																*/
/*	------------------------------------------------------------------	*/

.hero {
    display: flex;
    justify-content: center;

    padding: 0;
}


.hero-content {

    position: relative;

    width: 100%;
    max-width: 1100px;

    padding: 12px 24px 20px;

    text-align: center;

}


/* ---------------- */
/* Hero Top Content */
/* ---------------- */

.hero-heading {
    position: relative;
    z-index: 1;
}


.hero-title {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;

    color: var(--color-cream-gold);

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.65);

}


.trademark {
    font-size: 0.28em;
    vertical-align: super;
    margin-left: 0.12em;
}


.hero-tagline {

    margin: 0.35rem 0 1.5rem;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.4;

    color: var(--color-text);

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.80);

}


/* ---------------- */
/* Lens Open Space  */
/* ---------------- */

.hero-lens-space {
    width: 100%;
    max-width: 720px;

    margin: 18px auto 22px;
}

.hero-lens-space img {
    display: block;

    width: 100%;
    height: auto;
}

/* --------------- */
/* Hero Sneak Peek */
/* --------------- */

.sneak-peek-link {
    display: inline-block;
    margin-top: 16px;
    padding: 9px 18px;
    color: var(--color-cream-gold);
    border: 1px solid var(--color-cream-gold);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease,
                color 0.2s ease;
}

.sneak-peek-link:hover {
    background-color: var(--color-cream-gold);
    color: var(--color-midnight-blue);
}

/* ------------------ */
/* Hero Lower Content */
/* ------------------ */

.hero-lower {

    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

}


.hero-tagline-secondary {

    margin: 0 0 1.5rem;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    font-style: normal;

    color: var(--color-text);

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85);

}


/* ------------------ */
/* Hero Action Area   */
/* ------------------ */

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Construction Notice Styling */

.construction-status {

    display: inline-flex;
    align-items: center;

    gap: 0.5rem;

    background-color: rgba(13, 23, 38, 0.88);
	border: 1px solid var(--color-blue-border);

    color: var(--color-text-secondary);

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 0.9rem;
    font-weight: 500;

    margin-bottom: 1.25rem;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

}


/* Pulsing Status Dot Indicator Animation */

.status-dot {

    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    background-color: var(--color-cream-gold);

    border-radius: 50%;

    animation: pulse 2s infinite ease-in-out;

}


@keyframes pulse {

    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }

}


/* ---------------- */
/* App Store Badges */
/* ---------------- */

.app-badges {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 1.25rem;

    margin: 0;

}


.badge-link {

    display: inline-block;

    border-radius: 6px;

    overflow: hidden;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;

}


.app-store-btn {
    max-width: 135px;
}


/*
    Slightly downscales the Google Play button width to counteract
    its wider built-in asset layout padding box.
*/

.google-play-btn {
    max-width: 129px;
}


.badge-link svg {
    display: block;
    width: 100%;
    height: auto;
}


.badge-link:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}


.badge-link:active {
    transform: translateY(0);
}


/*	------------------------------------------------------------------	*/
/*	Legal Pages															*/
/*	------------------------------------------------------------------	*/

.legal-content {

    max-width: 750px;

    margin: 40px auto;

    padding: 0 24px;

    line-height: 1.6;

}


.legal-content h1 {

    font-size: 2.25rem;
    font-weight: 700;

    margin: 0 0 24px;

    color: var(--color-cream-gold);

}


.legal-content h2 {

    font-size: 1.5rem;
    font-weight: 600;

    margin: 40px 0 16px;

    color: var(--color-text);

    border-bottom: 1px solid var(--color-blue-border);

    padding-bottom: 8px;

}


.legal-content h3 {

    font-size: 1.25rem;
    font-weight: 600;

    margin: 24px 0 12px;

    color: var(--color-slate-blue);

}


.legal-content p {

    margin: 0 0 16px;

    color: var(--color-text-secondary);

}


.legal-content ul,
.legal-content ol {

    margin: 0 0 20px;

    padding-left: 24px;

    color: var(--color-text-secondary);

}


.legal-content li {
    margin-bottom: 8px;
}


.legal-content a {
    color: var(--color-cream);
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: rgba(245, 222, 157, 0.45);
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--color-cream-gold);
}


/*	------------------------------------------------------------------	*/
/*	FAQ																	*/
/*	------------------------------------------------------------------	*/

.faq-title {

    font-size: 2.5rem;

    color: var(--color-cream-gold);

    text-align: center;

    margin: 0 0 10px;

}


.faq-subtitle {

    text-align: center;

    color: var(--color-text-secondary);

    margin-bottom: 3rem;

    font-size: 1.1rem;

}


.faq-layout {

    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 3rem;

    align-items: start;

}


.faq-item {

    background-color: var(--color-midnight-blue);

    border: 1px solid var(--color-blue-border);

    border-radius: 8px;

    margin-bottom: 1rem;

    overflow: hidden;

    transition: border-color 0.3s ease;

}


.faq-item[open] {
    border-color: var(--color-slate-blue);
}


.faq-item summary {

    position: relative;

    padding: 18px 24px;

    font-size: 1.1rem;
    font-weight: 600;

    color: var(--color-text);

    cursor: pointer;

    list-style: none;

}


.faq-item summary::after {

    content: "+";

    position: absolute;
    right: 24px;

    color: var(--color-gold);

    font-size: 1.2rem;

    transition: transform 0.2s ease;

}


.faq-item[open] summary::after {

    content: "—";

    color: var(--color-cream-gold);

}


.faq-answer {

    padding: 16px 24px 24px;

    color: var(--color-text-secondary);

    border-top: 1px solid var(--color-blue-border);

}


.faq-answer p {
    margin: 0;
}


.faq-preview-box {

    background-color: var(--color-midnight-blue);
    border: 1px solid var(--color-blue-border);

    padding: 24px;

    border-radius: 12px;

    text-align: center;

}


.preview-heading {

    margin: 0 0 1.5rem;

    color: var(--color-slate-blue);

    text-transform: uppercase;

    letter-spacing: 0.1em;

    font-size: 0.9rem;

}


.preview-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.phone-mockup {

    display: inline-block;

    max-width: 240px;

    background: #000000;

    border: 8px solid #222;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);

}


.screenshot-img {

    display: block;

    width: 100%;
    height: auto;

    background-color: #111;

}


/*	------------------------------------------------------------------	*/
/*	Contact																*/
/*	------------------------------------------------------------------	*/

.contact-page {
    padding: 60px 0;
}


.contact-card {

    width: 100%;
    max-width: 550px;

    margin: 0 auto;

    padding: 40px 20px;

    background-color: var(--color-midnight-blue);
	border: 1px solid var(--color-blue-border);

    border-radius: 12px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

}


.contact-title {

    font-size: 2.25rem;

    color: var(--color-cream-gold);

    margin: 0 0 12px;

}


.contact-subtitle {

    color: var(--color-text-secondary);

    margin-bottom: 2rem;

    font-size: 1rem;
    line-height: 1.6;

}


.contact-instruction {

    color: var(--color-text);

    font-size: 1rem;

    margin-bottom: 1.5rem;

}


.email-support-btn {

    display: inline-block;

    max-width: 100%;

    background-color: var(--color-deep-blue);

    color: var(--color-text);

    text-decoration: none;

    font-weight: 600;
    font-size: 1.1rem;

    padding: 14px 32px;

    border: 1px solid transparent;
    border-radius: 8px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;

}


.email-support-btn:hover {

    background-color: var(--color-midnight-blue);
    border-color: var(--color-cream-gold);
    color: var(--color-cream-gold);
    transform: translateY(-2px);
}


.email-support-btn:active {
    transform: translateY(0);
}


/* --------------- */
/* Sneak Peek Page */
/* --------------- */

.sneak-peek-page {
    padding: 4px 0 48px;
}

.sneak-peek-title {
    margin: 0;
    text-align: center;
    color: var(--color-cream-gold);
    font-size: 2.5rem;
}

.sneak-peek-subtitle {
    margin: 18px 0 36px;
    text-align: center;
    color: var(--color-cream-gold-light);
    font-size: 1.1rem;
}

.sneak-peek-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
}

.sneak-peek-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px;
    background: var(--color-midnight-blue);
    border: 1px solid var(--color-blue-border);
    border-radius: 12px;
}

.sneak-peek-caption {
    margin-bottom: 18px;
    color: var(--color-cream-gold);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
}

.sneak-peek-image {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;
}

@media (max-width: 700px) {

    .sneak-peek-gallery {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

}



/*	------------------------------------------------------------------	*/
/*	Responsive															*/
/*	------------------------------------------------------------------	*/

@media (max-width: 768px) {

    section {
        padding: 60px 0;
    }


    .site-footer hr {
        width: 100%;
    }


    .hero {
        padding: 0;
    }


    .hero-content {
        padding: 24px 18px 28px;
    }


    .hero-title {
        font-size: clamp(2.4rem, 11vw, 3.4rem);
    }


    .hero-tagline {
        font-size: 1.1rem;
    }


    .hero-lens-space {
        max-width: 100%;
        margin: 16px auto 18px;
    }


    .hero-tagline-secondary {

        font-size: 1rem;

        margin: 0 0 1rem;

    }


    .construction-status {

        max-width: 100%;

        font-size: 0.78rem;

        padding: 7px 12px;
		
		margin-bottom: 0;

    }


    .faq-layout {

        grid-template-columns: 1fr;

        gap: 2rem;

    }


    .email-support-btn {

        padding: 12px 14px;

        font-size: 0.88rem;

    }

}


@media (max-width: 420px) {

    .hero {
        padding: 0;
    }


    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }


    .hero-lens-space {
        max-width: 100%;
        margin: 14px auto 16px;
    }


    .construction-status {

        line-height: 1.35;

        text-align: left;

    }


    .app-badges {
        gap: 0.75rem;
    }


    .footer-nav ul {

        flex-wrap: wrap;

        gap: 0.75rem 1.25rem;

    }

}

@media (max-width: 768px) {

    .preview-gallery {
        flex-direction: column;
        align-items: center;
    }

}
