:root {
    --primary-color: #B0210E;
    --text-color: #333;
    --bg-color: #fff;
    --light-bg: #f9f9f9;
    --dark-bg: #1e1e1e;
    --white: #fff;
    --container-width: 1100px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

/* Header */
#header {
    height: var(--header-height);
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 40px; /* Adjust height to fit header */
    width: auto;
}

.nav ul {
    display: flex;
}

.nav li {
    margin-left: 30px;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d12a14;
    transform: translateY(-3px);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    margin-top: 30px;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* Amenities Bar */
.amenities-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
}

.amenities-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.amenity-item {
    padding: 10px 20px;
    font-weight: 700;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 20px;
}

/* Rooms Section */
.rooms-grid {
    display: flex;
    justify-content: center;
}

.room-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    display: flex;
}

.room-image {
    flex: 1;
}

.room-image img {
    height: 100%;
    object-fit: cover;
}

.room-info {
    flex: 1;
    padding: 40px;
}

.room-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.features {
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Access */
.address {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Details */
.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #111;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .room-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }


}