@font-face {
  font-family: 'Lora';
  src: url('./fonts/lora/Lora-Regular.woff2') format('woff2'),
       url('./fonts/lora/Lora-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('./fonts/lora/Lora-Italic.woff2') format('woff2'),
       url('./fonts/lora/Lora-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Lora';
  src: url('./fonts/lora/Lora-Medium.woff2') format('woff2'),
       url('./fonts/lora/Lora-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('./fonts/lora/Lora-MediumItalic.woff2') format('woff2'),
       url('./fonts/lora/Lora-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Lora';
  src: url('./fonts/lora/Lora-SemiBold.woff2') format('woff2'),
       url('./fonts/lora/Lora-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('./fonts/lora/Lora-SemiBoldItalic.woff2') format('woff2'),
       url('./fonts/lora/Lora-SemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Lora';
  src: url('./fonts/lora/Lora-Bold.woff2') format('woff2'),
       url('./fonts/lora/Lora-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('./fonts/lora/Lora-BoldItalic.woff2') format('woff2'),
       url('./fonts/lora/Lora-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/Inter-Light.woff2') format('woff2'),
       url('./fonts/inter/Inter-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/Inter-LightItalic.woff2') format('woff2'),
       url('./fonts/inter/Inter-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/Inter-Regular.woff2') format('woff2'),
       url('./fonts/inter/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/Inter-Italic.woff2') format('woff2'),
       url('./fonts/inter/Inter-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/Inter-Medium.woff2') format('woff2'),
       url('./fonts/inter/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/Inter-MediumItalic.woff2') format('woff2'),
       url('./fonts/inter/Inter-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/Inter-Bold.woff2') format('woff2'),
       url('./fonts/inter/Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter/Inter-BoldItalic.woff2') format('woff2'),
       url('./fonts/inter/Inter-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}


/* Custom Cursor */
.cursor {
  pointer-events: none;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
}

.cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  transform-origin: center;
  mix-blend-mode: difference;
  z-index: 10001;
}

.cursor__ball circle {
  fill: #0033ff;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-color: #D9D9D9;
  display: flex;
  flex-direction: column;
  font-family: serif;
  padding: 30px 60px 0px 60px;
  box-sizing: border-box;
  color: #535353;
  cursor: none;
}


/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #535353;
  font-family: 'Lora', serif;
  font-style: italic;
  margin: 0;
}

.header a{
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: #535353;
  text-decoration: none;
  cursor: none;
}

.logo {
  height: 3rem;
  margin-right: auto;
}

.logo-placeholder {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin-right: auto;
  visibility: hidden;
}

/* homepage main content */
.main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main a {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
}

.main img {
  display: block;
  max-width: 85%;
  height: auto;
}

/* Main two-column layout */
.open-call-main {
  flex: 1;
  display: flex;
  gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 0.9rem;
}

.open-call-main a {
  color: #535353;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: none;
}

.column {
  flex: 1;
}

.left {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.4;
}

.right {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

/* Footer with flexbox */
.footer {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.footer img {
  height: 3rem;
  width: auto;
  margin-bottom: 30px;
}
