*{
    margin: 0;
    padding: 0;
    font-family: 'roboto', sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(images/modern-empty-room-authentic-interior-design.png);
    background-position: center;
    background-size: cover;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;

}
.navbar{
    height: 12%;
    display: flex;
    align-items: center;
}
.logo{
    width: 100px;
    cursor: pointer;

}
.menu-icon{
    width: 40px;
    cursor: pointer;
    margin-left: 30px;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 60px;
}
nav ul li a{
    text-decoration: none;
    color: #000000;
    font-size: 23px;
}
.row{
    display: flex;
    height: 88%;  
    align-items: center;

}
.col{
  
    flex-basis: 60%;
    
}

button{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);  
    border: none;  
    height: 36px;
    width: 180px;   
    cursor: pointer;
    border-radius: 18px;
    font-weight: bold;
    font-size: 15;
    transition: box-shadow 0.15s;
    margin-top: 30PX;
    
    }
    button:hover{
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    
    }
    .card{
        width: 200px;
        height: 230px;
        display: inline-block;
        border-radius: 10px;  
        padding: 15px 25px;
        cursor: pointer;
        margin: 10px 15px;
        background-image: url(images/img_1982.png );
        background-position: center;
        background-size: cover;

    }
    .card2{
        width: 200px;
        height: 230px;
        display: inline-block;
        border-radius: 10px;  
        padding: 15px 25px;
        cursor: pointer;
        margin: 10px 15px;
        background-image: url(images/img_1982.png );
        background-position: center;
        background-size: cover;

    }
    .card3{
        width: 200px;
        height: 230px;
        display: inline-block;
        border-radius: 10px;  
        padding: 15px 25px;
        cursor: pointer;
        margin: 10px 15px;
        background-image: url(images/img_1982.png );
        background-position: center;
        background-size: cover;

    }
    .card4{
        width: 200px;
        height: 230px;
        display: inline-block;
        border-radius: 10px;  
        padding: 15px 25px;
        cursor: pointer;
        margin: 10px 15px;
        background-image: url(images/img_1982.png );
        background-position: center;
        background-size: cover;

    }
    .imageGrid {
  display: grid;
  grid-template-columns: repeat(2, 200px); /* 2 columns */
  grid-template-rows: repeat(2, 200px);    /* 2 rows */
  gap: 20px;                               /* space between boxes */
  justify-content: center;                 /* centers grid */
  margin: 50px 0;

}

.imageGrid figure {
  width: 200px;
  height: 200px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.imageGrid img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps images uniform */
}

/* Hover effect for interactivity */
.imageGrid figure:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full viewport height */
    margin: 0; /* just in case */
}
main, #centerColumn, #rightColumn, .valuesPage {
    flex: 1; /* fills remaining vertical space */
}

footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
}

