/*
Theme Name: Link Foundation
Description: Custom theme for Link Foundation AOD website with full homepage sections, customizer options, and contact form
Version: 1.0
Author: Link Foundation
Text Domain: linkfoundation
*/

/* Theme styles */
.bg-nav-bg { 
    background-color: #F8F0EA !important; 
}

.text-border-dark { 
    color: #333333; 
}

.border-border-dark { 
    border-color: #333333; 
}

/* Custom colors for Tailwind */
:root {
    --color-nav-bg: #F8F0EA;
    --color-border-dark: #333333;
    --color-primary-orange: #F0A763;
    --color-primary-green: #9FBBA1;
}

/* Ensure fonts load properly */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Form styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Form success message */
.form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Ensure WordPress admin bar doesn't interfere */
.admin-bar {
    margin-top: 32px;
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* WordPress default content styling */
.entry-content {
    line-height: 1.6;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

/* Ensure Tailwind utilities work */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* Custom button styles */
.btn-primary {
    background-color: #F0A763;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #E89650;
}

.btn-secondary {
    background-color: #9FBBA1;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8AA891;
}