/* Color Scheme
   Primary: #3d5c74 (Dark Blue-Gray)
   Gray: #4a504e
   Light Gray: #f5f5f5
   Accent: #d4a574 (Warm Gold)
   Success: #6b9080
   Text: #2c2c2c
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c2c2c;
    background-color: #ffffff;
    line-height: 1.6;
}

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

section {
	padding: 60px 20px;
	background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #3d5c74;
    font-weight: 700;
}

h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

a {
    color: #3d5c74;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4a574;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #3d5c74;
    color: white;
}

.btn-primary:hover {
    background-color: #2c4454;
    box-shadow: 0 4px 12px rgba(61, 92, 116, 0.3);
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #3d5c74;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
    border-color: #3d5c74;
}

/* Filter Section */
.filter-section {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-weight: 600;
    color: #3d5c74;
    margin-bottom: 8px;
    font-size: 13px;
}

.filter-input {
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 13px;
    background-color: white;
    color: #2c2c2c;
}

.filter-input:focus {
    outline: none;
    border-color: #3d5c74;
    box-shadow: 0 0 0 3px rgba(61, 92, 116, 0.1);
}

.filter-button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.filter-button-primary {
    background-color: #3d5c74;
    color: white;
}

.filter-button-primary:hover {
    background-color: #2c4454;
}

.filter-button-secondary {
    background-color: white;
    color: #3d5c74;
    border: 1px solid #d1d5db;
}

.filter-button-secondary:hover {
    background-color: #f5f5f5;
    border-color: #3d5c74;
}

.filter-slider-value {
    color: #3d5c74;
    font-weight: 600;
}

/* Advanced Filter Toggle */
.filter-toggle-btn {
    background-color: #f5f5f5;
    border: 1px solid #d1d5db;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    color: #3d5c74;
}

.filter-toggle-btn:hover {
    background-color: #e5e5e5;
    border-color: #3d5c74;
}

.filter-toggle-btn.active {
    background-color: #3d5c74;
    color: white;
    border-color: #3d5c74;
}

.advanced-filters {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #d1d5db;
}

.advanced-filters.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* Dual Range Slider Container */
.dual-range-container {
    position: relative;
    margin-bottom: 10px;
}

.dual-range-track-bg {
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background: #d1d5db;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.dual-range-track-fill {
    position: absolute;
    height: 6px;
    background: #3d5c74;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.dual-range-input-wrapper {
    position: relative;
    height: 40px;
}

.dual-range-input-wrapper input {
    position: absolute;
    width: 100%;
    height: 40px;
    top: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 3;
}

.dual-range-input-wrapper input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3d5c74;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 4px rgba(61, 92, 116, 0.3);
    border: 2px solid white;
    transition: all 0.2s ease;
}

.dual-range-input-wrapper input::-webkit-slider-thumb:hover {
    width: 24px;
    height: 24px;
    box-shadow: 0 2px 8px rgba(61, 92, 116, 0.5);
}

.dual-range-input-wrapper input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3d5c74;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 4px rgba(61, 92, 116, 0.3);
    border: 2px solid white;
    transition: all 0.2s ease;
}

.dual-range-input-wrapper input::-moz-range-thumb:hover {
    width: 24px;
    height: 24px;
    box-shadow: 0 2px 8px rgba(61, 92, 116, 0.5);
}

.dual-range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #4a504e;
}

.dual-range-value {
    font-weight: 600;
    color: #3d5c74;
}

/* Filter Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.filter-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #3d5c74;
}

.filter-checkbox label {
    cursor: pointer;
    font-size: 13px;
    color: #2c2c2c;
}

/* Filter Select */
.filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 13px;
    background-color: white;
    color: #2c2c2c;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #3d5c74;
    box-shadow: 0 0 0 3px rgba(61, 92, 116, 0.1);
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.hotel-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hotel-card:hover {
    box-shadow: 0 8px 24px rgba(61, 92, 116, 0.15);
    transform: translateY(-4px);
}

.hotel-image-container {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    overflow: hidden;
}

.hotel-name {
    color: #3d5c74;
    font-size: 18px;
}

.hotel-address {
    color: #4a504e;
    font-size: 13px;
}

.hotel-description {
    color: #2c2c2c;
    font-size: 13px;
}

.hotel-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 12px;
}

.hotel-details > div {
    background-color: #f5f5f5;
    padding: 8px;
    border-radius: 4px;
    border-left: 3px solid #3d5c74;
}

.hotel-details > div > div:first-child {
    color: #4a504e;
    margin-bottom: 2px;
}

.hotel-details > div > div:last-child {
    font-weight: 600;
    color: #3d5c74;
}

.hotel-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotel-btn-primary {
    background-color: #3d5c74;
    color: white;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.hotel-btn-primary:hover {
    background-color: #2c4454;
    transform: translateY(-2px);
}

.hotel-btn-wishlist {
    background-color: #f5f5f5;
    color: #3d5c74;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid #d1d5db;
    cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.hotel-btn-wishlist:hover {
    background-color: #e5e5e5;
    border-color: #3d5c74;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3d5c74 0%, #2c4454 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 0;
}

.hero h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
}

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

/* Featured Hotels */
.featured-hotels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.featured-hotel-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-hotel-card:hover {
    box-shadow: 0 8px 24px rgba(61, 92, 116, 0.15);
    transform: translateY(-4px);
}

.featured-hotel-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.featured-hotel-card h3 {
    padding: 15px;
    color: #3d5c74;
    font-size: 16px;
}

/* Advantages Section */
.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-card {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3d5c74;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background-color: white;
    box-shadow: 0 4px 12px rgba(61, 92, 116, 0.1);
}

.advantage-card h3 {
    color: #3d5c74;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #2c2c2c;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    color: #3d5c74;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    color: #2c2c2c;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3d5c74;
    box-shadow: 0 0 0 3px rgba(61, 92, 116, 0.1);
}

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

/* Footer */
footer {
    background-color: #3d5c74;
    color: white;
    padding: 40px 20px;
}

footer a {
    color: #d4a574;
}

footer a:hover {
    color: white;
}

/* Info Box */
.info-box {
    background-color: #f5f5f5;
    padding: 15px;
    border-left: 4px solid #3d5c74;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 14px;
}

.info-box strong {
    color: #3d5c74;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3d5c74 0%, #2c4454 100%);
    color: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 50px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 16px;
}

.hero {
    background:
        linear-gradient(135deg, rgba(61,92,116,0.7) 0%, rgba(44,68,84,0.7) 100%),
        url('/images/hero.webp') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

/* Responsive */
@media (min-width: 1200px) {
    .hero {
        background-position: center top -70px;
    }
}
/* Responsive */
@media (min-width: 2300px) {
    .hero {
        background-position: center top -130px;
    }
}

@media (max-width: 768px) {
	.nav-mobile {
		display: none;
    }
    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .featured-hotels {
        grid-template-columns: 1fr;
    }

    .advantages {
        grid-template-columns: 1fr;
    }

    .advanced-filters.active {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 24px;
    }

    .hero {
		padding: 60px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hotel-details {
        grid-template-columns: 1fr;
    }
}
