/*
Theme Name: Hotel Theme
Theme URI: http://example.com/hotel-theme
Author: Your Name
Author URI: http://example.com
Description: A responsive hotel theme.
Version: 1.0
*/

/* Body Styles */
body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background-color: #FFCC66;
    text-align: center;
    padding: 20px 0;
}

header .site-title {
    font-size: 18px;
    margin: 0;
}

header .site-tagline {
    font-size: 12px;
    color: #ff0000;
}

/* Logo Styles */
header .site-logo img {
    max-width: 150px;
    max-height:150px;
}

/* Menu Styles */
nav {
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

nav ul li {
    display: inline-block;
    margin-right: 30px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav a {
    text-decoration: none;
    color: #0000FF;
    font-size: 14px;
}

nav a:hover {
    color:#FFC0CB;
}

/* Footer Styles */
footer {
    background-color: grey;
    padding: 20px;
    text-align: center;
    color: #fff;
}

/* Footer Widget Area */
.footer-widgets {
    display: flex;
    justify-content: space-around;
}

.footer-widget {
    width: 30%;
    padding: 10px;
}

footer .copyright {
    font-size: 14px;
    margin-top: 20px;
}