/*
Theme Name: SeeRayDigital
Theme URI: https://seeraydigital.com
Author: Christopher Ray
Description: Custom WordPress theme for SeeRayDigital consulting
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seeraydigital
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f8f9fa;
    font-size: 17px;
}

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

/* Header */
.site-header {
    background: #1e3a5f;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.site-title:hover {
    color: #5a9fd4;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.main-navigation a:hover {
    color: #5a9fd4;
}

.login-button {
    background: #5a9fd4;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.login-button:hover {
    background: #2c5f8d;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Homepage Specific */
.home-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.home-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.home-skyline {
    background: #e9ecef;
    border: 2px dashed #adb5bd;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    background: #1e3a5f;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #2c5f8d;
}

.btn-secondary {
    background: white;
    color: #1e3a5f;
    padding: 0.875rem 2rem;
    border: 2px solid #1e3a5f;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1e3a5f;
    color: white;
}

/* Main Content */
.site-main {
    background: white;
    padding: 3rem 0;
    min-height: 60vh;
}

.content-area {
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-family: 'Playfair Display', serif;
    color: #1e3a5f;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-family: 'Inter', sans-serif;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* Image Placeholders */
.image-placeholder {
    background: #e9ecef;
    border: 2px dashed #adb5bd;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 8px;
}

.image-placeholder p {
    color: #6c757d;
    font-style: italic;
}

/* About Page Three-Column Layout */
.about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-headshot {
    background: #e9ecef;
    border: 2px dashed #adb5bd;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-headshot p {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section {
    margin-bottom: 2rem;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.skills-list li {
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.skills-list li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #1e3a5f;
    font-weight: bold;
}

.contact-section {
    background: #f8f9fa;
    padding: 3rem;
    margin-top: 3rem;
    border-radius: 8px;
    border-top: 4px solid #1e3a5f;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e3a5f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a5f;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: #1e3a5f;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #2c5f8d;
}

/* Login/Member Area */
.login-form {
    max-width: 400px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.login-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Member Dashboard */
.member-dashboard {
    background: white;
    max-width: 800px;
    margin: 0 auto;
}

.member-dashboard h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 2rem;
}

.resume-versions {
    margin-top: 2rem;
}

.resume-card {
    border: 1px solid #e9ecef;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.resume-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resume-card .resume-content {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.download-button {
    display: inline-block;
    background: #1e3a5f;
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.download-button:hover {
    background: #2c5f8d;
}

/* Footer */
.site-footer {
    background: #1e3a5f;
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0.25rem 0;
    opacity: 0.9;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation {
        flex-direction: column;
        width: 100%;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .login-button {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .home-intro {
        grid-template-columns: 1fr;
    }
    
    .home-intro h2 {
        font-size: 1.8rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
