/*
Theme Name: Second Sun Pro Fixed
Author: Robert Hočevar
Description: Profesionalna tema za solarij Second Sun - popravljena hero sekcija
Version: 2.1
*/

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #0a0a0a;
}

a { color: #d4af37; }

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1rem 1.5rem;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-brand {
    color: #d4af37;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 1.25rem;
}

.site-nav {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.site-nav a:hover { color: #d4af37; }

.hero {
    position: relative;
    background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.48), rgba(0,0,0,0.78)),
    url('https://www.second-sun.si/wp-content/uploads/2026/06/ee492d90-467d-4e88-b8a2-e81ec516084e.png');
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 7rem 2rem 4rem;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(transparent, #0f0f0f);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.hero-small {
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.logo-text {
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    line-height: 0.95;
    font-family: 'Playfair Display', serif;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #fff4bd, #d4af37, #9b6b1f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 35px rgba(212,175,55,0.18);
}

.tagline {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: #f4ead0;
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 9rem;
}

.btn-hero {
    display: inline-block;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-hero:hover,
.btn-hero-filled {
    background: #d4af37;
    color: #0a0a0a;
    border-color: #d4af37;
}

.btn-hero-filled:hover {
    background: #fff0a8;
    border-color: #fff0a8;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 1rem;
    background: #0f0f0f;
    border-bottom: 1px solid #d4af37;
    border-top: 1px solid #d4af37;
}

.feature { text-align: center; max-width: 250px; }
.feature h3 { color: #d4af37; font-size: 1.3rem; margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.feature p { color: #ccc; font-size: 0.9rem; }

.gallery-section { padding: 4rem 1rem; background: #0a0a0a; }
.gallery-title { text-align: center; font-size: 2.2rem; font-family: 'Playfair Display', serif; color: #d4af37; margin-bottom: 2.5rem; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; max-width: 1200px; margin: 0 auto; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; filter: grayscale(20%); transition: transform 0.4s, filter 0.3s; }
.gallery-item img:hover { transform: scale(1.02); filter: grayscale(0%); }

.container { max-width: 1200px; margin: 3rem auto; padding: 0 1rem; }
.card { background: #111; padding: 2rem; margin-bottom: 2rem; border-left: 3px solid #d4af37; }
.card h2 { color: #d4af37; font-family: 'Playfair Display', serif; margin-bottom: 1.5rem; font-size: 1.8rem; }
.info-grid { display: flex; flex-wrap: wrap; gap: 2rem; }
.info-block { flex: 1; min-width: 260px; background: #1a1a1a; padding: 1.5rem; }
.info-block h3 { color: #d4af37; margin-bottom: 1rem; font-family: 'Playfair Display', serif; }
.hours-list li { padding: 0.4rem 0; border-bottom: 1px solid #333; list-style: none; }
.package-price { font-size: 1.3rem; font-weight: bold; color: #d4af37; }
.benefits-card { background: #111; border-left-color: #d4af37; }
.happy-note { background: #d4af37; color: #0a0a0a; display: inline-block; padding: 0.2rem 1rem; font-weight: bold; margin-top: 0.8rem; }
.announcement-item { background: #1a1a1a; padding: 1rem; margin-bottom: 1rem; border-left: 2px solid #d4af37; }
.announcement-date { color: #d4af37; font-size: 0.8rem; font-weight: bold; }
.announcement-title { font-weight: bold; color: #fff; margin: 0.3rem 0; }
.placeholder-note { color: #ccc; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.8rem; background: #1a1a1a; border: 1px solid #333; color: #fff; margin-bottom: 1rem; font-family: inherit; }
.contact-form textarea { min-height: 130px; }
.contact-form button { background: #d4af37; color: #0a0a0a; padding: 0.9rem 1.2rem; border: none; font-weight: bold; cursor: pointer; }

.footer { background-color: #0a0a0a; color: #aaa; text-align: center; padding: 2rem 1rem; border-top: 2px solid #d4af37; margin-top: 3rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.social-links { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #333; }
.social-label { color: #d4af37; font-weight: 600; margin-right: 1rem; letter-spacing: 1px; }
.social-link { color: #f0f0f0; text-decoration: none; font-weight: 500; transition: color 0.3s; margin: 0 0.3rem; }
.social-link:hover { color: #d4af37; text-decoration: underline; }
.social-separator { color: #555; }
.footer-info p { margin: 0.5rem 0; line-height: 1.6; }
.footer-note { margin-top: 1rem; font-size: 0.85rem; color: #777; }

.cabins-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 1.5rem; }
.cabin-item { background: #1a1a1a; border-left: 3px solid #d4af37; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.cabin-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.cabin-image { width: 100%; height: 200px; object-fit: cover; display: block; }
.cabin-image-placeholder { width: 100%; height: 200px; background: #2a2a2a; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #d4af37; }
.cabin-info { padding: 1.2rem; }
.cabin-info h3 { color: #d4af37; font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; font-size: 1.3rem; }
.cabin-power, .cabin-price { font-size: 0.9rem; margin: 0.3rem 0; color: #ccc; }
.cabin-desc { margin-top: 0.5rem; font-size: 0.85rem; color: #aaa; line-height: 1.4; }

@media (max-width: 700px) {
    .site-header { position: absolute; padding: 0.8rem 1rem; }
    .site-header-inner { flex-direction: column; align-items: center; }
    .site-nav { gap: 0.75rem; justify-content: center; }
    .site-nav a { font-size: 0.78rem; }
    .hero { min-height: 92vh; padding: 8.5rem 1rem 3rem; }
    .hero-small { font-size: 0.78rem; letter-spacing: 2px; }
    .logo-text { letter-spacing: 2px; }
    .btn-hero { width: 100%; max-width: 300px; text-align: center; padding: 0.8rem 1rem; }
    .gallery-title { font-size: 1.6rem; }
    .card { padding: 1.3rem; }
    .card h2 { font-size: 1.4rem; }
    .social-links { display: flex; flex-direction: column; gap: 0.5rem; }
    .social-separator { display: none; }
}
