@charset "UTF-8";
body {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    display: flex;               /* center children */
    flex-direction: column;
    align-items: center;         /* horizontal centering */
	font-family: 'Courier New', Courier, monospace;
    background-color: #ffffff;
    opacity: 0; /* Start with opacity set to 0 */
    animation: fade-in 4s forwards; /* Apply the fade-in animation */
}
@keyframes fade-in {
    from {
        opacity: 0; /* Start with 0 opacity */
    }
    to {
        opacity: 1; /* End with full opacity */
    }
}

.header {
    font-size: 500%;
    background-color: rgb(255, 255, 255);
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    font-weight: 400;
	margin-bottom: 30px;
}

#body {
    position: relative;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	padding: 200px;
}

.about-me {
	place-items: center;
	display: grid;
	color: red;
	padding: 30px;
}

  .room-container {
    position: relative;
    display: inline-block;
	margin-bottom: 30px;
  }

  .room-image {
    max-width: 1500px;
    width: 100%;
    height: auto;
    display: block;
  }

  /* Hotspot marker */
  .hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 0%;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
	opacity: 0;
	transition: opacity 0.1s linear;
  }

  .hotspot.visible {
  opacity: 1;
}
  .hotspot:hover {
    transform: scale(1.15);
  }

  /* Modal overlay */
  .modal {
    display: none; /* hidden by default */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* Modal content */
  .modal-content {
    background: #fff;
    max-width: 500px;
    width: 90%;
    padding: 24px;
    border-radius: 0; /* square corners */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    position: relative;
    animation: fadeIn 0.3s ease;
    font-family: "Courier New", monospace; /* apply Courier New */
  }

  .modal-content h2 {
    color: #ff4500; /* red-orange */
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    font-family: "Courier New", monospace;
  }
  .close-btn:hover {
    color: #000;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
