/* Reset basic margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
}

/* Header */
.header {
    background-color: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.header .logo a img {
    /*padding-top: 20px;*/
}

.header .nav {
	margin-left: auto;
	margin-right: auto;	
}

.header .nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.header .nav ul li {
    margin-right: 40px;
}

.header .nav ul li a {
    color: #fff;
    font-size: 2rem;
    font-weight: normal;
    transition: color 0.3s ease;
}

.header .nav ul li a:hover {
    color: #ff4081;
}

/* Hero Section */
.hero {
    height: 100vh;
    /*background-image: url('motel.jpeg');*/
    background: #f6d5ca;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

/*.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}*/

.hero-text {
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-text img {
    width: 90%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .btn {
    padding: 10px 20px;
    background-color: #ff4081;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #e10072;
}

.hero-text.about img {
	width: 30%;
	margin-top: -200px;
	margin-bottom: 80px;
}

.hero-text.about {
    padding-left: 20%;
    padding-right: 20%;
    align-items: center;
    justify-content: default;
    flex-direction: column;
}

.hero-text.about p {
	color: black;
}

.hero-text.about a {
	color: black;
	text-decoration: none;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer .social-links {
    margin-bottom: 20px;
}

.footer .social-links a {
    margin: 0 15px;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: #ff4081;
}

.footer p {
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        font-size: 1rem;
    }
}
