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

body {
  font-family: 'Georgia', serif;
  color: #2c2c2c;
  background: #fff;
}

/* HEADER */
header {
  background: #1a1a1a;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo,
a.logo {
  color: #e8c9a0;
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
}

a.logo span {
  color: #fff;
}

nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 30px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #e8c9a0;
}

/* PAGE HERO (podstrani) */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #3d2b1f 100%);
  color: #fff;
  text-align: center;
  padding: 70px 40px;
}

.page-hero .sub {
  color: #e8c9a0;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: normal;
}

.page-hero h1 em {
  color: #e8c9a0;
  font-style: normal;
}

/* SKUPNI CONTENT */
.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 70px 40px;
}

.line {
  width: 50px;
  height: 2px;
  background: #e8c9a0;
  margin-bottom: 24px;
}

/* BTN */
.btn {
  display: inline-block;
  background: #e8c9a0;
  color: #1a1a1a;
  padding: 13px 34px;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Georgia', serif;
}

.btn:hover {
  background: #d4b080;
}

/* CTA BOX */
.cta-box {
  background: #faf8f5;
  border: 1px solid #ede8e0;
  text-align: center;
  padding: 50px 40px;
  margin-top: 60px;
}

.cta-box p {
  color: #555;
  margin-bottom: 24px;
  font-size: 1rem;
}

/* STORITVE LIST */
.storitve-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.storitev {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #ede8e0;
}

.storitev:first-child {
  border-top: 1px solid #ede8e0;
}

.storitev-info h3 {
  font-size: 1.05rem;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.storitev-info p {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 580px;
}

.storitev-cena {
  color: #e8c9a0;
  font-size: 1.1rem;
  white-space: nowrap;
  margin-left: 30px;
}

/* O NAS */
.o-nas-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.o-nas-text {
  flex: 1;
  min-width: 260px;
}

.o-nas-text h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 10px;
}

.o-nas-text p {
  color: #555;
  line-height: 1.9;
  font-size: 0.93rem;
  margin-bottom: 14px;
}

.vrednote-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vrednote-list li {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* KONTAKT */
.kontakt-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.kontakt-info,
.kontakt-form {
  flex: 1;
  min-width: 260px;
}

.kontakt-info h2,
.kontakt-form h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 10px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list li {
  font-size: 0.93rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-list li span {
  color: #1a1a1a;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-list a {
  color: #555;
  text-decoration: none;
}

.info-list a:hover {
  color: #e8c9a0;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form input,
form select,
form textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  color: #2c2c2c;
  background: #faf8f5;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #e8c9a0;
}

form textarea {
  resize: vertical;
}

/* FOOTER */
footer {
  background: #111;
  color: #555;
  text-align: center;
  padding: 24px 40px;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

footer span {
  color: #e8c9a0;
}
