/* page.css - Specific styles for inner pages */

/* Main content spacing */
main {
    padding-top: 80px; /* Account for fixed header */
}

/* Page Sections */
.page-section {
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.page-section:last-child {
    border-bottom: none;
}

/* Typography */
.page-section h1 {
    font-size: 1.8rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.3;
}

.page-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.page-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
}

.page-section p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Image containers */
.image-container {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 3px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

/* Two column layout */
.two-column {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
}

.column {
    flex: 1;
}

/* Intro section with side-by-side layout */
.intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.intro-image {
    flex: 1;
    overflow: hidden;
    border-radius: 3px;
}

.intro-text {
    flex: 1;
}

.intro-text h1 {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* Hotel feature layout */
.hotel-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.hotel-content.reverse {
    flex-direction: row-reverse;
}

.hotel-text {
    flex: 1;
}

.hotel-image {
    flex: 1;
    overflow: hidden;
    border-radius: 3px;
}

.hotel-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hotel-image:hover img {
    transform: scale(1.02);
}

/* Book now button */
.book-now-container {
    text-align: center;
    margin: 2rem 0;
}

.btn-book {
    display: inline-block;
    background-color: #4051b5;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-book:hover {
    background-color: #303f9f;
}

/* Conclusion section */
.conclusion {
    text-align: center;
    padding: 5rem 0;
}

.conclusion h2 {
    margin-bottom: 1.5rem;
}

.conclusion p {
    max-width: 800px;
    margin: 0 auto;
}

/* Specific section styles */
.hospitality {
    background-color: #fff;
    text-align: center;
}

.design {
    background-color: #f9f9f9;
}

.accessibility {
    background-color: #fff;
}

.company {
    background-color: #f9f9f9;
}

.philosophy {
    background-color: #fff;
}

/* Social icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #7a1c2c;

    color: #7a1c2c;
    font-size: 0.8rem;
    transition: all 0.3s ease;
     background-color: #7a1c2c;
}

.social-icon:hover {
    background-color: #7a1c2c;
    color: white;
}

/* Active nav link */
.main-nav a.active {
    position: relative;
}

.main-nav a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

/* Responsive styles */
@media (max-width: 992px) {
    .page-section h1 {
        font-size: 1.6rem;
    }

    .page-section h2 {
        font-size: 1.4rem;
    }

    .page-section h3 {
        font-size: 1.2rem;
    }
    
    .two-column {
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-content,
    .hotel-content,
    .hotel-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-text h1 {
        text-align: center;
    }
    
    .main-nav a.active:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 3rem 0;
    }
    
    .page-section h1 {
        font-size: 1.4rem;
    }

    .page-section h2 {
        font-size: 1.3rem;
    }

    .page-section h3 {
        font-size: 1.1rem;
    }
    
    .image-container,
    .intro-image,
    .hotel-image {
        margin: 1.5rem 0;
    }
    
    .conclusion {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    main {
        padding-top: 70px;
    }
    
    .page-section {
        padding: 2.5rem 0;
    }
    
    .page-section h1 {
        font-size: 1.3rem;
    }

    .page-section h2 {
        font-size: 1.2rem;
    }

    .page-section h3 {
        font-size: 1rem;
    }
    
    .page-section p {
        font-size: 0.9rem;
    }
    
    .conclusion {
        padding: 2.5rem 0;
    }
}