@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

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

:root {
  --black:  #0d0d0d;
  --white:  #fafaf8;
  --mid:    #6b6b6b;
  --light:  #e8e8e4;
  --serif:  'Cormorant Garamond', serif;
}

body {
  font-family: var(--serif);
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  line-height: 1.7;
}

/* ================= HEADER (FIXED + CLEAN) ================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--light);
  padding: 0 5vw;
  z-index: 1000;
}

.nav-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--black);
}

/* NAVIGATION */

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--black);
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ================= MAIN ================= */

main {
  padding-top: 68px;
}

/* ================= SECTIONS ================= */

.section-block {
  padding: 5vw;
  border-bottom: 1px solid var(--light);
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 2rem;
}

/* ================= NEWS ================= */

.news-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light);
}

.news-date {
  font-size: 0.78rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ================= ABOUT ================= */

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 10px;
}

.about-photo img {
  width: 200px;
  border-radius: 8px;
}

.about-text {
  flex: 1;
}

.social-links {
  margin-top: 15px;
  font-size: 0.95rem;
}

.social-links a {
  text-decoration: none;
  color: #333;
}

.social-links a:hover {
  text-decoration: underline;
}

/* ================= FOOTER ================= */

footer {
  border-top: 1px solid var(--light);
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--mid);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .news-item {
    grid-template-columns: 90px 1fr;
  }
}

/* MOBILE NAV FIX */

@media (max-width: 700px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    right: 5vw;
    background: var(--white);
    border: 1px solid var(--light);
    padding: 15px;
    flex-direction: column;
    gap: 12px;
    width: 180px;
  }

  .nav-links.active {
    display: flex;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-photo img {
    width: 150px;
  }
}
