/* Tulum guide pages - shared styles */

/* Base styles */
.tulum-guide-page {
    background: #333333;
    color: #dddddd;
}

/* Content sections */
.content-section {
    background: #333333;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Venue cards */
.venue-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.venue-item {
    background: #333333;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Area list */
.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.area-item {
    background: #333333;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Calendar section */
.calendar-section {
    background: #333333;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.calendar-section ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

/* Tips section */
.tips-section {
    background: #333333;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* CTA sections */
.cta-section {
    background: #2b6cb0;
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2b6cb0;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #f7fafc;
    text-decoration: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #eeeeee;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Lists */
ul {
    margin-bottom: 1rem;
}

ul li {
    margin-bottom: 0.5rem;
}

/* Links */
a {
    color: #2b6cb0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background: #2b6cb0;
    color: #ffffff;
}

/* Related guides */
.related-guides {
    background: #333333;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

/* Strong and emphasis */
strong {
    color: #ffffff;
}

/* List items with checkmarks */
.list-unstyled li strong {
    color: #4299e1;
}

/* Lead text */
.lead {
    font-size: 1.125rem;
    color: #a0aec0;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background: #2b6cb0;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2c5282;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .venue-list, .area-list {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .content-section {
        padding: 1rem;
    }
}
