/* styles/room-walls.css */

/* Different wall colors for each room */
#hero-room .front-wall {
    background: rgba(139, 0, 0, 0.7) !important; /* Red for hero */
    border: 2px solid rgba(255, 0, 0, 0.8);
}

#services-room .front-wall {
    background: rgba(0, 100, 0, 0.7) !important; /* Green for services */
    border: 2px solid rgba(0, 255, 0, 0.8);
}

#projects-room .front-wall {
    background: rgba(0, 0, 139, 0.7) !important; /* Blue for projects */
    border: 2px solid rgba(0, 0, 255, 0.8);
}

#about-room .front-wall {
    background: rgba(128, 0, 128, 0.7) !important; /* Purple for about */
    border: 2px solid rgba(255, 0, 255, 0.8);
}

.top-wall {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 30px;
    transform: rotateX(90deg) translateZ(15px);
    transform-origin: bottom;
}

.top-wall.ceiling {
    background: linear-gradient(45deg, var(--room-wall), var(--room-wall-alt));
}

.top-wall.sky-view {
    background: linear-gradient(to bottom, var(--deep-space), var(--earth-blue));
}

.bottom-wall {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 30px;
    transform: rotateX(-90deg) translateZ(15px);
    transform-origin: top;
}

.bottom-wall.wood-floor {
    background: linear-gradient(45deg, var(--floor-wood), #a0522d);
}

.bottom-wall.tech-floor {
    background: linear-gradient(45deg, var(--tech-floor), #2c3e50);
}

.bottom-wall.carpet-floor {
    background: linear-gradient(45deg, #8b0000, #a0522d);
}

.left-wall {
    position: absolute;
    left: -15px;
    top: 0;
    width: 30px;
    height: 100%;
    transform: rotateY(90deg) translateZ(15px);
    transform-origin: right;
    background: var(--room-wall);
}

.right-wall {
    position: absolute;
    right: -15px;
    top: 0;
    width: 30px;
    height: 100%;
    transform: rotateY(-90deg) translateZ(15px);
    transform-origin: left;
    background: var(--room-wall);
}

.front-wall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--room-wall);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border-radius: 0;
}

.window-container {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 30%;
    height: 40%;
    background: rgba(135, 206, 235, 0.3);
    border: 3px solid var(--accent-gold);
    border-radius: 5px;
}

.front-wall.panoramic-window .window-container {
    width: 80%;
    height: 30%;
    top: 5%;
    right: 10%;
}

.front-wall.small-window .window-container {
    width: 20%;
    height: 25%;
}

.cityscape-view {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(65, 105, 225, 0.8) 0%,
        rgba(135, 206, 235, 0.6) 100%
    );
    overflow: hidden;
}

.distant-buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.3) 0px,
        rgba(0, 0, 0, 0.3) 8px,
        transparent 8px,
        transparent 15px
    );
}

.room-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}
