@charset "UTF-8";

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}

.main-menu {
	position: fixed;
	left: -50px;
}

.top-block {
	align-items: center;
	text-align: center;
	height: 70px;
	background-color: #c8f58f;
	display: flex;	
}

.head-outer {
	height: 180px;
	color: #c8f58f;
	background-image: url('at-rent.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.footer-outer {
	height: 12px;
	color: #c8f58f;
	background-color: #c8f58f;
}

.head-title {
	font-size: 30px;
	color: purple;
	text-shadow: 2px 2px 4px;
}

.box-mesg {
	background-color: #c8f58f;
	align-items: center;
	padding: 30px;
}

.box-outer {
	display: flex;
	justify-content: center;
	align-items: center;
}

.box-shadow {
	padding: 20px;
	border-radius: 15px;
	border-top: 2px solid green;
	background-color: #c8f58f;
}

.sidenav {
	height: 100%;
	width: 0px;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #ff6b6e;
	overflow-x: hidden;
	transition: 0.8s;
	padding-top: 40px;
}

.sidenav a {
	padding: 6px;
	text-decoration: none;
	font-size: 20px;
	color: #ffffff;
	background-color: #ff6060;
	display: block;
	transition: 0.3s;
}

.sidenav a:hover {
	background-color: #ff008c;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 30px;
	background-color: #ff6060;
	margin-left: 40px;
}

.cursor {
    max-width: 760px;
    display: flex;
    float: right;
	font-size: 36px; 
	cursor: pointer;
}

@media screen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 16px;}
}

/* Core styles for the floating button */
.floating-btn {
      position: fixed;       /* Keeps the button in place relative to the screen */
      bottom: 24px;          /* Spacing from the bottom edge */
      right: 24px;           /* Spacing from the right edge */
      background-color: #ff6b6e; /* Primary button color */
      color: white;          /* Text color */
      border: none;          /* Removes default border */
      border-radius: 50%;    /* Makes the button perfectly circular */
      width: 60px;           /* Button width */
      height: 60px;          /* Button height */
      font-size: 18px;       /* Icon/text size inside */
      cursor: pointer;       /* Changes mouse cursor to pointer on hover */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Adds a subtle floating shadow */
      display: flex;         /* Enables alignment centering */
      align-items: center;   /* Centers contents vertically */
      justify-content: center; /* Centers contents horizontally */
      z-index: 1000;         /* Layering to ensure it stays on top of page elements */
      transition: transform 0.2s, background-color 0.2s; /* Smooth interactive animation */
}

/* Interactive hover effects */
.floating-btn:hover {
      background-color: #ff6b6e; /* Darker shade on hover */
      transform: scale(1.05);    /* Slight size enlargement on hover */
}

/* Interactive press effect */
.floating-btn:active {
      transform: scale(0.95);  
}
      


