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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

/* Container */
.app-container {
    max-width: 480px;
    margin: 0 auto;
    background-color: #f4f4f4;
    min-height: 100vh;
    position: relative;
}

/* Header */
.header {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    position: relative;
}

.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    color: #666;
    font-weight: 500;
    transition: all 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
    background-color: #194284 !important;
    border-color: #194284 !important;
    color: #fff;
}

.hotel-logo {
    margin: 50px 0 1.25px;
}

.logo-image {
    height: 168px;
    width: auto;
    margin-bottom: 1.25px;
    object-fit: contain;
}

.hotel-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.location-badge {
    background-color: #194284 !important;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: fit-content;
    white-space: nowrap;
}

/* Removed - consolidated into specific rule below */

.welcome-message {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    margin-bottom: 40px;
}

/* Main Content */
.main-content {
    padding: 0 20px 100px;
    background-color: #f4f4f4;
}

/* Sections */
.info-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
}

/* Accordion */
.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    background-color: #194284 !important;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.expanded {
    max-height: 2000px;
}

.content-inner {
    padding: 15px 20px 20px;
}

/* Content Styles */
.info-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 20px;
}

.time-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-info .icon {
    font-size: 20px;
}

.time {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.additional-info {
    margin-top: 20px;
}

.additional-info h4 {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.service-info .icon {
    font-size: 20px;
}

.wifi-info,
.parking-info,
.policy-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.wifi-info .icon,
.parking-info .icon,
.policy-info .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Breakfast Styles */
.breakfast-photo {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.breakfast-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.schedule-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.schedule-section:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.schedule-section h4 {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.schedule-times {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.time-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.time-icon {
    margin-bottom: 8px;
}

.time-item p {
    margin: 2px 0;
    font-size: 14px;
}

.time-item .time {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.optional-services {
    margin-top: 20px;
    padding-top: 0px;
}

.optional-services h4 {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 5px;
}

.service-details p {
    margin: 2px 0;
    font-size: 14px;
}

.service-details .price {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.coffee-icon {
    color: #194284;
}

/* SVG Icon Styles */
.clock-icon,
.wifi-icon,
.car-icon,
.map-pin-small,
.tv-icon {
    color: #194284;
}

/* Removed - no longer needed since location badge has no SVG */

.maps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-info h4,
.breakfast-highlights h4 {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.breakfast-highlights ul {
    list-style: none;
    padding: 0;
}

.breakfast-highlights li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.breakfast-highlights li:before {
    content: "•";
    color: #194284;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.breakfast-highlights li:last-child {
    border-bottom: none;
}

/* Restaurant List */
.restaurant-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.restaurant-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.restaurant-item:hover {
    background-color: #e1f4fd;
    transform: translateY(-2px);
}

.restaurant-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.restaurant-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.restaurant-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Channel List */
.channel-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.channel-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.channel-logo {
    font-size: 20px;
}

.channel-number {
    font-weight: 600;
    color: #666;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.social-link:hover {
    background-color: #e1f4fd;
}

.instagram-icon,
.facebook-icon {
    flex-shrink: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item a {
    color: #333;
    text-decoration: none;
}

.contact-item a:hover {
    color: #194284;
}

/* Attraction List */
.attraction-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.attraction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.attraction-item:hover {
    background-color: #e1f4fd;
    transform: translateY(-2px);
}

.attraction-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.attraction-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Business Info */
.business-info h4 {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.room-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.room-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.room-item svg {
    flex-shrink: 0;
}

/* Review Info */
.review-info {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.review-info p {
    margin-bottom: 10px;
    color: #666;
}

.review-link {
    display: inline-block;
    background-color: #194284;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.review-link:hover {
    background-color: #79C7E8;
}

/* Footer */
.footer {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #d5d5d5;
}

.footer p {
    color: #666;
    font-size: 14px;
}

/* Loading State */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 320px) {
    .app-container {
        max-width: 100%;
    }
    
    .header {
        padding: 15px;
    }
    
    .main-content {
        padding: 0 15px 100px;
    }
    
    .hotel-name {
        font-size: 28px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .time-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Laundry Section Styles */
.laundry-info {
    padding: 0;
}

.laundry-info p {
    margin-bottom: 20px;
    color: #333;
    font-size: 15px;
}

.laundry-prices {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.price-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #194284;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    font-size: 14px;
    gap: 12px;
}

.price-item span:first-child {
    color: #333;
    font-weight: 500;
    flex: 1;
    margin-right: 8px;
}

.price-item span:last-child {
    color: #194284;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.price-item:hover {
    background-color: #f8f9fa;
    border-color: #194284;
    transition: all 0.2s ease;
}

@media (min-width: 481px) {
    .app-container {
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        margin: 20px auto;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .price-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}