/* story.css - Styles for the Heritage Hotels Story Page */

/* Base Layout and Container styling */
.story-page-container {
    padding-top: 50px;
    padding-bottom: 80px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.story-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Column dimensions and offsets */
.story-content-col {
    flex: 0 0 62%;
    max-width: 62%;
    padding-right: 40px;
}

.story-sidebar-col {
    flex: 0 0 38%;
    max-width: 38%;
    padding-left: 20px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991.98px) {
    .story-content-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 15px;
        margin-bottom: 50px;
    }
    .story-sidebar-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
    }
}

/* Left Column Typography and Content Styles */
.story-category {
	font-family: Intro ;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #8a8a8a;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.story-title {
	
	font-family: 'IntroCd', sans-serif;
    font-size: 85px;
    font-weight: 750;
    line-height: 1.15;
    color: #262626;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.story-lead-p {
	
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 24px;
    font-family: 'Corbel', sans-serif;
    font-weight: 550;
}

/* Hotel Section Styling */
.hotel-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.hotel-title {
	
    font-size: 14px;
	font-family: Intro ;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.hotel-desc {
    font-size: 16px;
    color: #555555;
    margin-bottom: 18px;
    font-family: 'Corbel', sans-serif;
    font-weight: 500;
}

/* Image Grid Placeholders */
.hotel-images-row {
    display: grid;
    gap: 8px;
    margin-bottom: 25px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.hotel-img-placeholder {
    aspect-ratio: 4/3;
    background-color: #f0ebe6;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #e2deda;
}

.hotel-img-placeholder:hover {
    transform: translateY(-2px);
    background-color: #e6e0d9;
}

.hotel-img-placeholder::after {
    content: "Image Placeholder";
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a09990;
    font-weight: 600;
}

/* Right Column Sidebar Widget Styles */
.sidebar-sticky-wrapper {
    position: sticky;
    top: 30px;
    margin-left: 100px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Framed Text Block Widget */
.sidebar-framed-widget {
    width: 100%;
    position: relative;
    padding: 45px 35px;
    background-color: #ffffff;
    box-sizing: border-box;
}

/* Double L-shape decorative corners */
.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
}

.frame-corner.top-left {
    top: 0;
    left: 0;
}

.frame-corner.top-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 3px solid #d97d24;
    border-left: 3px solid #d97d24;
}

.frame-corner.top-left::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-top: 3px solid #352349;
    border-left: 3px solid #352349;
}

.frame-corner.bottom-right {
    bottom: 0;
    right: 0;
}

.frame-corner.bottom-right::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #d97d24;
    border-right: 3px solid #d97d24;
}

.frame-corner.bottom-right::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-bottom: 3px solid #352349;
    border-right: 3px solid #352349;
}

/* Sidebar list typography */
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.sidebar-item.headline-primary {
    font-size: 27px;
    font-weight: 800;
    color: #352349;
    line-height: 1.4;
        font-family: 'IntroCd', sans-serif;
}

.sidebar-item.headline-secondary {
    font-size: 14px;
    font-weight: 600;
    color: #555555;
    line-height: 1.4;
    font-family: 'Corbel', sans-serif;
}

/* Vertical connector line style */
.vertical-connector {
    width: 2px;
    height: 80px;
    background-color: #ffd043;
    margin: 0 auto;
}

/* Sidebar illustration wrapper */
.sidebar-illustration-container {
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}





.story-images{
    display:flex;
    gap:5px;
    flex-wrap:wrap;
    align-items:center;
}

.story-images img{
        height: 170px;
    width:auto;
    max-width:100%;
    object-fit:contain;
}


.story-images-2{
    display:flex;
    gap:5px;
    flex-wrap:wrap;
    align-items:center;
}

.story-images-2 img{
    height: 133px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.story-images-3{
    display:flex;
    gap:5px;
    flex-wrap:wrap;
    align-items:center;
}

.story-images-3 img{
           height: 172px;
    width:auto;
    max-width:100%;
    object-fit:contain;
}

.story-images-4{
    display:flex;
    gap:5px;
    flex-wrap:wrap;
    align-items:center;
}

.story-images-4 img{
           height: 170px;
    width:auto;
    max-width:100%;
    object-fit:contain;
}

.story-images-5{
    display:flex;
    gap:5px;
    flex-wrap:wrap;
    align-items:center;
}

.story-images-5 img{
           height: 170px;
    width:auto;
    max-width:100%;
    object-fit:contain;
}

.story-images-6{
    display:flex;
    gap:5px;
    flex-wrap:wrap;
    align-items:center;
}

.story-images-6 img{
           height: 170px;
    width:auto;
    max-width:100%;
    object-fit:contain;
}

.sidebar-framed-widget{
    position: relative;
    padding: 40px 25px;
    overflow: hidden;
}

/* Corner Images */
.corner-img{
    position: absolute;
    width: 50px; /* adjust size */
    z-index: 2;
}

/* Positions */
.top-left{
    top: 0;
    left: 0;
}

.top-right{
    top: 0;
    right: 0;
}

.bottom-left{
    bottom: 0;
    left: 0;
}

.bottom-right{
    bottom: 0;
    right: 0;
}


/* Mobile View */
@media(max-width:767px){

    .story-images img ,
    .story-images-2 img,
    .story-images-3 img,
    .story-images-4 img,
    .story-images-5 img,
    .story-images-6 img,
    .story-images-7 img{
        height: 100% !important;
    }
	
	.story-title {
		font-size: 28px;
	}
	
	.story-row{
		    padding: 25px;
	}

}


@media (max-width: 767.98px) {

  
    .sidebar-sticky-wrapper {
        margin-left: 0px;
    }
  
}