/* Köşk Butik Otel - Ek Sayfa Stilleri */

/* ===== Page Header ===== */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* ===== Contact Page ===== */
.contact-info-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-info-box h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item .content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-item .content p,
.contact-info-item .content a {
    color: #666;
}

.contact-info-item .content a:hover {
    color: var(--primary-color);
}

.social-links-box {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.social-links-box h4 {
    margin-bottom: 15px;
}

.social-links-box .social-links {
    display: flex;
    gap: 15px;
}

.social-links-box .social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.social-links-box .social-links a:hover {
    background: var(--secondary-color);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-box h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.map-section {
    margin-top: 0;
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* ===== Gallery Page ===== */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ===== Blog Page ===== */
.col-md-8 {
    width: 66.666%;
    padding: 0 15px;
}

.blog-card-large {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.blog-card-large .blog-image {
    height: 350px;
}

.blog-card-large .blog-content {
    padding: 30px;
}

.blog-card-large .blog-title {
    font-size: 28px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 5px;
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-color);
    color: var(--white);
}

.latest-posts-list li {
    margin-bottom: 15px;
}

.latest-posts-list a {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: var(--white);
    border-radius: 5px;
    transition: var(--transition);
}

.latest-posts-list a:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.latest-posts-list img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.latest-posts-list .post-info {
    flex: 1;
}

.latest-posts-list h4 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.latest-posts-list span {
    font-size: 12px;
    color: #999;
}

/* ===== About Page ===== */
.about-content-page {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-content-page h2,
.about-content-page h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* ===== Pagination ===== */
.pagination-wrapper {
    margin-top: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-color);
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== No Results ===== */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results p {
    font-size: 18px;
    color: #999;
}

/* ===== Responsive Additions ===== */
@media (max-width: 992px) {
    .col-md-8 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .blog-card-large .blog-image {
        height: 250px;
    }
    
    .blog-card-large .blog-title {
        font-size: 22px;
    }
}
