/* Pleasant Ridge Camp - Main Stylesheet */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 1rem 0;
    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;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.nav-logo .motto {
    color: #bdc3c7;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

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

.nav-menu a {
    color: #f4f6f7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #f39c12;
    background-color: rgba(255,255,255,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #f4f6f7;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(52, 73, 94, 0.7));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-image-placeholder {
    background: #34495e;
    color: #f4f6f7;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    font-style: italic;
    border: 2px dashed #7f8c8d;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #34495e;
    color: white;
    border-color: #34495e;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
}

.btn-outline {
    background-color: transparent;
    color: #34495e;
    border-color: #34495e;
}

.btn-outline:hover {
    background-color: #34495e;
    color: white;
}

/* Next Camp Section */
.next-camp {
    background-color: #f4f6f7;
    padding: 4rem 0;
}

.camp-announcement {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.camp-announcement h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.camp-date {
    margin-bottom: 3rem;
}

.camp-date h3 {
    font-size: 2.5rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.camp-date p {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.camp-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.highlight h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.highlight p {
    color: #7f8c8d;
    margin: 0;
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-image-placeholder {
    background: #f4f6f7;
    color: #7f8c8d;
    padding: 3rem 2rem;
    border-radius: 8px;
    font-style: italic;
    border: 2px dashed #7f8c8d;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Facilities Preview */
.facilities-preview {
    padding: 4rem 0;
    background-color: #f4f6f7;
}

.facilities-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.facility-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-image-placeholder {
    background: #f4f6f7;
    color: #7f8c8d;
    padding: 2rem;
    font-style: italic;
    border: 2px dashed #7f8c8d;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.facility-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.facility-card p {
    padding: 0 1.5rem 1.5rem;
    color: #7f8c8d;
    margin: 0;
}

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

/* Contact Preview */
.contact-preview {
    padding: 4rem 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.address, .contact-details {
    margin-bottom: 2rem;
}

.address h3, .contact-details h4 {
    color: #34495e;
    margin-bottom: 0.5rem;
}

.address p, .contact-details p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.8;
}

.contact-image-placeholder {
    background: #f4f6f7;
    color: #7f8c8d;
    padding: 3rem 2rem;
    border-radius: 8px;
    font-style: italic;
    border: 2px dashed #7f8c8d;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3, .footer-section h4 {
    color: #f39c12;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #f4f6f7;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #f4f6f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #f4f6f7;
}

/* Page-specific Styles */

/* Page Headers */
.page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8));
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #f4f6f7;
}

.header-image-placeholder {
    background: #34495e;
    color: #f4f6f7;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 8px;
    font-style: italic;
    border: 2px dashed #7f8c8d;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Timeline Styles */
.timeline {
    padding: 4rem 0;
    background-color: #f4f6f7;
}

.timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-year {
    background: #34495e;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    margin-right: 2rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #7f8c8d;
    margin: 0;
}

/* Schedule Styles */
.schedule {
    padding: 4rem 0;
    background-color: white;
}

.schedule h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.schedule-day {
    background: #fafafa;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.day-header {
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.day-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.day-header p {
    color: #f4f6f7;
    margin: 0;
}

.schedule-events {
    padding: 1.5rem;
}

.event {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f4f6f7;
}

.event:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-time {
    background: #34495e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
    margin-right: 1.5rem;
    font-size: 0.9rem;
}

.event-details h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.event-details p {
    color: #7f8c8d;
    margin: 0;
}

/* Evangelist Feature */
.evangelist-feature {
    padding: 4rem 0;
    background-color: white;
}

.evangelist-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.evangelist-image-placeholder {
    background: #f4f6f7;
    color: #7f8c8d;
    padding: 3rem 2rem;
    border-radius: 8px;
    font-style: italic;
    border: 2px dashed #bdc3c7;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.evangelist-info h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Dining Schedule */
.dining-schedule {
    padding: 4rem 0;
    background-color: #f4f6f7;
}

.dining-schedule h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.dining-info {
    text-align: center;
    margin-bottom: 3rem;
}

.meal-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.meal-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.meal-time {
    background: #34495e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.meal-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.meal-price {
    color: #34495e;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Worship Services */
.worship-services {
    padding: 4rem 0;
    background-color: white;
}

.worship-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.worship-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.worship-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.worship-feature h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.worship-feature p {
    color: #7f8c8d;
    margin: 0;
}

.worship-image-placeholder {
    background: #f4f6f7;
    color: #7f8c8d;
    padding: 3rem 2rem;
    border-radius: 8px;
    font-style: italic;
    border: 2px dashed #7f8c8d;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Registration CTA */
.registration-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.registration-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.registration-cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

/* Navbar scroll effect */
.navbar.scrolled {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
} 