/*
Theme Name: Obrame
Theme URI: https://obrame.com
Author: Obrame Team
Author URI: https://obrame.com
Description: A custom WordPress theme for Obrame
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: obrame
Tags: custom, responsive, modern
*/
/* Custom Fonts */
@font-face {
    font-family: 'OpenSauceSans';
    src: url('assets/fonts/OpenSauceSans-Light.woff2') format('woff2'),
         url('assets/fonts/OpenSauceSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* CSS Custom Properties */
:root {
    --color-primary: #0073aa;
    --color-primary-hover: #005a87;
    --color-text: #2D2A2C;
    --color-text-body: #464145;
    --color-text-light: #666;
    --color-background: #fff;
    --color-offcanvas: #F8F3ED;
    --color-offcanvas-text: #464145;
    --font-primary: 'OpenSauceSans', 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-heading: 'Lora', serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-text-body);
    background-color: var(--color-background);
    font-weight: 300;
    letter-spacing: -0.27px;
}

/* Typography */
h1 {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 4.64rem;
    margin-bottom: 1rem;
}

/* Text Highlights */
.obrame-txt-highlight-pink {
    background-image: url('./assets/images/txt-highlight-pink.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.obrame-txt-highlight-green {
    background-image: url('./assets/images/txt-highlight-green.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.obrame-txt-highlight-yellow {
    background-image: url('./assets/images/txt-highlight-yellow.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

h2 {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 1rem;
}

h3 {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.36px;
    margin-bottom: 1rem;
}

p {
    color: var(--color-text-body);
    font-family: var(--font-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.27px;
    margin-bottom: 1rem;
}

a {
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.27px;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-primary);
}

a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.lead {
    font-family: var(--font-primary);
    font-size: 1.30rem;
    line-height: 150%;
}

/* Sections */
section {
    padding-top: 140px;
    padding-bottom: 140px;
}

/* Hero Section */
#obrame-landing-hero {
    background: #F8F3ED;
    min-height: 635px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    padding-top: 140px;
    padding-bottom: 140px;
}

/* Hide background image on screens smaller than 768px */
@media (max-width: 767px) {
    #obrame-landing-hero {
        background-image: none;
    }
}

/* Adjust background size on screens larger than 1200px */
@media (min-width: 1200px) {
    #obrame-landing-hero {
        background-size: 50%;
    }
}

/* Feature Section */
#obrame-landing-feature {
    padding-top: 60px;
    padding-bottom: 60px;
}

#obrame-landing-feature h2:hover {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

#obrame-landing-feature .card {
    border-radius: 24px;
    border: 1px solid #E6E6E6;
    padding: 32px;
    min-height: 375px;
}

#obrame-landing-feature .card-title {
    color: #2D2A2C;
    font-family: Lora;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.36px;
}

#obrame-landing-feature .card-text {
    color: #464145;
    font-family: OpenSauceSans;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.27px;
}

#obrame-landing-feature a {
    color: #2D2A2C;
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding-right: 30px;
}

#obrame-landing-feature a:hover {
    color: #211F21;
}

#obrame-landing-feature a::after {
    content: "";
    position: absolute;
    margin-left: 10px;
    margin-top: 5px;
    width: 20px;
    height: 20px;
    background-image: url('./assets/images/arrow-right.png');
    background-size: cover;
    background-repeat: no-repeat;
}

/* In Action Section */
#obrame-landing-inaction {
    background-color: #F5F5F5;
    padding-top: 60px;
    padding-bottom: 60px;
}

#obrame-landing-inaction ul {
    list-style: none;
    padding-left: 0;
}

#obrame-landing-inaction ul li {
    padding-left: 46px;
    padding-bottom: 24px;
    background-image: url('./assets/images/action-check.png');
    background-repeat: no-repeat;
    background-position: 0 10%;
    background-size: 32px;
    color: #2D2A2C;
    font-family: Lora;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.36px;
}

/* Steps Section */
#obrame-landing-steps {
    padding-top: 60px;
    padding-bottom: 60px;
}

.obrame-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #CCCCCC;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--Secondary-464145, #464145);
    text-align: center;
    font-family: Lora;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.42px;
    margin-bottom: 24px;
}

.obrame-circle-pink {
    background-color: #F6BBC1;
}

.obrame-circle-clay {
    background-color: #F8F3ED;
}

.obrame-circle-yellow {
    background-color: #FFD57E;
}

.obrame-circle-cyan {
    background-color: #AADCE0;
}

/* CTA Section */
#obrame-landing-cta {
    padding-top: 60px;
    padding-bottom: 60px;
}

#obrame-landing-cta p {
    font-size: 20px;
}

/* People Section */
#obrame-people {
    padding-top: 0;
    padding-bottom: 0;
}

#obrame-people .people-grid {
    gap: 140px;
}

#obrame-people h3 {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

#obrame-people em {
    color: var(--color-text-body);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-style: italic;
}

.obrame-social-link {
    color: var(--color-text-body);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.obrame-social-link:hover {
    color: #D3D3D3;
}

.obrame-social-link.linkedIn {
    color: #0096A2;
}

.obrame-social-link.x {
    color: #F2606A;
}

.obrame-social-link.insta {
    color: #FFA100;
}

.obrame-social-link svg {
    width: 24px;
    height: 24px;
}

/* Page Wrapper */
#page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header,
#top-nav {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
}

.navbar-brand img,
.custom-logo-link img,
.custom-logo {
    width: 184px;
    height: 40px;
    max-width: 100%;
}

.custom-logo-link {
    display: inline-block;
}

/* Navigation */
#obrame-navigation-top {
    display: flex;
    align-items: center;
}

#obrame-navigation-top .nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}

#obrame-navigation-top li {
    margin: 0;
}

#obrame-navigation-top .nav-link {
    padding-right: 40px;
    padding-left: 0;
}

#obrame-navigation-top a {
    font-family: var(--font-primary);
    color: var(--color-text-body);
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.24px;
    text-decoration: none;
    display: block;
}

#obrame-navigation-top a:hover,
#obrame-navigation-top a:focus {
    font-weight: bold;
    color: var(--color-text);
}

#obrame-navigation-top a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

#obrame-navigation-top .current-menu-item a::after,
#obrame-navigation-top .current_page_item a::after {
    content: "";
    display: block;
    background-image: url('assets/images/nav-underline.png');
    background-repeat: repeat-x;
    background-size: auto;
    width: auto;
    height: 10px;
}

/* Legacy Navigation Support */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: var(--color-text-body);
    text-decoration: none;
    font-weight: 300;
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
    letter-spacing: -0.24px;
    line-height: 150%;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: var(--color-primary);
    outline: none;
}

.main-navigation a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Obrame Buttons */
.btn-obrame-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-obrame-primary:hover,
.btn-obrame-primary:focus {
    background-color: var(--color-primary-hover);
    color: var(--color-background);
}

.btn-obrame-primary:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn-obrame-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

/* Offcanvas Navigation */
.offcanvas-body {
    background: var(--color-offcanvas);
}

.nav-offcanvas-obrame .nav-link {
    color: var(--color-offcanvas-text);
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 150%;
    text-decoration: none;
    display: block;
    padding: 0.75rem 1rem;
}

.nav-offcanvas-obrame .nav-link:hover,
.nav-offcanvas-obrame .nav-link:focus {
    color: var(--color-primary);
}

.nav-offcanvas-obrame .nav-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.nav-offcanvas-obrame .active::after {
    content: "";
    display: block;
    background-image: url('/assets/nav-underline.png');
    background-repeat: repeat-x;
    background-size: auto;
    width: auto;
    height: 10px;
}

.btn-obrame-secondary:hover,
.btn-obrame-secondary:focus {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.btn-obrame-secondary:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Content */
.site-content {
    padding: 40px 0;
    min-height: 400px;
}

.content-area {
    width: 70%;
    float: left;
}

.sidebar {
    width: 28%;
    float: right;
}

/* Posts */
.post {
    margin-bottom: 40px;
}

.entry-title {
    font-size: 2em;
    margin-bottom: 10px;
}

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

.entry-title a:hover,
.entry-title a:focus {
    color: var(--color-primary);
}

.entry-title a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.entry-meta {
    color: var(--color-text-light);
    font-size: 0.9em;
    margin-bottom: 15px;
}

.entry-content {
    margin-top: 0;
    padding: 0;
}

/* Footer */
footer {
    padding-top: 60px;
    padding-bottom: 0;
    margin-top: auto;
}

footer p {
    color: var(--color-text-body);
    font-family: var(--font-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

footer p strong {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.footer-nav {
    background: url('assets/images/wave-red.png') center 80% no-repeat;
    text-align: center;
}

.footer-nav .nav-link {
    font-family: var(--font-primary);
    color: var(--color-text-body);
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.24px;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 0;
}

.footer-nav .nav-link:hover,
.footer-nav .nav-link:focus {
    font-weight: bold;
    color: var(--color-text);
}

.footer-nav .nav-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.footer-nav .current-menu-item a::after,
.footer-nav .current_page_item a::after {
    content: "";
    display: block;
    background-image: url('assets/images/nav-underline.png');
    background-repeat: repeat-x;
    background-size: auto;
    width: auto;
    height: 10px;
}

.get-started-text {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.law-link {
    font-size: 0.75rem;
    color: var(--color-text);
    text-decoration: underline;
}

.law-link:hover,
.law-link:focus {
    color: var(--color-primary);
}

footer .custom-logo-link img,
footer .custom-logo {
    width: 185px;
    height: 40px;
}

footer .text-body-secondary {
    color: var(--color-text-light);
    transition: color 0.2s ease;
}

footer .text-body-secondary:hover,
footer .text-body-secondary:focus {
    color: var(--color-text);
}

/* Clearfix */
.clearfix::after,
.site-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */
.site-footer {
    background-color: var(--color-text);
    color: var(--color-background);
    padding: 20px 0;
    text-align: center;
    clear: both;
}

/* Responsive */
@media (max-width: 768px) {
    .content-area,
    .sidebar {
        width: 100%;
        float: none;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .site-container {
        padding: 0 15px;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.form-obrame-input {
    padding: 12px 15px;
    border-radius: 24px;
    background: #F5F5F5;

    color: #2D2A2C;
    font-family: "OpenSauceSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}


.btn-obrame-primary {
    display: flex;
    min-width: 140px;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: #0096A2;

    color: #FFF;
    /* Base text SB */
    font-family: "OpenSauceSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    border: none;
}

.btn-obrame-primary:hover {
    background: #00848F;
    color: #FFF;
    /* Base text SB */
    font-family: "OpenSauceSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    border: none;

}

.btn-obrame-primary:active {
    background: #0096A2 !important;
}

.btn-obrame-primary:focus {
    background: #0096A2 !important;
    color: #FFF !important;
}


.btn-obrame-secondary {
    display: flex;
    min-width: 140px;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: #D4EDEF;

    color: #0096A2;

    text-align: center;
    /* Base text SB */
    font-family: "OpenSauceSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;

}

.btn-obrame-secondary:hover {
    border-radius: 24px;
    background: #C4ECEF;
    color: #0096A2;
    border: none;
}

.btn-obrame-secondary:active {
    background: #C4ECEF !important;
}

.btn-obrame-secondary:focus {
    background: #D4EDEF !important;
    color: #0096A2 !important;
}