/*
Theme Name: ACPD 2025
Author: Larry Sharpe
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0
*/
:root{
    --branding-color-1: #124334;
    --branding-color-2: #446c04;
    --branding-color-3: #6f7e57;
    --branding-color-4: #a24f54;
    --branding-color-5: #fdffe0;
    --branding-color-6: #a2926f;
    --input-bg: #ffffff; /* Light background for inputs */
    --input-border: var(--branding-color-1); /* Primary branding color for border */
    --input-text: var(--branding-color-1); /* Text color */
    --input-focus-border: var(--branding-color-2); /* Brighter green for focus */
    --input-focus-shadow: rgba(18, 67, 52, 0.4); /* Soft green glow */
    --input-disabled-bg: #e6f1eb; /* Muted green */
    --input-disabled-text: #b0c3b0; /* Muted text */
    --placeholder-color: #9b9b9b; /* Subtle gray placeholder */
}

html {
    scroll-behavior: smooth;
}

/* General Input Styles */
input, textarea, select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 2px solid var(--input-border);
    border-radius: 5px;
    font-size: 16px;
    color: var(--input-text);
    background-color: var(--input-bg);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Focus State */
input:focus, textarea:focus, select:focus {
    border-color: var(--input-focus-border);
    box-shadow: 0 0 5px var(--input-focus-shadow);
    outline: none;
}

/* Disabled State */
input:disabled, textarea:disabled, select:disabled {
    background-color: var(--input-disabled-bg);
    color: var(--input-disabled-text);
    border-color: var(--input-disabled-text);
    cursor: not-allowed;
}

/* Placeholder Styling */
input::placeholder, textarea::placeholder {
    color: var(--placeholder-color);
    opacity: 0.7;
}

/* Secondary Input Variant */
.secondary-input {
    border: 2px solid var(--branding-color-3); /* More neutral color */
    background-color: #ffffff; /* White for contrast */
}

.secondary-input:focus {
    border-color: var(--branding-color-2);
}

/* Checkbox & Radio Button */
input[type="checkbox"], input[type="radio"] {
    accent-color: var(--branding-color-1);
}

/* Submit Button */
input[type="submit"] {
    background-color: var(--branding-color-1);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background-color: var(--branding-color-2);
}

input[type="submit"]:active {
    background-color: var(--branding-color-3);
}

body {
    background: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;;
    margin: 0;
    padding: 0;
}

html {
    scroll-padding-top: 255px;
}

header {
    background: #ffffff;
    /*box-shadow: var(--branding-color-2) 0 0px 30px;*/
    color: var(--branding-color-1);
    font-weight: bold;
    padding: .5rem;
    position: sticky;
    text-align: center;
    top: 0;
    z-index: 2;
}

.site-logo {
    height: 90px;
}

.p-1 {
    padding: .25rem;
}

.p-2 {
    padding: .5rem;
}
.p-3 {
    padding: .75rem;
}

.p-4 {
    padding: 1rem;
}
.pt-1 {
    padding-top: .25rem;
}

.pt-2 {
    padding-top: .5rem;
}
.pt-3 {
    padding-top: .75rem;
}

.pt-4 {
    padding-top: 1rem;
}
.pb-1 {
    padding-bottom: .25rem;
}

.pb-2 {
    padding-bottom: .5rem;
}
.pb-3 {
    padding-bottom: .75rem;
}

.pb-4 {
    padding-bottom: 1rem;
}
.mr-1 {
    margin-right: .25rem;
}

.mb-1 {
    margin-bottom: .25rem;
}

.mb-2 {
    margin-bottom: .5rem;
}
.mb-3 {
    margin-bottom: .75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}


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

.text-size-xs {
    font-size: .7rem;
}

/*************** Call to Action Button Styles */
.cta-button {
    background-color: #124334; /* Main branding color */
    color: #fff; /* White text for contrast */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1d5f49; /* Brighter green for hover */
}

.cta-button:active {
    background-color: #2e6f5e; /* Even brighter green for active state */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button:disabled {
    background-color: #b8d1c1; /* Muted, lighter green for disabled state */
    color: #e0e0e0; /* Light gray text */
    cursor: not-allowed;
    box-shadow: none;
}

/* Secondary Button Styles */
.secondary-button {
    background-color: #f1f5f0; /* Light neutral background to contrast primary */
    color: #124334; /* Main branding color for text */
    border: 2px solid #124334; /* Border to match the branding color */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: #dfe6d7; /* Light grayish-green for hover */
    color: #1d5f49; /* Slightly brighter green for hover text */
}

.secondary-button:active {
    background-color: #ccd4c6; /* Darker grayish-green for active */
    color: #2e6f5e; /* Even brighter green for active text */
}

.secondary-button:disabled {
    background-color: #e6f1eb; /* Lightest muted green for disabled */
    color: #b0c3b0; /* Muted text color */
    cursor: not-allowed;
    border: 2px solid #b0c3b0; /* Muted border for disabled */
    box-shadow: none;
}
/* Primary Button-like Link Styles */
.primary-link {
    display: inline-block; /* Make it behave like a button */
    background-color: #124334; /* Main branding color */
    color: #fff; /* White text for contrast */
    padding: 10px 20px;
    border: 2px solid #124334; /* Border to match the branding color */
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.primary-link:hover {
    background-color: #1d5f49; /* Brighter green for hover */
}

.primary-link:active {
    background-color: #2e6f5e; /* Even brighter green for active state */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.primary-link:disabled {
    background-color: #8f9e8b; /* Muted green for disabled state */
    color: #e0e0e0; /* Light gray text */
    cursor: not-allowed;
    box-shadow: none;
}

/* Secondary Button-like Link Styles */
.secondary-link {
    display: inline-block; /* Make it behave like a button */
    background-color: #f1f5f0; /* Light neutral background to contrast primary */
    color: #124334; /* Main branding color for text */
    border: 2px solid #124334; /* Border to match the branding color */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
}

.secondary-link:hover {
    background-color: #dfe6d7; /* Light grayish-green for hover */
    color: #1d5f49; /* Slightly brighter green for hover text */
}

.secondary-link:active {
    background-color: #ccd4c6; /* Darker grayish-green for active */
    color: #2e6f5e; /* Even brighter green for active text */
}

.secondary-link:disabled {
    background-color: #e6f1eb; /* Lightest muted green for disabled */
    color: #b0c3b0; /* Muted text color */
    cursor: not-allowed;
    border: 2px solid #b0c3b0; /* Muted border for disabled */
    box-shadow: none;
}


/* Text States */

.text-color-danger {
    color: var(--branding-color-4);
}

.text-color-muted {
    color: #a1b2a1; /* Light muted green for muted text */
}

.text-color-info {
    color: #4a8fa2; /* Calm blue-gray for info */
}

.text-color-warning {
    color: #dba54f; /* Golden yellow for warning */
}

.text-color-primary {
    color: #124334; /* Main branding color for primary text */
}

.text-color-secondary {
    color: #9b9b9b; /* Soft gray for secondary text */
}

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    position: sticky;
    top: 222px;
    background: #fff;
    z-index: 100;
}

.headshot {
    max-width: none;
    width: 200px;
}

.page-section {
    padding: .5rem;
}

a {
    color: var(--branding-color-1);
    font-weight: bold;
    text-decoration: none;
}

.row {
    display: flex;
    gap: 1rem;
}

.col {
    flex: 1;
}

footer {
    padding: .5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    /* Your styles for desktops and larger screens */
    header {
        display: flex;
        align-items: center;
        text-align: left;
    }

    body {
        width: 70vw;
        margin: auto;
    }

    .main-nav {
        top: 132px;
    }
}

img {
    max-width: 100%;
}

.site-logo {
    flex: 1;
}

.error-message {
    color: red;
}

video {
    aspect-ratio: 16 / 9;
    max-width: 100%;
}

.hero-video-wrapper {
    background: #2c591d;
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-video-wrapper #background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    filter: brightness(0.6); /* Darken video for text contrast */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--branding-color-5); /* Optional: light text color */
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff; /* White or another brand color */
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Optional: Smooth fade-in for hero content */
.hero-content {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







.about-natasha {
    padding: 4rem 2rem;
    background-color: #f9f9f9; /* Light background for contrast */
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 1rem;
}

.headshot {
    width: 400px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        flex-wrap: wrap;
    }
    .about-natasha {
        padding: 0;
    }

    .headshot {
        width: 300px;
    }
}
