/**
 * Hotel Accommodations Block Styles
 * Add this to your theme's style.css or enqueue as a separate stylesheet
 */

/* Container */
.hotel-accommodations-block {
    width: 100%;
    margin: 2rem 0;
}

.hotel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Header */
.hotel-section-header {
    padding: 0 0 1rem;
}

.hotel-section-header h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Hotel Text Descriptions */
.hotel-text-description {
    margin-bottom: 1.5rem;
    padding: 0 0.25rem 0 0.375rem;
}

.hotel-text-description h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hotel-text-description h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotel-text-description h3 a:hover {
    color: #23a455;
}

.hotel-text-description .hotel-description-content {
    line-height: 1.6;
}

.hotel-text-description .hotel-description-content p {
    margin-bottom: 1rem;
}

.hotel-text-description .hotel-description-content strong {
    font-weight: 600;
}

.hotel-text-description .hotel-description-content a {
    color: #0066cc;
    text-decoration: none;
}

.hotel-text-description .hotel-description-content a:hover {
    text-decoration: underline;
}

/* Hotel Cards Grid */
.hotel-cards-section {
    padding: 0.875rem 0;
}

.hotel-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0;
}

@media (min-width: 768px) {
    .hotel-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Individual Hotel Card */
.hotel-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Hotel Card Header */
.hotel-card-header h5 {
    font-size: 1.25rem;
    margin: 0 0 0 0.5rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #23a455 0%, #1a7d42 100%);
    color: white;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(35, 164, 85, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card-header h5:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(35, 164, 85, 0.6);
}

.hotel-card-header h5 a {
    color: white;
    text-decoration: none;
    display: block;
}

/* Hotel Card Image */
.hotel-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 0 solid transparent;
    box-shadow: 0 0 10px rgba(122, 122, 122, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(122, 122, 122, 0.6);
}

.hotel-card-image a {
    display: block;
    line-height: 0;
}

.hotel-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hotel-card-image:hover img {
    transform: scale(1.05);
}

/* Conclusion Section */
.hotel-conclusion-section {
    padding: 1.125rem 0 0;
}

.conclusion-divider {
    width: 25%;
    height: 1px;
    background: #ddd;
    margin: 0 auto 1.5rem;
}

.hotel-conclusion-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hotel-conclusion-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hotel-conclusion-section h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 500;
}

.conclusion-content {
    line-height: 1.6;
}

.conclusion-content p {
    margin-bottom: 1rem;
}

.conclusion-content ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.conclusion-content ul li {
    margin-bottom: 0.5rem;
}

.conclusion-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f5f5f5;
    border-left: 4px solid #23a455;
    font-style: italic;
}

.conclusion-content blockquote p:last-child {
    margin-bottom: 0;
}

.conclusion-content em {
    font-style: italic;
}

.conclusion-content strong {
    font-weight: 600;
}

.conclusion-content a {
    color: #0066cc;
    text-decoration: none;
}

.conclusion-content a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hotel-section-header h2 {
        font-size: 1.75rem;
    }
    
    .hotel-text-description h3 {
        font-size: 1.25rem;
    }
    
    .hotel-card-header h5 {
        font-size: 1.1rem;
    }
    
    .hotel-conclusion-section h2 {
        font-size: 1.75rem;
    }
    
    .hotel-conclusion-section h3 {
        font-size: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .hotel-card-image {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .hotel-card-header h5 {
        background: none;
        color: #000;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
