:root {
  --primary-color: #2e2e2e;
  --accent-color: #f0f4f8;
  --highlight-color: #000;

  --font-serif: 'EB Garamond', serif;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
}


.press-section{
	background: url('../assets/press-bg.jpg') center center / cover no-repeat;
}


.redesigned-press-layout {
	
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
}
.redesigned-press-layout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 18px
  );
  z-index: 0;
  pointer-events: none;
}
.press-block {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 2.5rem;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  width: 100%;
  text-align: center;
  font-family: 'EB Garamond', serif;
}

.press-block h2 {
  font-family: 'Unica One', serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.press-block p {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.press-block a {
  color: #000;
  text-decoration: underline;
}

.contact-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  font-family: 'Unica One', serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-btn:hover {
  background: #fff;
  color: #000;
}

.map-only {
  padding: 0;
  border: none;
  box-shadow: none;
}

.map-container {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 18px;
  height: 18px;
  background: red;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 0, 0, 0.25);
  animation: pulse-pin 1.6s infinite;
  z-index: 9;
}
/* Typography + layout boost */
.press-block h2 {
  font-family: 'Unica One', serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
  position: relative;
  color: #000;
}

.press-block h2::after {
  content: '';
  width: 80px;
  height: 3px;
  background: #000;
  display: block;
  margin: 1rem auto 0;
  opacity: 0.15;
}

/* Paragraph polish */
.press-block p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Email link aesthetics */
.press-block a[href^="mailto"] {
  font-weight: bold;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.press-block a[href^="mailto"]:hover {
  color: #444;
  border-bottom: 1px solid #000;
}

/* Button glow effect */
.contact-btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border: 2px solid #000;
  background-color: #000;
  color: #fff;
  font-family: 'Unica One', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: all 0.3s ease;
}

.contact-btn:hover::before {
  left: 0;
}

.contact-btn:hover {
  color: #000;
}

/* Shadowed Card */
.press-block {
	 background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.65));
   background: rgba(255, 255, 255, 0.85); /* was 0.97 or full white */
  backdrop-filter: blur(4px);
  padding: 3rem 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.press-block:hover {
  transform: translateY(-4px);
}

/* Map Section */
.map-container {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.map-container:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .press-block {
    padding: 2rem 1.2rem;
  }

  .press-block h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 320px;
  }
}
.redesigned-press-layout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.03) 0px,
    rgba(0, 0, 0, 0.03) 1px,
    transparent 1px,
    transparent 18px
  );
  z-index: 0;
  pointer-events: none;
}
@keyframes pulse-pin {
  0% { transform: translate(-50%, -100%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -100%) scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
  .press-block {
    padding: 1.5rem;
  }

  .map-container {
    height: 300px;
  }
}


footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--accent-color);
  color: #000;
  font-size: 0.9rem;
  border-top: 1px solid #ccc;
}
.footer-extra {
  margin-top: 0.5rem;
  font-size: 0.85rem;
    position: relative;
  z-index: 2;
}







/* Body text stays as Garamond */
body, p, li, span {
  font-family: 'EB Garamond', serif;
}

/* Headings use Playfair Display */
h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
}
/* ========== NAVBAR DESKTOP ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 0 2rem;
  height: 130px;
  position: relative;
  z-index: 1000;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
  padding-right: 2rem;
  height: 100%;
  width: 230px;
}

.logo-img {
  height: 90px;
  width: auto;
  padding-left: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
  position: relative;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #000;
  line-height: 1.6;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 1rem;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  right: 0;
  background-color: var(--highlight-color);
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1100;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  padding: 0.5rem 1rem;
 
}

.dropdown-content a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  display: block;
}
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
    background: #fff;
    position: relative;
    z-index: 9999;
  }

  .navbar-left {
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 42px;
    
    padding-left: 0;
  }

  .logo-text {
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
  
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 10001;
    margin-left: auto;
  }

  .burger div {
    width: 100%;
    height: 2px;
    background: #000;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100vw;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }

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

  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #000;
    display: block;
    text-align: left;
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .dropdown-content a {
    padding-left: 2rem;
    font-size: 0.95rem;
  }

  .dropdown-toggle::after {
    content: "▼";
    float: right;
    font-size: 0.7rem;
    margin-left: 0.5rem;
  }

  .dropdown.open .dropdown-toggle::after {
    content: "▲";
  }
}

/* ========== NAVBAR MOBILE ========== */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
    height: auto;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 10001;
    margin-left: auto;
  }

  .burger div {
    width: 100%;
    height: 2px;
    background: #000;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100vw;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }

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

  .dropdown.open .dropdown-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-left: 2px solid #eee;
  }

  .dropdown-content {
    position: relative;
    width: 100%;
    box-shadow: none;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 0;
  }

  .dropdown-content li {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown-content a {
    padding: 1rem 1.5rem;
    display: block;
    width: 100%;
    font-size: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-family: 'EB Garamond', serif;
  }

  .dropdown-toggle::after {
    content: "▼";
    margin-left: 0.5rem;
    font-size: 0.7rem;
    vertical-align: middle;
    color: #000;
    font-weight: bold;
  }

  .dropdown.open .dropdown-toggle::after {
    content: "▲";
  }
}