/*
Theme Name: The Girl That Lost Herself
Author: Beata
Version: 1.0
*/

/*--------------------------------------*/
/* GLOBAL DARK THEME */
/*--------------------------------------*/

body {
    background-color: #0d0f10;
    /* deep charcoal */
    color: #e6e6e6;
    /* soft light grey */
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --accent: #009f9f;
    /* turquoise */
    --accent-dark: #006b6b;
}

/* Subtle vignette for atmospheric "lost traveller" vibe */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/*--------------------------------------*/
/* TYPOGRAPHY */
/*--------------------------------------*/

h1,
h2,
h3 {
    letter-spacing: 0.5px;
    color: #e6e6e6;
}

a {
    color: var(--accent);
    transition: 0.3s ease;
}

a:hover {
    opacity: 0.85;
}

/*--------------------------------------*/
/* INDEX (HOME) PAGE */
/*--------------------------------------*/

/* HERO IMAGE WITH DARK GRADIENT OVERLAY */
.home-hero {
    text-align: center;
    padding: 160px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Replace this URL with your own image once uploaded */
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.65),
                rgba(0, 0, 0, 0.65)),
            url('http://thegirlthatlostherself.local/wp-content/uploads/2026/08/IMG_4107-scaled.jpeg');
    }

.home-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.home-tagline {
    font-size: 22px;
    color: #cfcfcf;
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.85;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.home-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent);
    color: #0d0f10;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.home-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

/*--------------------------------------*/
/* BLOG PAGE */
/*--------------------------------------*/

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-title {
    text-align: center;
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 40px;
}

.blog-post {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #1f2224;
}

.post-title a {
    text-decoration: none;
    color: #e6e6e6;
    font-size: 28px;
    transition: 0.3s ease;
}

.post-title a:hover {
    color: var(--accent);
}

.post-meta {
    font-size: 14px;
    color: #8a8a8a;
    margin-top: 8px;
}

.post-excerpt {
    margin-top: 16px;
    color: #cfcfcf;
    line-height: 1.6;
}

/*--------------------------------------*/
/* Single Post */
/*--------------------------------------*/

.post-content {
    margin-top: 20px;
    line-height: 1.7;
    color: #cfcfcf;
}

.post-title {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 10px;
}

.post-meta {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 20px;
}

/*--------------------------------------*/
/* Jetpack Subscriber Form */
/*--------------------------------------*/

.jetpack-subscribe-form input[type="email"] {
    background-color: #111315;
    border: 1px solid #1f2224;
    color: #e6e6e6;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
}

.jetpack-subscribe-form input[type="submit"] {
    background-color: var(--accent);
    color: #0d0f10;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.jetpack-subscribe-form input[type="submit"]:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}