/*
Theme Name: Wedding Platform
Description: A beautiful wedding planning platform theme with modern design and functionality
Version: 1.0
Author: Your Name
Author URI: https://yoursite.com
Text Domain: wedding-platform
*/

/* Import the original CSS */
@import url('assets/css/main.css');

/* WordPress specific styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1em;
}

.alignright {
    float: right;
    margin-left: 1em;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875em;
    color: #6c757d;
    margin-top: 0.5em;
}

/* WordPress admin bar adjustment */
.admin-bar .navbar.fixed-top {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .navbar.fixed-top {
        top: 46px;
    }
}

/* WordPress content styles */
.entry-content {
    line-height: 1.6;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.entry-content p {
    margin-bottom: 1em;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1em;
    margin: 1.5em 0;
    font-style: italic;
}

/* WordPress widgets */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: var(--primary-color);
}

/* WordPress pagination */
.pagination {
    justify-content: center;
    margin: 2rem 0;
}

.page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* WordPress comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--dark-text);
}

.comment-meta {
    font-size: 0.875em;
    color: var(--muted-text);
    margin-bottom: 0.5rem;
}

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

/* WordPress search form */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.search-form input[type="submit"] {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.375rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form input[type="submit"]:hover {
    background-color: #d63384;
}
