.tramway-hero {
    position: relative;
    min-height: 38vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.58) 100%), var(--tramway-hero-image);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.tramway-hero-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.tramway-logo {
    width: min(220px, 46vw);
    max-height: none;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.tramway-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.tramway-subtitle {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.tramway-signature {
    margin-top: -2.2rem;
    position: relative;
    z-index: 2;
}

.tramway-room-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 52, 96, 0.12);
    border: 1px solid rgba(15, 52, 96, 0.08);
}

.tramway-room-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.tramway-room-card:hover .tramway-room-image {
    transform: scale(1.04);
}

.practical-sidebar {
    position: sticky;
    top: 98px;
}

@media (max-width: 991px) {
    .tramway-hero {
        min-height: 34vh;
        background-position: center;
    }

    .tramway-signature {
        margin-top: -1.2rem;
    }

    .practical-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .tramway-hero {
        min-height: 30vh;
    }

    .tramway-hero-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .tramway-room-image {
        height: 210px;
    }
}
/* Styles spécifiques pour Tramway Hôtel */

/* Hero Section Tramway Hôtel */
.tramway-hotel-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tramway-hotel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hotel-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hotel-pattern)"/></svg>');
    opacity: 0.3;
}

.tramway-hotel-hero .container {
    position: relative;
    z-index: 2;
}

.hotel-badge {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(231,76,60,0.3);
}

.hotel-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hotel-stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hotel-stat-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.hotel-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.hotel-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Rooms Section */
.rooms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.room-image {
    height: 250px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
}

.room-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(231,76,60,0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.room-content {
    padding: 30px;
}

.room-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.room-size {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.room-amenities li {
    padding: 5px 0;
    color: #555;
    display: flex;
    align-items: center;
}

.room-amenities li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.price-period {
    color: #666;
    font-size: 0.9rem;
}

.room-actions {
    display: flex;
    gap: 10px;
}

.btn-room-action {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary-room {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.btn-primary-room:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231,76,60,0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-room {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-secondary-room:hover {
    background: #e74c3c;
    color: white;
    text-decoration: none;
}

/* Services Section */
.hotel-services-section {
    padding: 80px 0;
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scale(1);
}

.service-item-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f39c12;
    position: relative;
    z-index: 2;
}

.service-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-item-description {
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Restaurant Section */
.restaurant-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.restaurant-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.restaurant-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.restaurant-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.restaurant-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.restaurant-hours {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.restaurant-hours h6 {
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 600;
}

.restaurant-hours p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Spa Section */
.spa-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
}

.spa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.spa-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.spa-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.spa-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f39c12;
}

.spa-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.spa-description {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.spa-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f39c12;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: white;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.location-details h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.location-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.location-features {
    list-style: none;
    padding: 0;
}

.location-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
}

.location-features li::before {
    content: '📍';
    margin-right: 10px;
    font-size: 1.2rem;
}

.location-map {
    background: #f8f9fa;
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    border: 2px dashed #ddd;
}

/* CTA Section */
.hotel-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
}

.hotel-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hotel-cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hotel-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hotel-primary {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(243,156,18,0.3);
}

.btn-hotel-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(243,156,18,0.4);
    color: white;
    text-decoration: none;
}

.btn-hotel-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hotel-secondary:hover {
    background: white;
    color: #e74c3c;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tramway-hotel-hero {
        padding: 60px 0;
    }
    
    .hotel-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-grid {
        grid-template-columns: 1fr;
    }
    
    .service-grid,
    .restaurant-grid,
    .spa-grid {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hotel-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hotel-primary,
    .btn-hotel-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .room-card,
    .service-item,
    .restaurant-card,
    .spa-card {
        padding: 20px;
    }
    
    .hotel-cta-title {
        font-size: 2rem;
    }
    
    .hotel-cta-subtitle {
        font-size: 1rem;
    }
}
