/* Guest Guide Page Styles */

.guide-page {
    padding-top: 80px;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 3rem;
}

.guide-header {
    text-align: center;
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.guide-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.5rem;
}

.guide-subtitle {
    font-size: 1.1rem;
    color: #4a7c59;
    font-weight: 500;
    margin-bottom: 1rem;
}

.guide-welcome {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Accordion Sections */
.guide-sections {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guide-section {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.guide-section:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.guide-section.active {
    border-color: #4a7c59;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.1);
}

.guide-section-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fafafa;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.guide-section.active .guide-section-header {
    background: #f0f7f2;
    border-bottom: 1px solid #e5e5e5;
}

.guide-section-header:hover {
    background: #f5f5f5;
}

.guide-section.active .guide-section-header:hover {
    background: #e8f2eb;
}

.section-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.section-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.section-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #999;
    line-height: 1;
    width: 24px;
    text-align: center;
}

.guide-section.active .section-toggle {
    color: #4a7c59;
}

/* Section Content */
.guide-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}

.guide-section.active .guide-section-content {
    padding: 1.5rem;
}

.guide-section-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.guide-section-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.guide-section-content h4:first-of-type {
    margin-top: 1rem;
}

.guide-section-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.guide-section-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.guide-section-content li {
    position: relative;
    padding-left: 1.5rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.guide-section-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

/* Tip Box */
.guide-tip {
    background: #f8f4e8;
    border-left: 4px solid #e6a756;
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.guide-tip strong {
    color: #b8860b;
}

/* Info Table */
.guide-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.guide-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    color: #555;
    line-height: 1.6;
}

.guide-table tr:last-child td {
    border-bottom: none;
}

.guide-table td:first-child {
    width: 35%;
    background: #fafafa;
    font-size: 0.95rem;
}

/* Placeholder Text */
.placeholder-text {
    color: #999;
    font-style: italic;
    padding: 2rem 0;
    text-align: center;
}

/* Footer */
.guide-footer {
    text-align: center;
    padding: 2.5rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid #eee;
}

.guide-footer p {
    color: #666;
    margin-bottom: 0.5rem;
}

.guide-contact {
    color: #4a7c59;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
    .guide-page {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .guide-header h1 {
        font-size: 2.2rem;
    }

    .guide-section-header {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

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

    .section-title {
        font-size: 1rem;
    }

    .guide-section.active .guide-section-content {
        padding: 1.25rem;
    }

    .guide-table td:first-child {
        width: 40%;
    }
}
