/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
      min-height: 100vh;
        display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Add Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px;
}

main {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}


.logo {
      margin-left: 10px;
  margin-right: 10px;
    height: 50px;
}

/* Hero styles */
.hero {
    text-align: center;
    padding: 50px 0;
    color: #333;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    
  margin-left: auto;
  margin-right: auto;
}

 h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
        text-align: center;

}


.hero p {
    font-size: 1.5rem;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
      margin-top: auto;

}

footer p {
    margin: 0;
}


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 10px;    
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

label {
    color: #333;
    
}

input[type=text], input[type=email] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type=file] {
    border: 1px solid #ccc;
    padding: 10px;
}

input[type=submit] {
    background-color: #ff6347;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #ff4500;
}

.room {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


#spaceContent img {
    
    border-radius: 5px;
}


#spaceContent p {
    
        text-align: center; 
}

.room:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

.room:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
    cursor: pointer;
}

.room:hover:before {
    background: rgba(255, 255, 255, 0);
}

.room > * {
    position: relative;
    z-index: 10;
}

.room h2 {
    margin: 0 0 10px;
    color: #333;
}
