/* ================================================
   POST PAGE STYLES - Once Maison
   ================================================ */

.post-main {
    background: var(--dark-bg);
    min-height: 100vh;
}

/* Post Hero Section */
.post-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.post-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.post-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(17,17,17,0.9) 100%);
}

.post-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 30px;
    max-width: 900px;
    margin-top: 80px;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cream-soft);
}

.post-breadcrumb a {
    color: #d4af9a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-breadcrumb a:hover {
    color: var(--cream);
}

.post-breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.post-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.post-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #d4af9a;
    font-style: italic;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--cream-soft);
    letter-spacing: 0.5px;
}

.post-meta-item svg {
    color: #d4af9a;
}

.post-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.post-status.closed {
    background: rgba(212, 175, 154, 0.15);
    border: 1px solid rgba(212, 175, 154, 0.3);
    color: #d4af9a;
}

.post-status.open {
    background: rgba(139, 195, 74, 0.15);
    border: 1px solid rgba(139, 195, 74, 0.3);
    color: #8bc34a;
}

/* Post Sections */
.post-section {
    padding: 100px 0;
    position: relative;
}

.post-intro {
    padding-top: 0;
    padding-bottom: 80px;
}

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

.post-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af9a 50%, transparent 100%);
}

.ornament-diamond {
    color: #d4af9a;
    font-size: 12px;
}

.post-section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 30px;
    line-height: 1.3;
}

.post-lead {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #d4af9a;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.post-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--cream-soft);
    margin-bottom: 20px;
}

/* Post Details Grid */
.post-details {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-bg) 100%);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-detail-card {
    background: rgba(212, 175, 154, 0.05);
    border: 1px solid rgba(212, 175, 154, 0.2);
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.post-detail-card:hover {
    background: rgba(212, 175, 154, 0.08);
    border-color: rgba(212, 175, 154, 0.3);
    transform: translateY(-5px);
}

.post-detail-card h3 {
    font-size: 1.8rem;
    color: #d4af9a;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.post-detail-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream-soft);
    margin-bottom: 15px;
}

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

.post-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream-soft);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.post-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d4af9a;
    font-weight: bold;
}

.post-list li strong {
    color: #d4af9a;
}

/* Gallery Section */
.post-gallery {
    background: var(--dark-bg);
}

.post-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Availability Section */
.post-availability {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-bg) 100%);
    padding-top: 80px;
    padding-bottom: 100px;
}

.availability-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(212, 175, 154, 0.05);
    border: 1px solid rgba(212, 175, 154, 0.2);
    border-radius: 12px;
    padding: 60px 50px;
    text-align: center;
}

.availability-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.status-badge.closed {
    background: rgba(212, 175, 154, 0.15);
    border: 1px solid rgba(212, 175, 154, 0.3);
    color: #d4af9a;
}

.status-badge.open {
    background: rgba(139, 195, 74, 0.15);
    border: 1px solid rgba(139, 195, 74, 0.3);
    color: #8bc34a;
}

.availability-card h3 {
    font-size: 2.2rem;
    color: var(--cream);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.availability-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cream-soft);
    margin-bottom: 15px;
}

.post-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: #d4af9a;
    border: 2px solid #d4af9a;
    padding: 16px 35px;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: #d4af9a;
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .post-hero {
        height: 70vh;
        min-height: 500px;
    }

    .post-hero-content {
        margin-top: 60px;
    }

    .post-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .post-subtitle {
        font-size: 1.2rem;
    }

    .post-meta {
        gap: 15px;
    }

    .post-section {
        padding: 60px 0;
    }

    .post-detail-card {
        padding: 30px 20px;
    }

    .post-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .availability-card {
        padding: 40px 25px;
    }

    .post-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary.large,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 2rem;
    }

    .post-breadcrumb {
        font-size: 12px;
    }

    .post-detail-card {
        padding: 25px 15px;
    }

    .availability-card {
        padding: 30px 20px;
    }
}
