/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: #fff;
  color: #111;
}

/* Layout helpers */
.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

a{
  text-decoration: none;
  color: inherit;
}

a{
  transition: transform 0.2s ease, font-size 0.2s ease;
}

a:hover{
  text-decoration: none;
  transform: scale(1.06);
}

/* Header */
.site-header {
  padding-top: 24px;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  color: inherit;
  line-height: 1.05;
}

.brand-top {
  display: block;
  letter-spacing: 0.08em;
  font-size: 22px;
  font-family: Instrument Serif;
  padding-left: 30px;
}

.brand-bottom {
  display: block;
  letter-spacing: 0.08em;
  font-size: 22px;
  margin-top: 4px;
  font-family: Instrument Serif;
}

.brand,
.brand * ,
.page-title{
  cursor: default;
}

.nav {
  display: flex;
  gap: 32px;
  padding-top: 6px;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-family: Cormorant Garamond;
  font-size: 20px;
}

.header-line {
  border-top: 1px solid #111;
  margin-top: 14px;
}

/* ===== ABOUT PAGE ===== */
.about-page{
  padding: 130px 0 70px;
}

.about-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.75fr; /* levo / sredina / desno */
  gap: 48px;
  align-items: start;
}

/* LEFT PHOTO */
.about-photo{
  max-width: 420px;
}
.about-photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0; /* na slici je oštar ugao */
}

/* CENTER */
.about-main{
  padding-top: 70px; /* da naslov bude “niže” kao na slici */
  text-align: center;
}

.about-title{
  margin: 0 0 28px;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: clamp(28px, 3vw, 50px);
  cursor: default; /* strelica */
  font-family: Instrument Serif;
}

.about-text{
  margin: 0 auto;
  max-width: 520px;
  text-align: justify;
  line-height: 1.55;
  font-size: 16px;
  opacity: 0.9;
}

/* RIGHT CONTACT */
.about-contact{
  padding-top: 150px; /* spušta blok kao na slici */
  text-align: right;
  font-size: 15px;
}

.c-block{
  margin-bottom: 18px;
}

.c-label{
  font-style: italic; /* na slici deluje italic */
}

.c-sub{
  opacity: 0.9;
}

.c-ital{
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 6px;
}

.c-link{
  display: block;
  text-decoration: none;
  color: inherit;
  margin-top: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.c-link:hover{
  transform: scale(1.04); /* uvećanje umesto underline */
}



/* Footer */
.site-footer{
  margin-top: 80px;
  padding-bottom: 32px;
}

.footer-line{
  border-top: 1px solid #111;
  margin-bottom: 24px;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: Cormorant Garamond;
}

/* Left side */
.footer-brand{
  line-height: 1.4;
}

.footer-name{
  font-size: 16px;
  letter-spacing: 0.08em;
}

.footer-city{
  font-size: 16px;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-top: 4px;
}

/* Right side */
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-contact a{
  font-size: 16px;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px){

  /* HOME / O MENI u meniju */
  .nav-link{
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  /* Naslov stranice */
  .page-title{
    font-size: 22px;
  }
}

@media (max-width: 360px){

  /* HOME / O MENI u meniju */
  .nav-link{
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  /* Naslov stranice */
  .page-title{
    font-size: 22px;
  }

  .brand-top {
  font-size: 18px;
}

.brand-bottom {
  font-size: 18px;
}
}

@media (max-width: 768px){
  .footer-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer-contact{
    text-align: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .about-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-photo{
    max-width: 520px;
    margin: 0 auto;
  }

  .about-main{
    padding-top: 10px;
  }

  .about-text{
    text-align: left;
  }

  .about-contact{
    padding-top: 10px;
    text-align: center;
  }

  .c-link{
    display: inline-block;
    margin: 6px 10px 0;
  }
}

@media (max-width: 980px){
  .about-contact{
    display: none;
  }
}