/* Global Styles */
:root {
    --primary-color: #8e6c88;
    --secondary-color: #d4b8c7;
    --accent-color: #6c4a6e;
    --light-color: #f8f5f7;
    --dark-color: #333;
    --text-color: #555;
    --white: #fff;
    --black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', serif;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: url('https://thebissellhouse.com/wp-content/uploads/2020/07/Bissell-House-Bed-and-Breakfast-Los-Angeles-Pasadena-Victorian-Exterior-1.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    margin-left: 10%;
}

.hero h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    text-align: center;
}

.welcome-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.welcome-section p {
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Rooms Section */
.rooms-section {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.rooms-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rooms-section p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.room-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.room-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-card h3 {
    font-size: 22px;
    margin: 20px 0 10px;
}

.room-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.room-card .btn {
    margin-bottom: 20px;
}

.view-all {
    margin-top: 30px;
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    text-align: center;
}

.amenities-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-item {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.amenity-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Specials Section */
.specials-section {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.specials-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.special-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    transition: transform 0.3s ease;
}

.special-card:hover {
    transform: translateY(-10px);
}

.special-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.special-card h3 {
    font-size: 22px;
    margin: 20px 0 10px;
}

.special-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.special-card .btn {
    margin-bottom: 20px;
}

/* Neighborhood Section */
.neighborhood-section {
    padding: 80px 0;
    text-align: center;
}

.neighborhood-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.neighborhood-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.neighborhood-section ul {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: left;
}

.neighborhood-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.neighborhood-section ul li:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.map-container {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    padding: 30px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--secondary-color);
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-contact p {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.footer-newsletter .btn {
    width: 100%;
}

.footer-bottom {
    background-color: var(--black);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: var(--secondary-color);
    margin: 0 10px;
}

.legal-links a:hover {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        margin-left: 5%;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        margin: 0 auto;
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .room-gallery,
    .specials-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .welcome-section,
    .rooms-section,
    .amenities-section,
    .specials-section,
    .neighborhood-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}