/* Luxury, minimalistic, cool, aesthetic homepage styles */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #f6fafd 0%, #f9e7ff 100%);
    color: #222;
    margin: 0;
    padding: 0;
}
.sticky-header {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-bottom: 1.5px solid #e3a1c2;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 12px 24px;
}
.logo-title span {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #7b6eea;
    letter-spacing: 1.5px;
}
.lang-switch a {
    color: #7b6eea;
    text-decoration: none;
    margin-left: 12px;
    font-weight: 600;
    opacity: 0.8;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.lang-switch a.active, .lang-switch a:hover {
    color: #e3a1c2;
    opacity: 1;
}
.hero {
    min-height: 60vh;
    background: linear-gradient(120deg, #e3a1c2 0%, #7b6eea 100%), url('https://cf.bstatic.com/xdata/images/hotel/max1024x768/509073073.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.hero-content {
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 38px 32px 32px 32px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 32px #7b6eea44;
    animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #7b6eea;
    margin: 0 0 18px 0;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.hero-content .desc {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 28px;
}
.hero-content .reserve-btn {
    display: inline-block;
    background: linear-gradient(90deg,#e3a1c2 0%,#7b6eea 100%);
    color: #fff;
    font-size: 1.18rem;
    font-weight: 600;
    padding: 16px 44px;
    border-radius: 30px;
    margin: 18px 0 0 0;
    text-decoration: none;
    box-shadow: 0 2px 12px #7b6eea;
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s;
}
.hero-content .reserve-btn:hover {
    background: linear-gradient(90deg,#7b6eea 0%,#e3a1c2 100%);
    box-shadow: 0 4px 18px #e3a1c2;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7b6eea;
    margin: 38px 0 16px 0;
    letter-spacing: 0.5px;
}
.luxury-divider {
    width: 48px;
    height: 2px;
    background: #e3a1c2;
    border-radius: 1px;
    margin: 14px auto 14px auto;
    box-shadow: none;
}
.luxury-btn {
    background: #7b6eea !important;
    color: #fff !important;
    box-shadow: none !important;
    border-radius: 24px;
    border: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 14px 36px;
    transition: background 0.2s;
}
.luxury-btn:hover {
    background: #e3a1c2 !important;
    color: #fff !important;
}
.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 24px auto;
    max-width: 420px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px #7b6eea22;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.amenities-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.08rem;
    color: #7b6eea;
    background: #f6fafd;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 1px 4px #7b6eea22;
    font-family: 'Montserrat', Arial, sans-serif;
}
.amenities-list li .icon {
    font-size: 1.45rem;
    color: #e3a1c2;
    min-width: 32px;
    text-align: center;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
    justify-content: center;
}
.gallery img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 12px #7b6eea22;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px #e3a1c2;
}
footer {
    background: #7b6eea;
    color: #fff;
    padding: 38px 0 18px 0;
    margin-top: 60px;
    border-top: none;
}
footer a { color: #e3a1c2; text-decoration: underline; }
@media (max-width: 900px) {
    .header-inner, .container { padding-left: 4vw; padding-right: 4vw; }
    .hero-content { padding: 28px 8vw 24px 8vw; }
    .gallery img { width: 38vw; height: 24vw; min-width: 120px; min-height: 80px; }
}
@media (max-width: 600px) {
    .header-inner, .container { padding-left: 2vw; padding-right: 2vw; }
    .hero-content { padding: 18px 2vw 16px 2vw; }
    .logo-title span { font-size: 1.2rem; }
    .gallery img { width: 90vw; height: 54vw; min-width: 90vw; min-height: 54vw; }
    .amenities-list { max-width: 98vw; border-radius: 10px; box-shadow: 0 2px 8px #7b6eea22; }
    .amenities-list li { font-size: 0.98rem; padding: 8px 8px; border-radius: 8px; }
    .amenities-list li .icon { font-size: 1.1rem; min-width: 24px; }
    .section-title { font-size: 1.1rem; }
}

/* Header styles from rezervacija.php moved to global luxury-homepage.css */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(39, 71, 126, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px) saturate(1.15);
}
/* Reservation form radio button alignment */
.form-field .key-takeover-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
}
.form-field .key-takeover-options label {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #7b6eea;
}
.form-field .key-takeover-options input[type="radio"] {
    margin-right: 4px;
    accent-color: #7b6eea;
    width: 18px;
    height: 18px;
}
.site-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.28rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.nav-links {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 12px;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background: #c9a860;
    border-radius: 2px;
    transition: transform 0.25s ease;
}
.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.lang-switch {
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.lang-switch.active {
    background: #c9a860;
    border-color: #c9a860;
    color: #ffffff;
}
@media (max-width: 640px) {
    .site-header-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links {
        justify-content: center;
    }
}
