/* 
 * 澳根尼會館 (AUGANIC) - 房型介紹頁面樣式
 */

/* Room Detail Section */
.room-detail {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.room-detail:last-child {
    margin-bottom: 0;
}

/* Room Gallery */
.room-gallery {
    position: relative;
}

.gallery-main {
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery-thumbs img {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbs img:hover {
    transform: translateY(-3px);
}

.gallery-thumbs img.active {
    border-color: var(--primary-color);
}

/* Room Information */
.room-info {
    display: flex;
    flex-direction: column;
}

.room-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.room-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Room Features List */
.room-features-list {
    margin-bottom: 20px;
}

.room-features-list h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.room-features-list h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
}

.room-features-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.room-features-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.room-features-list li i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Room Price Table */
.room-price-table {
    margin-bottom: 25px;
}

.room-price-table h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.room-price-table h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
}

.room-price-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.room-price-table th, .room-price-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.room-price-table th {
    background-color: rgba(84, 92, 47, 0.1);
    font-weight: 600;
    color: var(--primary-color);
}

.room-price-table td {
    font-weight: 500;
}

.price-note {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 10px;
}

/* Booking Information Section */
.booking-info {
    background-color: var(--gray);
}

.info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-item h3 i {
    margin-right: 10px;
}

.info-item ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.info-item li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .room-detail {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .info-card {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        height: 300px;
    }
}

@media screen and (max-width: 576px) {
    .room-features-list ul {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-thumbs img {
        width: 60px;
        height: 45px;
    }
    
    .room-price-table table {
        font-size: 0.9rem;
    }
}