/*
Theme Name: PocketRetainer
Theme URI: https://jays.me
Author: Jay King
Author URI: https://jays.me
Description: PocketRetainer Custom Theme Developed
*/

:root {
    --primary: #c9a961;
    --primary: #C9A961;
    --accent: #FFB3DB;  
    --light: #EFE8DD;
    --text: #9EB0C8;
    --text-accent: #6B9CED;
    --border: #324267;
    --border: rgba(255,255,255,0.1);
    --fz: 16px;

    --font: Poppins;
    --font-big: Instrument Serif;

    --header-background: transparent;
    --section-default-padding-top: 70px;
    --section-default-padding-right: 20px;
    --section-default-padding-bottom: 70px;
    --section-default-padding-left: 20px;   

    --padding-top: 20px;
    --padding-bottom: 20px;
}

body {
    padding: 0;
    margin: 0;
    background-color: #111;
    color: var(--text);
    font-family: var(--font);
    font-size: var(--fz);
	font-weight: 300;
    
    background-image: linear-gradient(45deg, #0b182a, #412c00);
    background-attachment: fixed;
    background-image: url("assets/img/neon.avif");
    background-size: cover;
    background-position: top left;
	background-size: 1000%;

    background-image: url("assets/img/dot.png");
    background-blend-mode: color-dodge;
}

* {
    line-height: 1;
}

a {
    text-decoration: none;
    color: var(--text);
}

.read {
    line-height: 1.5;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1190px;
    margin-inline: auto;
    padding-inline: 28px;
    box-sizing: border-box;
}

.container-medium {
    position: relative;
    max-width: 950px;
    margin-inline: auto;
    padding-inline: 28px;
    box-sizing: border-box;
}

.container-large {
    max-width: 1690px;
    margin-inline: auto;
    padding-inline: 28px;
    box-sizing: border-box;
}

[data-has-padding-top="yes"] {
    padding-top: 70px;

    @media screen and (max-width: 600px) {
        padding-top: 35px;
    }   
}

[data-has-padding-bottom="yes"] {
    padding-bottom: 70px;

    @media screen and (max-width: 600px) {
        padding-bottom: 35px;
    }      
}

.app-links {
    display: flex;
    gap: 20px;

    @media screen and (max-width: 600px) {
        display: grid;
        gap: 8px;
        width: 100%;
        justify-content: normal;
        text-align: left;    

        /* Android default: 1 column */
        grid-template-columns: 1fr;

        /* iPhone / iOS target: 2 columns */
        @supports (-webkit-touch-callout: none) {
            grid-template-columns: repeat(2, 1fr);
        }
    }  
    
    &.center {
        @media screen and (min-width: 980px) {
            justify-content: center;
            justify-items: center;
        }
    }
    
    a {
        display: flex;
        align-items: center;
        gap: 12px;
        background-color: #0B182A;
        background-color: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(5px);
        padding: 12px;
        border-radius: 12px;
        color: var(--light);

        span:first-child {
            font-size: 12px;
            text-transform: uppercase;
            display: block;
            color: var(--text-accent);
        }

        span:last-child {
            font-weight: 500;
            font-size: 16px;
            color: var(--light);
        }

        img {
            display: block;
            width: auto;
            height: 44px;
        }
        
        .text {
        	display: grid;
            gap: 4px;
        }
    }
}

.headline {
    position: relative;
    display: grid;
    align-content: baseline;
    gap: 24px;
    
    &.has-margin {
        margin-bottom: 40px;
    }
}

.sub,
.subline {
    border: 2px solid var(--primary);
    border-radius: 4px;
    padding: 12px 12px;
    text-transform: uppercase;
    width: fit-content;
    font-family: var(--font-big);
    font-weight: 700;
    color: #fff;
    font-size: 24px;
    text-box: cap alphabetic;
    transform: rotate(-4deg);

    &.center {
        margin-inline: auto;
    }

    &.white {
        background-color: #fff;
        border: none;
        color: #111;
    }

    @media only screen and (max-width: 980px) {
        font-size: 20px;
        padding: 8px;       
    } 
}

.sub {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #111;
}

.subtitle {
    color: var(--primary);
    text-transform: uppercase;

    &.center {
        text-align: center;
    }    
}

.title {
    position: relative;
    text-box: cap alphabetic;
    font-size: 64px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -1.5px;
    color: #EFE8DD;
    color: var(--light);
    font-family: var(--font-big);   

    &.primary {
        color: var(--primary);
    }

    &.center {
        text-align: center;
    }

    @media only screen and (max-width: 980px) {
        font-size: 46px;
    }
}

.description {
    font-size: var(--fz);
    line-height: 1.7;

    &.center {
        text-align: center;
    }   
    
    @media only screen and (max-width: 980px) {
        font-size: 18px !important;
    } 
}

.text {
    line-height: 1.5; 
    color: #6C819F;
}

.btn {
    position: relative;
    z-index: 2;
    background-color: var(--primary);
    font-size: 16px;
    border-radius: 250px;
    padding: 12px 20px;
    color: #07111F;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: var(--font-big);
    text-transform: uppercase;
    text-box: cap alphabetic;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;

    &:has(img) {
        padding-left: 16px;
    }

    span {
        --size: 6px;
        --text: #fff;
        width: 0px;
        height: 0px;
        display: block;
        border-top: var(--size) solid transparent;
        border-bottom: var(--size) solid transparent;
        border-left: calc(var(--size) + 3px) solid var(--text);
    }   
    
    &.large {
        width: 100%;
    }

    @media only screen and (max-width: 980px) {
        font-size: 22px;
    }
}





























#wordpress-page {
    padding-top: 300px;
    padding-bottom: 120px;

    h2,
    h3,
    b,
    strong {
        color: #fff;
    }
}

.buttons {
    display: flex;
    gap: 12px;

    @media only screen and (max-width: 980px) {
        display: grid;
    } 
}

[data-svg-position] {
    position: relative;
    height: fit-content;
    display: inline-block;

    svg {
        position: absolute;
        line-height: 0;        
    }

    &[data-svg-position="slide"] svg {
        bottom: 0;
        right: -100%;
    }

    &[data-svg-position="about"] svg {
        bottom: 0;
        left: 100%;
    }

    &[data-svg-position="services"] svg {
        bottom: 45%;
        left: 65%;
    }

    &[data-svg-position="portfolio"] svg {
        bottom: 0;
        left: 100%;
    }

    &[data-svg-position="top-right"] svg {
        bottom: 100%;
        right: 0;
    }



}











#blog-single {
    padding-top: 300px;
    padding-bottom: 120px;
    color: #666;

    @media only screen and (max-width: 980px) {
        padding-top: 120px;
        padding-bottom: 64px;
    } 

    .header {
        .title {
            @media only screen and (min-width: 980px) {
               font-size: 120px;
            } 
        }

        .description {
            border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
        }
    }

    .image img {
        border-radius: 32px;
    }

    h2,
    h3 {
        color: #111;
        font-size: 24px;
    }

    .article {
        line-height: 1.7;
    }

    .explore-more {
        display: grid;
        gap: 32px;
        border-top: 1px dashed rgba(0, 0, 0, 0.2);
        border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
        margin-block: 120px;
        padding-block: 120px;

        @media only screen and (max-width: 980px) {
            margin-block: 64px;
            padding-block: 64px;       
        } 

        .cats {
            display: flex;
            gap: 8px;

            @media only screen and (max-width: 980px) {
                display: grid;
                justify-content: start;          
            } 
        }

        .title {
            font-size: 26px;
        }
    }

    .read-next {
        display: grid;
        gap: 64px;

        .title {
            @media only screen and (min-width: 980px) {
                font-size: 80px; 
            } 
        }
    }
}