:root {
    --primary: #d4a373;
    --secondary: #e8d0d4;
    --accent: #b4857b;
    --bg-light: #fcfaf9;
    --text-main: #333333;
    --text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }

h1, h2, h3, .logo, .footer-logo { font-family: var(--font-heading); font-weight: 600; }
h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--accent); }
.text-center { text-align: center; }

/* Navbar */
.navbar {
    background: rgba(252, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 15px 0; border-bottom: 1px solid rgba(212, 163, 115, 0.2);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2rem; color: var(--accent); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Gumbi */
.btn {
    display: inline-block; padding: 12px 28px; border-radius: 30px;
    text-transform: uppercase; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 1.5px; transition: all 0.3s ease; cursor: pointer;
}
.btn-primary { background-color: var(--accent); color: #fff !important; border: 1px solid var(--accent); }
.btn-primary:hover { background-color: #a0746a; border-color: #a0746a; }
.btn-large { padding: 16px 36px; font-size: 1rem; }

/* Hero */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    position: relative; display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(252, 250, 249, 0.95) 0%, rgba(252, 250, 249, 0.4) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: var(--accent); }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: var(--text-muted); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { font-size: 1.1rem; margin-bottom: 20px; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 10px 15px 40px rgba(180, 133, 123, 0.15); }

/* Usluge */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.service-card {
    background: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    text-align: center; transition: transform 0.3s, box-shadow 0.3s; padding-bottom: 40px;
    cursor: pointer;
}
.service-card:hover { transform: translateY(-5px); }
.service-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 10px; margin-bottom: 20px; }

/* Cjenik */
.pricing-table {
    max-width: 600px; margin: 0 auto;
}
.price-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 0; border-bottom: 1px dashed var(--accent);
    font-size: 1.1rem;
}
.price-item:last-child { border-bottom: none; }
.price-item .price { font-weight: 600; color: var(--accent); }

/* Footer */
.footer { background: var(--secondary); color: var(--text-main); padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 20px; }
.footer-logo { font-size: 2rem; margin-bottom: 10px; font-style: italic; color: #fff;}

/* Modal CSS */
.modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    align-items: center; justify-content: center; padding: 20px;
    opacity: 0; transition: opacity 0.3s ease;
}
.modal.show-modal {
    display: flex; opacity: 1;
}
.modal-content {
    background: #fff; border-radius: 20px; max-width: 600px; width: 100%;
    padding: 40px; position: relative; text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: translateY(20px); transition: transform 0.3s ease;
    max-height: 90vh; overflow-y: auto;
}
.modal.show-modal .modal-content {
    transform: translateY(0);
}
.close-modal {
    position: absolute; top: 15px; right: 25px; font-size: 2.5rem;
    color: var(--text-muted); cursor: pointer; transition: color 0.3s;
    line-height: 1;
}
.close-modal:hover { color: var(--accent); }
.modal-content img {
    width: 100%; height: 280px; object-fit: cover; border-radius: 10px; margin-bottom: 25px;
}
.modal-content h2 { margin-bottom: 15px; font-size: 2rem; color: var(--accent); }
.modal-content p { font-size: 1.1rem; color: var(--text-main); line-height: 1.8; text-align: left;}
