:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --background-color: #f5f6fa;
    --text-color: #2c3e50;
    --border-radius: 8px;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    --max-width: 1400px;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top);
    background: var(--primary-color);
    z-index: 2000;
    pointer-events: none;
}

/* Login Page Styles */
.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.login-container h1 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.login-container input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.login-container button {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.login-container button:hover {
    background-color: #2980b9;
}

.error {
    color: #e74c3c;
    margin-top: 1rem;
}

/* Main Page Styles */
header {
    margin-top: 0rem;
    text-align: center;
    background-color: #fff;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 1rem 0;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    transform: translateZ(0);
    background: rgba(44, 62, 80, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

nav a.active {
    background-color: rgba(255,255,255,0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

main {
    max-width: var(--max-width);
    margin: 0rem auto;
    padding: 0 2rem;
    flex: 1;
    width: 100%;
}

section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: var(--max-width);
    width: 100%;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h2 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    padding: 1rem;
    background: var(--background-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-item .stars,
.info-item .nights,
.info-item .booking-source {
    margin-top: auto;
    text-align: center;
    padding-top: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.info-item .stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.info-item .nights,
.info-item .booking-source {
    font-size: 0.9rem;
}

h3 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

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

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 16/9;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.2s ease;
}

.image-item:hover {
    transform: scale(1.05);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

footer {
    text-align: center;
    padding: 1rem;
    background: rgba(44, 62, 80, 0.65);
    color: white;
    margin-top: auto;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    nav {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        margin: 0;
        white-space: nowrap;
    }
    
    main {
        padding: 0 1rem;
    }
    
    section {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    h2 i, h3 i {
        font-size: 0.9em;
    }

    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }

    .countdown-item:last-child {
        display: none;
    }

    .flight-details {
        gap: 1rem;
    }

    .flight-times {
        gap: 1rem;
    }

    .packing-grid {
        gap: 1rem;
    }

    .costs-grid {
        gap: 1rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.swipe-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    border-radius: var(--border-radius);
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 1rem;
    z-index: 1001;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.lightbox-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav.hidden {
    display: none;
}

@media (max-width: 768px) {
    .lightbox img {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
    
    h2 i, h3 i, .time-label i, .passenger-item i, .flight-route i {
        font-size: 0.9em;
    }
}

.flight-info-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.flight-details {
    background: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    gap: 2rem;
}

.flight-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.flight-route {
    font-weight: bold;
    color: var(--primary-color);
}

.flight-number {
    color: var(--secondary-color);
}

.flight-route i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.flight-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.time-item {
    background: white;
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

.time-label {
    font-size: 0.9rem;
    color: #666;
}

.time-label i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.time-value {
    font-weight: bold;
}

.passenger-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.passenger-item {
    margin-bottom: 0.5rem;
}

.passenger-item i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .flight-times {
        grid-template-columns: 1fr;
    }
}

/* Packliste Styles */
.packing-list {
    margin-top: 2rem;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.packing-category {
    background: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.packing-category h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.packing-category ul {
    list-style: none;
    padding: 0;
}

.packing-category li {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
}

.packing-category li:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.packing-category li i {
    margin-right: 0.5rem;
    color: #ccc;
    transition: color 0.2s ease;
}

.packing-category li.checked {
    background-color: rgba(46, 204, 113, 0.1);
}

.packing-category li.checked i {
    color: #2ecc71;
}

@media (max-width: 768px) {
    .packing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Wetter Widget Styles */
.weather-widget {
    background: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.weather-info img {
    width: 64px;
    height: 64px;
}

.weather-details {
    display: flex;
    flex-direction: column;
}

.weather-info-item {
    background: linear-gradient(135deg, #71aef3 0%, #dceeff 100%);
}
.weather-info-item h3,
.weather-info-item h3 i {
    color: #ffffff;
}

.temperature {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1; 
}

.description {
    color: #666;
    text-transform: capitalize;
}

/* Location Styles */
.location {
    margin-top: 2rem;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 1rem;
}

.address {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.address h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.map-container {
    border-radius: var(--border-radius);
    background: var(--background-color);
    padding: 1.5rem;
}

.map-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    color: var(--text-color);
    text-decoration: none;
}

.map-link:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: scale(1.02);
}

.map-link i {
    font-size: 1.2rem;
}

.map-link i.fa-apple {
    color: #000;
}

.map-link i.fa-google {
    color: #4285F4;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s;
}

.map-link:hover .map-overlay {
    background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .location-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.info-item .stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.archive-item {
    background: #f7f8fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    display: block;
    box-shadow: var(--box-shadow);
}

.archive-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.archive-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.archive-content p {
    margin: 0.25rem 0;
    color: var(--text-color);
}

/* Kosten Styles */
.costs {
    margin: 2rem 0;
}

.costs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.costs-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.costs-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.costs-item h3 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.costs-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.costs-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.8rem;
}

.costs-row:first-child {
    font-size: 1rem;
}

.costs-row:last-child {
    border-bottom: none;
}

.costs-row.total {
    font-weight: bold;
    border-top: 2px solid #eee;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.costs-row.discount {
    color: #e74c3c;
}

.costs-row.final {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
    border-top: 2px solid #eee;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.costs-payment {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.label {
    font-size: 0.8rem;
    color: #666;
}

.date-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.date {
    white-space: nowrap;
    width: 185px;
}

/* Countdown Styles */
.countdown {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }

    .countdown-item:last-child {
        display: none;
    }

    .flight-info-container {
        gap: 1rem;
    }
}

.luggage-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.luggage-item {
    margin-bottom: 0.5rem;
    color: #666;
}

.luggage-item i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.world-map-container {
    margin: 2rem auto;
    max-width: 800px;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0;
}

.vacation-marker {
    cursor: pointer;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.vacation-marker:hover {
    transform: scale(1.2);
}

.vacation-marker circle {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.vacation-marker text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    pointer-events: none;
}

#world-map-wrapper {
    width: 100%;
    max-width: 100vw;
    margin: 1.5rem auto 1rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#world-map-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
}
#country-name {
    text-align: center;
    font-size: 1.2rem;
    color: #2c3e50;
    min-height: 2em;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 1.5rem auto;
}

.visited {
    fill: #40c9a2 !important;
    stroke: #2c3e50;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.visited:hover {
    opacity: 1;
}

#map-tooltip {
    position: fixed;
    display: none;
    z-index: 99999;
    background: #fff;
    color: #2c3e50;
    padding: 0.7em 1.2em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.15);
    font-size: 1rem;
    min-width: 160px;
    max-width: 300px;
    line-height: 1.4;
    transition: opacity 0.15s;
    opacity: 0;
}
#map-tooltip.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
#map-tooltip a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
    display: inline-block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}
#map-tooltip a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
@media (max-width: 600px) {
    #map-tooltip {
        font-size: 0.95rem;
        min-width: 120px;
        max-width: 90vw;
        padding: 0.5em 0.7em;
    }
}

@media (max-width: 600px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    header {
        padding: 0;
    }
    header h1 {
        font-size: 1.4rem;
        padding: 0.5rem 0;
    }
    #world-map-wrapper,
    #world-map-wrapper svg {
        max-width: 100vw;
        width: 100vw;
    }
    .archive-grid {
        max-width: 100vw;
        width: 100%;
        box-sizing: border-box;
    }
    #country-name {
        width: 100%;
        max-width: 100vw;
        font-size: 1rem;
        margin: 0 0 1rem 0;
    }
}

.archive-thumb {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: block;
}

.rent_car-rental {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2rem;
    max-width: var(--max-width);
    margin: 0 auto 2rem auto;
}
.rent_car-rental-row {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: flex-start;
}
.rent_car-details-card,
.rent_pickup-card {
    flex: 1 1 0;
    min-width: 0;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.rent_car-image-inside {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 0;
    box-shadow: none;
    background: none;
    display: block;
    border-radius: var(--border-radius);
}
.rent_car-details-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: #222;
}
.rent_car-type {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}
.rent_car-specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    width: 100%;
}
.rent_spec-item {
    background: #fff;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    min-width: 110px;
    flex: 1 1 40%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    text-align: left;
}
.rent_spec-label {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.rent_spec-value {
    color: #222;
    font-weight: 500;
    font-size: 1.05rem;
}
.rent_pickup-card {
    flex: 1 1 0%;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    min-width: 220px;
}
.rent_pickup-location h3 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}
.rent_pickup-location p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.1rem;
}
.rent_opening-hours, .rent_extras {
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.7rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.rent_pickup-instructions {
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.rent_opening-hours h4, .rent_pickup-instructions h4 {
    color: #333;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}
.rent_opening-hours p, .rent_pickup-instructions p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.rent_extras h4 {
    color: #333;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}
.rent_extras p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.rent_extras-paid {
    font-weight: normal;
    color: #888;
    font-size: 0.95em;
    margin-left: 0.5em;
}
@media (max-width: 1100px) {
    .rent_car-rental-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .rent_car-details-card, .rent_pickup-card {
        max-width: 100%;
        min-width: 0;
    }
    .rent_car-image-inside {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    .rent_car-rental {
        padding: 1rem;
    }
}

.rent_supplier {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.7rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    width: 100%;
}
.rent_supplier-logo {
    height: 40px;
    width: auto;
    display: block;
}
.rent_supplier-name {
    font-weight: bold;
    color: #222;
    font-size: 1.1rem;
}

.rent_opening-hours,
.rent_extras,
.rent_pickup-instructions {
    width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
    height: 420px;
}
.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(44,62,80,0.25) 0%, rgba(52,152,219,0.25) 100%);
    z-index: 1;
}
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.hero-text {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(44,62,80,0.25);
    padding: 0 2rem;
    z-index: 2;
    pointer-events: auto;
}
.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 3rem;
    letter-spacing: 1px;
}
.hero-text p {
    font-size: 1.3rem;
    font-weight: 400;
}
@media (max-width: 900px) {
    .hero {
        height: 480px;
    }
    .hero-image {
        height: 480px;
    }
    .hero-content {
        height: 100%;
        padding: 0 8px;
    }
    .hero-text {
        padding-top: 70px;
    }
    .hero-text h1 {
        font-size: 1.5rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }
    .hero-text p {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        text-shadow: 0 2px 8px rgba(44,62,80,0.35);
    }
}
@media (max-width: 600px) {
    .hero {
        height: 360px;
    }
    .hero-image {
        height: 360px;
    }
    .hero-text {
        padding-top: 60px;
    }
    .hero-text h1 {
        font-size: 1.15rem;
        margin-top: 0.7rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .hero-subtitle {
        display: none;
    }
}
.hero--fullwidth {
    position: relative;
    width: 100vw;
    min-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 2rem;
    padding: 0;
    overflow: hidden;
    background: #000;
    border-radius: 0;
    box-shadow: none;
}
.hero-image {
    width: 100vw;
    min-width: 100vw;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-avatars {
    position: absolute;
    right: 32px;
    bottom: 12px;
    display: flex;
    gap: 12px;
    z-index: 3;
    pointer-events: auto;
}
.hero-avatar {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.18);
    background: #fff;
    transition: transform 0.18s;
    outline: none;
    cursor: pointer;
}
.hero-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}
.hero-avatar:hover,
.hero-avatar:focus {
    transform: scale(1.07);
    z-index: 10;
}

.hero-avatar::after {
    content: attr(data-name);
    position: absolute;
    left: 50%;
    bottom: 110%;
    transform: translateX(-50%) scale(0.95);
    background: rgba(44,62,80,0.97);
    color: #fff;
    padding: 7px 16px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.18);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s, transform 0.18s;
    z-index: 20;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.hero-avatar:hover::after,
.hero-avatar:focus::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
.hero-avatar:active::after {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
}
@media (max-width: 900px) {
    .hero-content {
        height: auto;
        padding: 0 8px;
    }
}
