/* JackResort.com - Germany Casino Hotels Directory - Contemporary Design */
/* Color Palette: Emerald Green, Slate, Ivory, Copper */

:root {
    --jackresort-primary: #0d5257;
    --jackresort-secondary: #f5f3ef;
    --jackresort-accent: #b87333;
    --jackresort-light: #fcfbf8;
    --jackresort-dark: #1a2930;
    --jackresort-text: #2b3a42;
    --jackresort-text-light: #6f7e86;
    --jackresort-border: #d9d6d0;
    --jackresort-success: #2f8b45;
    --jackresort-shadow: rgba(13, 82, 87, 0.14);
}

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

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.75;
    color: var(--jackresort-text);
    background-color: #ffffff;
}

/* Header & Navigation */
.jackresort-header {
    background: linear-gradient(to bottom, var(--jackresort-primary) 0%, #0a4247 100%);
    box-shadow: 0 3px 20px var(--jackresort-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.jackresort-navbar {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 85px;
}

.jackresort-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.jackresort-logo img {
    height: 40px;
    margin-right: 14px;
}

.jackresort-nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.jackresort-nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}

.jackresort-nav-link:hover,
.jackresort-nav-link.active {
    background-color: var(--jackresort-accent);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}

.jackresort-mobile-toggle {
    display: none;
    background: var(--jackresort-accent);
    border: none;
    color: #ffffff;
    font-size: 29px;
    cursor: pointer;
    padding: 9px 15px;
    border-radius: 30px;
    line-height: 1;
}

/* Hero Section */
.jackresort-hero {
    background: linear-gradient(135deg, rgba(13, 82, 87, 0.91) 0%, rgba(26, 41, 48, 0.91) 100%),
                url('../images/hotel-grand-hyatt-berlin.jpg') center/cover;
    color: #ffffff;
    padding: 130px 28px;
    text-align: center;
}

.jackresort-hero-content {
    max-width: 920px;
    margin: 0 auto;
}

.jackresort-hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 26px;
    line-height: 1.18;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.35);
}

.jackresort-hero p {
    font-size: 23px;
    margin-bottom: 42px;
    opacity: 0.96;
}

.jackresort-btn {
    display: inline-block;
    padding: 17px 44px;
    background-color: var(--jackresort-accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.32);
}

.jackresort-btn:hover {
    background-color: #a56429;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 26px rgba(184, 115, 51, 0.42);
}

.jackresort-btn-outline {
    background-color: transparent;
    border: 2px solid var(--jackresort-accent);
    color: var(--jackresort-accent);
}

.jackresort-btn-outline:hover {
    background-color: var(--jackresort-accent);
    color: #ffffff;
}

/* Container */
.jackresort-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
}

.jackresort-section {
    padding: 85px 0;
}

.jackresort-section-title {
    text-align: center;
    margin-bottom: 65px;
}

.jackresort-section-title h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--jackresort-primary);
    margin-bottom: 17px;
}

.jackresort-section-title p {
    font-size: 19px;
    color: var(--jackresort-text-light);
    max-width: 730px;
    margin: 0 auto;
}

/* Hotel Cards */
.jackresort-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 34px;
    margin-top: 46px;
}

.jackresort-card {
    background: var(--jackresort-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 7px 26px var(--jackresort-shadow);
    transition: all 0.35s ease;
    border: 1px solid var(--jackresort-border);
}

.jackresort-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 14px 40px rgba(13, 82, 87, 0.22);
}

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

.jackresort-card-body {
    padding: 26px;
}

.jackresort-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 13px;
}

.jackresort-card-title {
    font-size: 23px;
    font-weight: 700;
    color: var(--jackresort-primary);
    margin-bottom: 5px;
}

.jackresort-card-location {
    color: var(--jackresort-text-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 13px;
}

.jackresort-rating {
    display: flex;
    gap: 3px;
    color: var(--jackresort-accent);
    font-size: 17px;
}

.jackresort-price-level {
    color: var(--jackresort-accent);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 2.5px;
}

.jackresort-card-description {
    color: var(--jackresort-text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 17px;
}

.jackresort-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 21px;
}

.jackresort-badge {
    display: inline-block;
    padding: 7px 15px;
    background-color: var(--jackresort-secondary);
    color: var(--jackresort-primary);
    border-radius: 18px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--jackresort-border);
}

.jackresort-badge-luxury {
    background-color: #fff5eb;
    color: var(--jackresort-dark);
    border-color: var(--jackresort-accent);
}

/* Cities Grid */
.jackresort-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
    gap: 26px;
    margin-top: 46px;
}

.jackresort-city-card {
    background: linear-gradient(135deg, var(--jackresort-primary) 0%, #0a4247 100%);
    color: #ffffff;
    padding: 44px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: 0 6px 22px var(--jackresort-shadow);
}

.jackresort-city-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 14px 38px rgba(13, 82, 87, 0.28);
}

.jackresort-city-card h3 {
    font-size: 27px;
    margin-bottom: 13px;
    color: #ffffff;
}

.jackresort-city-card p {
    font-size: 14px;
    opacity: 0.92;
    margin-bottom: 17px;
}

.jackresort-city-count {
    display: inline-block;
    background-color: var(--jackresort-accent);
    color: #ffffff;
    padding: 7px 17px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 600;
}

/* Filters */
.jackresort-filters {
    background-color: var(--jackresort-light);
    padding: 34px;
    border-radius: 16px;
    margin-bottom: 46px;
    box-shadow: 0 5px 20px var(--jackresort-shadow);
    border: 1px solid var(--jackresort-border);
}

.jackresort-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
}

.jackresort-filter-group {
    flex: 1;
    min-width: 210px;
}

.jackresort-filter-label {
    display: block;
    font-weight: 600;
    color: var(--jackresort-primary);
    margin-bottom: 9px;
    font-size: 15px;
}

.jackresort-filter-select,
.jackresort-filter-input {
    width: 100%;
    padding: 13px 17px;
    border: 1px solid var(--jackresort-border);
    border-radius: 8px;
    font-size: 15px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.jackresort-filter-select:focus,
.jackresort-filter-input:focus {
    outline: none;
    border-color: var(--jackresort-accent);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.jackresort-amenities-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.jackresort-chip {
    padding: 9px 17px;
    background-color: #ffffff;
    border: 2px solid var(--jackresort-border);
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.jackresort-chip:hover,
.jackresort-chip.active {
    background-color: var(--jackresort-primary);
    color: #ffffff;
    border-color: var(--jackresort-primary);
}

/* Footer */
.jackresort-footer {
    background: linear-gradient(to bottom, var(--jackresort-dark) 0%, #0f1a1f 100%);
    color: #ffffff;
    padding: 68px 0 34px;
    margin-top: 85px;
}

.jackresort-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 42px;
    margin-bottom: 42px;
}

.jackresort-footer-section h3 {
    font-size: 21px;
    margin-bottom: 21px;
    color: var(--jackresort-accent);
}

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

.jackresort-footer-links li {
    margin-bottom: 13px;
}

.jackresort-footer-links a {
    color: rgba(255, 255, 255, 0.83);
    text-decoration: none;
    transition: color 0.3s ease;
}

.jackresort-footer-links a:hover {
    color: var(--jackresort-accent);
}

.jackresort-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 31px;
    text-align: center;
    color: rgba(255, 255, 255, 0.73);
    font-size: 14px;
}

.jackresort-footer-bottom p {
    margin-bottom: 9px;
}

/* Cookie Consent */
.jackresort-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--jackresort-dark);
    color: #ffffff;
    padding: 26px;
    box-shadow: 0 -5px 20px var(--jackresort-shadow);
    z-index: 9999;
    display: none;
}

.jackresort-cookie-banner.show {
    display: block;
}

.jackresort-cookie-content {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.jackresort-cookie-text {
    flex: 1;
}

.jackresort-cookie-text a {
    color: var(--jackresort-accent);
    text-decoration: underline;
}

.jackresort-cookie-actions {
    display: flex;
    gap: 13px;
}

/* Booking Form */
.jackresort-booking-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--jackresort-light);
    padding: 44px;
    border-radius: 16px;
    box-shadow: 0 7px 26px var(--jackresort-shadow);
    border: 1px solid var(--jackresort-border);
}

.jackresort-form-group {
    margin-bottom: 26px;
}

.jackresort-form-label {
    display: block;
    font-weight: 600;
    color: var(--jackresort-primary);
    margin-bottom: 9px;
    font-size: 15px;
}

.jackresort-form-input,
.jackresort-form-textarea,
.jackresort-form-select {
    width: 100%;
    padding: 14px 17px;
    border: 1px solid var(--jackresort-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.jackresort-form-input:focus,
.jackresort-form-textarea:focus,
.jackresort-form-select:focus {
    outline: none;
    border-color: var(--jackresort-accent);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.jackresort-form-textarea {
    min-height: 130px;
    resize: vertical;
}

.jackresort-form-submit {
    width: 100%;
    padding: 17px;
    font-size: 17px;
}

.jackresort-alert {
    padding: 17px 22px;
    border-radius: 8px;
    margin-bottom: 26px;
}

.jackresort-alert-success {
    background-color: #d8f3df;
    color: #1a5e2c;
    border: 1px solid #bbe6c5;
}

.jackresort-alert-error {
    background-color: #fce9e9;
    color: #7a1f1f;
    border: 1px solid #f4c8c8;
}

.jackresort-mt-24 {
    margin-top: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .jackresort-nav-menu {
        display: none;
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--jackresort-primary);
        flex-direction: column;
        padding: 22px;
        gap: 0;
    }

    .jackresort-nav-menu.active {
        display: flex;
    }

    .jackresort-nav-link {
        padding: 15px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0;
    }

    .jackresort-mobile-toggle {
        display: block;
    }

    .jackresort-logo span {
        font-size: 18px;
    }

    .jackresort-hero h1 {
        font-size: 37px;
    }

    .jackresort-hero p {
        font-size: 19px;
    }

    .jackresort-section-title h2 {
        font-size: 33px;
    }

    .jackresort-hotels-grid,
    .jackresort-cities-grid {
        grid-template-columns: 1fr;
    }

    .jackresort-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .jackresort-booking-form {
        padding: 26px;
    }
}

/* Utility Classes */
.jackresort-text-center {
    text-align: center;
}

.jackresort-mt-22 {
    margin-top: 22px;
}

.jackresort-mb-22 {
    margin-bottom: 22px;
}

.jackresort-hidden {
    display: none;
}

