/* ========================================
   ADDITIONAL PAGES STYLES
   ======================================== */

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
}

.page-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
}

.page-title {
    font-family: var(--font-secondary);
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ========================================
   ROOM DETAIL
   ======================================== */
.room-detail {
    margin-bottom: 100px;
}

.room-detail-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.room-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-detail-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.room-detail-badge.premium {
    background: #8B4513;
}

.room-detail-badge.exclusive {
    background: #1a1a1a;
}

.room-detail-content {
    padding-left: 60px;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.room-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.spec-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.spec-item div {
    display: flex;
    flex-direction: column;
}

.spec-item strong {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.spec-item span {
    font-size: 15px;
    color: var(--text-light);
}

.room-amenities-list {
    margin: 35px 0;
    padding: 30px;
    background: var(--bg-light);
}

.room-amenities-list h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.room-amenities-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.room-amenities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.room-amenities-list i {
    color: var(--primary-color);
    font-size: 16px;
}

.room-divider {
    height: 1px;
    background: var(--border-color);
    margin: 100px 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--primary-color);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

/* ========================================
   AMENITY DETAIL PAGE
   ======================================== */
.amenity-section {
    padding: 80px 0;
}

.amenity-section:nth-child(even) {
    background: var(--bg-light);
}

.amenity-detail-content {
    padding-right: 60px;
}

.amenity-detail-image {
    height: 500px;
    overflow: hidden;
}

.amenity-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.feature-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   BLOG PAGE
   ======================================== */
.blog-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.blog-grid {
    display: grid;
    gap: 50px;
}

.blog-card {
    display: flex;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.blog-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-image {
    flex: 0 0 350px;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.read-more:hover {
    gap: 12px;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 35px;
    margin-bottom: 40px;
}

.sidebar-widget h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.search-widget input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    font-family: var(--font-primary);
    font-size: 14px;
    margin-bottom: 15px;
}

.search-widget button {
    width: 100%;
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.category-list span {
    color: var(--primary-color);
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
}

.recent-post-image {
    flex: 0 0 80px;
    height: 80px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-post-content span {
    font-size: 12px;
    color: var(--text-light);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 13px;
    transition: var(--transition-fast);
}

.tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

/* ========================================
   SINGLE BLOG POST
   ======================================== */
.single-post {
    max-width: 900px;
}

.post-header {
    margin-bottom: 40px;
}

.post-featured-image {
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
}

.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.post-content h2 {
    font-size: 36px;
}

.post-content h3 {
    font-size: 28px;
}

.post-content p {
    margin-bottom: 25px;
}

.post-content img {
    width: 100%;
    margin: 40px 0;
}

.post-content blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 20px;
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.social-share {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-share h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.pinterest {
    background: #e60023;
}

.share-btn.email {
    background: var(--text-dark);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 100px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    transition: var(--transition-fast);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    height: 500px;
    margin-top: 80px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.story-section {
    padding: 100px 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 56px;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-position {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .room-detail-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .amenity-detail-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .contact-info-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 48px;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        flex: 0 0 auto;
        height: 250px;
    }
    
    .room-specs {
        grid-template-columns: 1fr;
    }
    
    .room-amenities-list ul {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 40px 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .order-1,
    .order-2 {
        order: 0;
    }
}
