/*
Theme Name: OINTMENT Conference
Theme URI: https://ointmentconference.org
Author: Nick Finzer
Author URI: https://yourwebsite.com
Description: A custom WordPress theme for the OINTMENT Conference - Orthodox Institute of Neptic Training for Mental and Noetic Therapy
Version: 1.0
Text Domain: ointment
*/

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

body {
    font-family: 'Georgia', serif;
    color: #4a4a4a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: rgba(101, 67, 33, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    position: relative;
    top: 5px;
    color: #f5e6d3;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #f5e6d3;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: #d4af37;
}

.nav-button {
    background: #d4af37;
    color: #654321;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
}

.nav-button:hover {
    background: #c19b2a;
    color: #654321;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #885216 0%, #885216 100%);
    color: #f5e6d3;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 60px;
    width: 100%;
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    font-weight: 300;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-style: normal;
}

.hero .tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .date {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #d4af37;
    font-weight: bold;
}

.hero .location {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #d4af37;
    color: #654321;
    font-weight: bold;
}

.btn-primary:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

.wpforms-submit {
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    background: #d4af37;
    color: #654321;
    font-weight: bold;
}

.wpforms-submit:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #f5e6d3;
    border: 2px solid #f5e6d3;
}

.btn-secondary:hover {
    background: rgba(245, 230, 211, 0.1);
}

/* Sections */
section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section.hero {
    max-width: none;
    padding: 150px 2rem 100px;
}

.hero > img {
    max-width: 80vw;
}

#about {
    background: #f6f2e9;
    max-width: none;
    padding: 80px 2rem;
}

#about > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #654321;
    font-weight: 300;
}

.about-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

.highlight-box {
    background: #f5e6d3;
    padding: 2rem;
    border-left: 4px solid #d4af37;
    margin: 2rem 0;
    border-radius: 4px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature h3 {
    color: #654321;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: #666;
}

/* Details Section */
.details {
    background: #f8f8f8;
}

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

.detail-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.detail-item.span-2 {
    grid-column: span 2;
}

.detail-item h3 {
    color: #654321;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.detail-item ul {
    list-style: none;
    padding-left: 0;
}

.detail-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item li:last-child {
    border-bottom: none;
}

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

.speakers-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

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

.speaker-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #d4af37;
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.venue-card {
    /* Remove previous full-width styling */
}

.venue-info {
    margin-bottom: 1rem;
}

.venue-map {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .detail-item.span-2 {
        grid-column: span 1;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #654321 0%, #8b6f47 100%);
    color: #f5e6d3;
    text-align: center;
    padding: 80px 2rem;
}

.cta h2 {
    color: #f5e6d3;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Notification Form */
.notification-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 3rem auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.notification-form h3 {
    color: #654321;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #654321;
    font-weight: bold;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
}

/* Footer */
footer {
    background: #2a2a2a;
    color: #f5e6d3;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #d4af37;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #f5e6d3;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    nav .logo {
        margin: 0 auto;
    }

    nav .logo > img {
        #min-width: 90vw;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero .date {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 60px 1rem;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }
}
