/**
 * Single Camp Page Styles
 */

/* Main wrapper */
.ccs-single-camp-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Meta */
.ccs-camp-header-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #d0992e;
}

.ccs-organizer-badge {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.ccs-location-info {
    font-size: 16px;
    color: #666;
}

/* Gallery Section */
.ccs-camp-gallery {
    margin: 40px 0;
}

.ccs-camp-gallery h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d0992e;
}

.ccs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ccs-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ccs-gallery-item:hover {
    transform: scale(1.05);
}

.ccs-gallery-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Full Description */
.ccs-camp-full-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 30px 0;
}

.ccs-camp-full-description p {
    margin-bottom: 15px;
}

/* Sessions Section */
.ccs-camp-sessions-section {
    margin: 40px 0;
}

.ccs-camp-sessions-section h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d0992e;
}

.ccs-session-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ccs-session-card h4 {
    color: #d0992e;
    font-size: 20px;
    margin-bottom: 15px;
}

.ccs-session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.ccs-session-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ccs-session-item:last-child {
    border-bottom: none;
}

.ccs-price {
    color: #d0992e;
    font-size: 18px;
    font-weight: 600;
}

/* Extra Notes */
.ccs-extra-notes {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

.ccs-extra-notes h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 15px;
}

.ccs-notes-content {
    color: #666;
    line-height: 1.7;
}

/* Registration Section */
.ccs-registration-section {
    background: #1a1a1a;
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border: 2px solid #d0992e;
}

.ccs-registration-section h3 {
    color: #d0992e;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.ccs-registration-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ccs-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ccs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ccs-btn-pdf {
    background: #333;
    color: white;
    border: 1px solid #666;
}

.ccs-btn-pdf:hover {
    background: #555;
    border-color: #d0992e;
}

.ccs-btn-register {
    background: #d0992e;
    color: #1a1a1a;
    font-weight: 700;
    border: 1px solid #d0992e;
}

.ccs-btn-register:hover {
    background: #e6a833;
    color: #1a1a1a;
}

.ccs-btn-website {
    background: transparent;
    color: #d0992e;
    border: 1px solid #d0992e;
}

.ccs-btn-website:hover {
    background: #d0992e;
    color: #1a1a1a;
}

/* Contact Section */
.ccs-contact-section {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
}

.ccs-contact-section h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 20px;
}

.ccs-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ccs-contact-item {
    font-size: 16px;
    color: #555;
}

.ccs-contact-item a {
    color: #d0992e;
    text-decoration: none;
}

.ccs-contact-item a:hover {
    text-decoration: underline;
}

/* Navigation */
.ccs-navigation {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.ccs-back-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.ccs-back-link:hover {
    color: #d0992e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ccs-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .ccs-session-grid {
        grid-template-columns: 1fr;
    }
    
    .ccs-registration-buttons {
        flex-direction: column;
    }
    
    .ccs-btn {
        width: 100%;
        text-align: center;
    }
    
    .ccs-contact-grid {
        grid-template-columns: 1fr;
    }
}