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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: #2c5f7c;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2c5f7c;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 15px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #2c5f7c;
}

.donate-btn {
    background: #e6a85c;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.donate-btn:hover {
    background: #d89845;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 35vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2395c5d6;stop-opacity:1" /><stop offset="100%" style="stop-color:%236b9cb8;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23grad)"/><g fill="rgba(255,255,255,0.1)"><circle cx="200" cy="200" r="100"/><circle cx="800" cy="150" r="80"/><circle cx="1000" cy="400" r="120"/><circle cx="300" cy="600" r="90"/></g></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 80px;
}

.hero-content {
    color: white;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.register-btn {
    background: #5a9bb3;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.register-btn:hover {
    background: #4a8aa0;
}

.accessibility-icon {
    position: absolute;
    top: 120px;
    right: 50px;
    background: #6b47d6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Camp Hero Section */
.camp-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 2rem 0 4rem 0;
    margin-top: 80px;
}

.camp-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.camp-hero-text {
    flex: 1;
}

.camp-hero-text h1 {
    font-family: HeaderFont;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.camp-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.camp-hero-button {
    flex-shrink: 0;
}

/* Volunteer Hero Section */
.volunteer-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.volunteer-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.volunteer-hero-text {
    flex: 1;
}

.volunteer-hero-text h1 {
    font-family: HeaderFont;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.volunteer-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.volunteer-hero-button {
    flex-shrink: 0;
}

.signup-btn {
    background: #5a9bb3;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.signup-btn:hover {
    background: #4a8aa0;
}

/* Rent Hero Section */
.rent-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.rent-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.rent-hero-text {
    flex: 1;
}

.rent-hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.rent-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.rent-hero-button {
    flex-shrink: 0;
}

.rent-btn {
    background: #5a9bb3;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.rent-btn:hover {
    background: #4a8aa0;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-content h1 {
    font-family: HeaderFont;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.about-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.blog-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.blog-hero-text {
    flex: 1;
}

.blog-hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.blog-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.blog-hero-button {
    flex-shrink: 0;
}

/* What To Bring Hero Section */
.what-to-bring-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.what-to-bring-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.what-to-bring-hero-text {
    flex: 1;
}

.what-to-bring-hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.what-to-bring-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.what-to-bring-hero-button {
    flex-shrink: 0;
}

.download-checklist-btn {
    background: #5a9bb3;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.download-checklist-btn:hover {
    background: #4a8aa0;
}

/* Photos Hero Section */
.photos-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.photos-hero-content {
    max-width: 800px;
}

.photos-hero-content h1 {
    font-family: HeaderFont;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.photos-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Retreat Lodge Hero Section */
.retreat-lodge-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.retreat-lodge-hero-content {
    max-width: 800px;
}

.retreat-lodge-hero-content h1 {
    font-family: HeaderFont;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 2px;
}

.retreat-lodge-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Rooms and Beds Section */
.rooms-beds {
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.rooms-beds h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.room-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.bed-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.bed-icon {
    font-size: 1.2rem;
}

/* Bathrooms Section */
.bathrooms {
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.bathrooms h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

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

.bathroom-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.bathroom-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.bathroom-icon {
    font-size: 1.2rem;
}

/* Spaces and Amenities Section */
.spaces-amenities {
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.spaces-amenities h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-size: 1rem;
}

.amenity-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* How to Rent Section */
.how-to-rent {
    padding: 4rem 0;
}

.how-to-rent h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.how-to-rent p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
}

.rent-button-container {
    text-align: center;
}

.rent-property-btn {
    background: #5a9bb3;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.rent-property-btn:hover {
    background: #4a8aa0;
}

/* Update facility button to be a link */
.facility-btn {
    background: transparent;
    border: 2px solid #5a9bb3;
    color: #5a9bb3;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.facility-btn:hover {
    background: #5a9bb3;
    color: white;
}

/* Packing Tips Section */
.packing-tips {
    padding: 4rem 0;
}

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

.packing-tips-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.packing-tips-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.packing-tips-list {
    list-style: none;
    padding-left: 0;
}

.packing-tips-list li {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.packing-tips-list li::before {
    content: '•';
    color: #5a9bb3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.packing-tips-image-placeholder {
    width: 100%;
    height: 400px;
    background: #c4c4c4;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packing-tips-icon {
    background: #e6a85c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* Packing Checklist Section */
.packing-checklist {
    padding: 4rem 0;
    background: #f8f9fa;
}

.packing-checklist h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.checklist-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.checklist-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid #5a9bb3;
    color: #5a9bb3;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #5a9bb3;
    color: white;
}

.checklist-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.checklist-category {
    margin-bottom: 3rem;
}

.checklist-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-image-placeholder {
    width: 80px;
    height: 80px;
    background: #c4c4c4;
    border-radius: 10px;
    flex-shrink: 0;
}

.category-header h3 {
    font-size: 1.8rem;
    color: #333;
}

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

.checklist-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #666;
    font-size: 1rem;
}

.checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #5a9bb3;
    border-radius: 3px;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox:checked {
    background: #5a9bb3;
    border-color: #5a9bb3;
}

.checkbox:checked::after {
    content: '✓';
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 4rem 0;
    position: relative;
}

.accessibility-icon-photos {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #6b47d6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
}

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

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

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

.photo-year-image-placeholder {
    width: 100%;
    height: 250px;
    background: #c4c4c4;
}

.photo-year-content {
    padding: 1.5rem;
    text-align: center;
}

.photo-year-content h2 {
    font-family: BodyFont;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.view-all-btn {
    background: transparent;
    border: 2px solid #5a9bb3;
    color: #5a9bb3;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #5a9bb3;
    color: white;
}

.photo-additional-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.photo-additional-placeholder {
    width: 100%;
    height: 150px;
    background: #c4c4c4;
    border-radius: 10px;
}

/* Blog Posts Grid Section */
.blog-posts-grid {
    padding: 4rem 0;
}

.blog-posts-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

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

.blog-post-image-placeholder {
    width: 100%;
    height: 200px;
    background: #c4c4c4;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.blog-post-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-post-btn {
    background: transparent;
    border: 2px solid #5a9bb3;
    color: #5a9bb3;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-post-btn:hover {
    background: #5a9bb3;
    color: white;
}

/* Camp Emmaus Section */
.camp-emmaus-section {
    padding: 4rem 0;
}

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

.camp-emmaus-text h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.camp-emmaus-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.camp-emmaus-image-placeholder {
    width: 100%;
    height: 400px;
    background: #c4c4c4;
    border-radius: 10px;
}

/* Church Section */
.church-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.church-image-placeholder {
    width: 100%;
    height: 400px;
    background: #c4c4c4;
    border-radius: 10px;
}

.church-text h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.church-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Main Facility Section */
.main-facility {
    padding: 4rem 0;
}

.main-facility-image-placeholder {
    width: 100%;
    height: 400px;
    background: #c4c4c4;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.main-facility-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
}

/* Facilities Grid Section */
.facilities-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.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 {
    width: 100%;
    height: 200px;
    background: #c4c4c4;
}

.facility-content {
    padding: 1.5rem;
}

.facility-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.facility-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.facility-btn {
    background: transparent;
    border: 2px solid #5a9bb3;
    color: #5a9bb3;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.facility-btn:hover {
    background: #5a9bb3;
    color: white;
}

/* Volunteer Opportunity Section */
.volunteer-opportunity {
    padding: 4rem 0;
}

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

.opportunity-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.opportunity-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.opportunity-image-placeholder {
    width: 100%;
    height: 400px;
    background: #c4c4c4;
    border-radius: 10px;
}

/* Schedule Section */
.schedule-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.schedule-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.schedule-placeholder {
    width: 100%;
    height: 400px;
    background: #c4c4c4;
    border-radius: 10px;
}

/* Camp Programs Section */
.camp-programs {
    padding: 4rem 0;
}

.camp-programs h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.program-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.program-item:last-child {
    margin-bottom: 0;
}

.program-item.survivor-camp {
    grid-template-columns: 1fr 1fr;
}

.program-image-placeholder {
    width: 100%;
    height: 300px;
    background: #c4c4c4;
    border-radius: 10px;
}

.program-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.program-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Latest News Section */
.latest-news {
    padding: 4rem 0;
    background: #f8f9fa;
}

.latest-news h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

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

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

.news-image-placeholder {
    width: 100%;
    height: 200px;
    background: #c4c4c4;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.news-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-btn {
    background: transparent;
    border: 2px solid #5a9bb3;
    color: #5a9bb3;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-btn:hover {
    background: #5a9bb3;
    color: white;
}

.view-blog-container {
    text-align: center;
}

.view-blog-btn {
    background: #5a9bb3;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.view-blog-btn:hover {
    background: #4a8aa0;
}

/* Our Mission Section */
.our-mission {
    padding: 4rem 0;
}

.our-mission h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.mission-image-placeholder {
    width: 100%;
    height: 300px;
    background: #c4c4c4;
    border-radius: 10px;
}

.mission-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.learn-more-btn {
    background: #5a9bb3;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.learn-more-btn:hover {
    background: #4a8aa0;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #5a9bb3, #6b9cb8);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        padding: 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .camp-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .camp-hero-text h1 {
        font-size: 2rem;
    }
    
    .volunteer-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .volunteer-hero-text h1 {
        font-size: 2rem;
    }
    
    .rent-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .rent-hero-text h1 {
        font-size: 2rem;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-hero-text h1 {
        font-size: 2rem;
    }
    
    .what-to-bring-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .what-to-bring-hero-text h1 {
        font-size: 2rem;
    }
    
    .photos-hero-content h1 {
        font-size: 2rem;
    }
    
    .retreat-lodge-hero-content h1 {
        font-size: 2rem;
    }
    
    
    /* Lodge Carousel Section */
    .lodge-carousel {
        padding: 4rem 0;
    }

    
    .carousel-container {
        position: relative;
        max-width: 80%;
        margin: 0 auto;
    }



    .carousel-image-placeholder {
        width: 80%;
        height: 100px;
        background: #c4c4c4;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .carousel-navigation {
        padding: 0;
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-btn {
        font-size: 1.5rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .bathrooms-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .packing-tips-content {
        grid-template-columns: 1fr;
    }
    
    .packing-tips-image-placeholder {
        height: 250px;
    }
    
    .checklist-columns {
        grid-template-columns: 1fr;
    }
    
    .checklist-tabs {
        flex-direction: column;
    }
    
    .photo-years-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-additional-row {
        grid-template-columns: 1fr;
    }
    
    .blog-posts-cards {
        grid-template-columns: 1fr;
    }
    
    .camp-emmaus-content {
        grid-template-columns: 1fr;
    }
    
    .camp-emmaus-image-placeholder {
        height: 250px;
    }
    
    .church-content {
        grid-template-columns: 1fr;
    }
    
    .church-image-placeholder {
        height: 250px;
    }
    
    .main-facility-image-placeholder {
        height: 250px;
    }
    
    .facilities-cards {
        grid-template-columns: 1fr;
    }
    
    .opportunity-content {
        grid-template-columns: 1fr;
    }
    
    .opportunity-image-placeholder {
        height: 250px;
    }
    
    .program-item {
        grid-template-columns: 1fr;
    }
    
    .program-item.survivor-camp {
        grid-template-columns: 1fr;
    }
    
    .program-item.survivor-camp .program-content {
        order: 1;
    }
    
    .program-item.survivor-camp .program-image-placeholder {
        order: 2;
    }
    
    .schedule-placeholder {
        height: 250px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .accessibility-icon {
        top: 100px;
        right: 20px;
    }
    
    .retreat-lodge-hero-content h1 {
        font-size: 2rem;
    }
    
    .our-staff-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .location-hero-content h1 {
        font-size: 2rem;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map {
        order: -1;
    }
    
    .location-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .carousel-image-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .camp-hero-text h1 {
        font-size: 1.5rem;
    }
    
    .volunteer-hero-text h1 {
        font-size: 1.5rem;
    }
    
    .rent-hero-text h1 {
        font-size: 1.5rem;
    }
    
    .about-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .blog-hero-text h1 {
        font-size: 1.5rem;
    }
    
    .what-to-bring-hero-text h1 {
        font-size: 1.5rem;
    }
    
    .photos-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .retreat-lodge-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .our-staff-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .contact-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .location-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .camp-emmaus-text h2 {
        font-size: 2rem;
    }
    
    .church-text h2 {
        font-size: 2rem;
    }
    
    .opportunity-text h2 {
        font-size: 2rem;
    }
    
    .program-content h3 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Our Staff Hero Section */
.our-staff-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.our-staff-hero-content {
    max-width: 800px;
}

.our-staff-hero-content h1 {
    font-family: HeaderFont;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 2px;
}

.our-staff-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.contact-hero-content {
    max-width: 800px;
}

.contact-hero-content h1 {
    font-family: HeaderFont;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 2px;
}

.contact-hero-content p {
    font-family: BodyFont;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Location Hero Section */
.location-hero {
    background: linear-gradient(135deg, #95c5d6, #6b9cb8);
    color: white;
    padding: 3rem 0 4rem 0;
    margin-top: 80px;
}

.location-hero-content {
    max-width: 800px;
}

.location-hero-content h1 {
    font-family: HeaderFont;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 2px;
}

.location-hero-content p {
    font-family: BodyFont;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Camp Manager Section */
.camp-manager {
    padding: 4rem 0;
}

.camp-manager h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

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

/* Board of Directors Section */
.board-directors {
    padding: 4rem 0;
    background: #f8f9fa;
}

.board-directors h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

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

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

/* Staff Card Styles */
.staff-image-placeholder {
    width: 100%;
    height: 200px;
    background: #c4c4c4;
}

.staff-content {
    padding: 1.5rem;
}

.staff-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.staff-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.staff-btn {
    background: transparent;
    border: 2px solid #5a9bb3;
    color: #5a9bb3;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.staff-btn:hover {
    background: #5a9bb3;
    color: white;
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #5a9bb3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: BodyFont;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.find-us-online {
    margin-top: 2rem;
}

.find-us-online h3 {
    font-family: BodyFont;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    background: #5a9bb3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-icon-link:hover {
    background: #4a8aa0;
}

.contact-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #c4c4c4;
    border-radius: 10px;
}

/* Camp Location Section */
.camp-location {
    padding: 4rem 0;
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-details h2 {
    font-family: BodyFont;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.camp-address {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.location-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.interactive-map {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-header {
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-address {
    color: #333;
    line-height: 1.4;
}

.directions-link {
    color: #5a9bb3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.directions-link:hover {
    color: #4a8aa0;
}

.map-container {
    position: relative;
}

.map-container .map-placeholder {
    width: 100%;
    height: 300px;
    background: #c4c4c4;
}

.view-larger-map {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    color: #5a9bb3;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.view-larger-map:hover {
    background: white;
}

@font-face {
    font-family: 'HeaderFont'; /* A name for your custom font */
    src: url(https://iwdcob.org/camp/emmaus/CabinSketch-Bold.ttf) format('truetype'); /* Path to TTF file */
}

@font-face {
    font-family: 'BodyFont';
    src: url(https://iwdcob.org/camp/emmaus/AmaticSC-Bold.ttf) format('truetype');
}

#calendar-background {
    background: url('img_schedule_bg.jpeg') no-repeat center center;
    background-size: cover; /* Adjust as needed */
    /* Set dimensions for the container */
    width: 100%;
    height: 510px;
}

/* Set the iframe background to transparent (if supported by the specific embed URL options) to let the parent background show through */
#calendar-background iframe {
    background-color: transparent !important;
}