/*
Theme Name: Sandra Scott Entry
Theme URI: https://example.com/
Author: Site Owner
Author URI: https://example.com/
Description: A custom WordPress theme: Sandra Scott Entry
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sandra-scott-entry
*/

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* =WordPress Admin Bar Offset
-------------------------------------------------------------- */
/* Only offset fixed/sticky positioned headers when admin bar is visible */
/* WordPress handles the main body offset automatically */
body.admin-bar header[style*="fixed"],
body.admin-bar header[style*="sticky"],
body.admin-bar .fixed,
body.admin-bar .sticky,
body.admin-bar [class*="fixed"],
body.admin-bar [class*="sticky"] {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar header[style*="fixed"],
    body.admin-bar header[style*="sticky"],
    body.admin-bar .fixed,
    body.admin-bar .sticky,
    body.admin-bar [class*="fixed"],
    body.admin-bar [class*="sticky"] {
        top: 46px !important;
    }
}

/* =Custom Theme Styles
-------------------------------------------------------------- */
/* External Stylesheets Referenced:
 * https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap
 * https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css
 */

body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }
        
        /* Custom Split Animation Styles */
        .split-section {
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        
        @media (min-width: 768px) {
            .split-container:hover .split-section {
                width: 45%;
            }
            .split-container:hover .split-section:hover {
                width: 55%;
            }
        }

        .btn-outline {
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(233, 30, 99, 0.3);
        }


