/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #000);
    color: #fff;
    overflow-x: hidden;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #d4a373;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 1s ease-out;
}
@keyframes slideDown {
    from {transform: translateY(-100%);}
    to {transform: translateY(0);}
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    width: 60px;
    transition: 0.4s;
}

.logo-container img:hover {
    transform: scale(1.1) rotate(8deg);
}

.logo-container h1 {
    color: #d4a373;
    font-weight: 800;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    padding: 8px 18px;
    border-radius: 30px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    border: 2px solid #d4a373;
    box-shadow: 0 0 15px #d4a373;
    color: #d4a373;
}

/* KONTAKT KARTICE */
.contact-section {
    padding: 60px 10%;
    text-align: center;
}

.contact-section h2 {
    font-size: 34px;
    color: #d4a373;
    margin-bottom: 20px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    background: #1a1a1a;
    border: 2px solid #d4a373;
    border-radius: 20px;
    padding: 20px;
    width: 260px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(212,163,115,0.6);
}

.contact-card img.icon,
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d4a373;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* STATISTIKA */
.stats-section {
    padding: 70px 10%;
    text-align: center;
}

.stats-section h2 {
    font-size: 32px;
    color: #d4a373;
    margin-bottom: 40px;
}

.stats-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-card {
    background: #1a1a1a;
    border: 2px solid #d4a373;
    border-radius: 20px;
    padding: 30px 40px;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212,163,115,0.5);
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #d4a373;
    display: block;
    margin-bottom: 10px;
}

/* TOP SALON */
.top-salon-section {
    padding: 70px 10%;
    text-align: center;
}
h2{
    color: #d4a373;
}

.top-salon-text {
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.8;
    opacity: 0.9;
}

.top-salon-images img {
    width: 420px;
    max-width: 100%;
    border-radius: 20px;
    border: 3px solid #d4a373;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    transition: 0.4s;
    cursor: pointer;
}

.top-salon-images img:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(212,163,115,0.6);
}

/* KONTAKT SLIKA */
.contact-image {
    padding: 70px 10%;
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    border: 3px solid #d4a373;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    transition: 0.4s;
    cursor: pointer;
}

.contact-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(212,163,115,0.6);
}

/* MAPA */
.map-section {
    padding: 70px 10%;
    text-align: center;
}

.map-section h2 {
    color: #d4a373;
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #d4a373;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}



/* FOOTER */
footer {
    background: #0d0d0d;             
    padding: 25px 10%;
    text-align: center;
    border-top: 2px solid #d4a373;   
    box-shadow: 0 -3px 10px rgba(0,0,0,0.5);
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

footer p {
    color: #d4a373;                  
    font-size: 14px;
    font-weight: 500;
    margin: 3px 0;
}

footer a {
    color: #fff;                   
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

footer a:hover {
    color: #d4a373;                  
    text-shadow: 0 0 5px #d4a373;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header { flex-direction: column; gap: 15px; text-align: center; }
    .nav-link { margin: 5px; }
    .contact-cards,
    .stats-cards { flex-direction: column; align-items: center; }
    .map-container { height: 300px; }
}