* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0D0D0F;
  color: #E6E6E6;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #C6A664;
  transition: color 0.2s ease;
}

a:hover {
  color: #8B1A1A;
}


header {
  background: #0D0D0F;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #8A8C91;
  position: relative;
  z-index: 10;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
  display: block;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: bold;
  display: block;
  padding: 0.25rem 0;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around; 
  width: 35px;       /* wider */
  height: 25px;      /* taller */
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  margin-left: 1rem; 
}

.menu-toggle .bar {
  height: 4px;
  width: 100%;
  background-color: #C6A664;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger animation that doesn't work because reasons */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}


.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: -1;
}

.hero-content {
  position: relative;
  color: #C6A664;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem 3rem;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(198,166,100,0.2);
  backdrop-filter: blur(6px);
  animation: fadeIn 2.5s ease-in-out;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #E6E6E6, #C6A664, #8B1A1A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(0,0,0,0.8),
               0 0 30px rgba(198,166,100,0.4);
  margin-bottom: 0.5rem;
}

.hero-tagline {
  color: #dcdcdc;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  font-style: italic;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hero-button {
  padding: 0.75rem 1.5rem;
  background-color: #8B1A1A;
  color: #E6E6E6;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.hero-button:hover {
  background-color: #C6A664;
  color: #0D0D0F;
}


.preview-sections {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.preview-card {
  background: #1A1A1A;
  padding: 2rem;
  border-radius: 8px;
  flex: 1;
  min-width: 260px;
  text-align: center;
  transition: transform 0.3s;
}

.preview-card:hover {
  transform: translateY(-5px);
}

/* Art Gallery */
.art-gallery {
  padding: 3rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}


footer {
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid #8A8C91;
  font-size: 0.9rem;
  color: #8A8C91;
  flex-shrink: 0;
  background: #0b0c0e;
}

main {
  flex: 1 0 auto;
}


@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
  }

  .nav-menu.active {
    max-height: 500px; 
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0;
    text-align: center;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 0.25rem 0;
  }
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
  background: #0b0c0e;
  color: #cfd3da;
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid #2a2d32;
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

footer a {
  color: #b4c9ff;
  text-decoration: none;
}

footer a:hover {
  color: #e0ecff;
  text-decoration: underline;
}


a {
  color: #d0d3d8;          
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover,
a:focus {
  color: #f2f5f8;              
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
  text-decoration: none;
}


.btn {
  background: linear-gradient(180deg, #2b2e33 0%, #1a1c1f 100%);
  border: 1px solid #51565c;
  color: #e2e5ea;
  border-radius: 6px;
  padding: 8px 14px;
  transition: all 0.2s ease;
}

.btn:hover {
  background: linear-gradient(180deg, #383c41 0%, #222428 100%);
  border-color: #7b8087;
  color: #ffffff;
}

/* === to overwrite the WP engine === */
.wp-news-wrapper {
  max-width: 1100px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.wp-news-main {
  min-width: 0;
}

.wp-news-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.wp-news-item {
  margin-bottom: 2.5rem;
}

.wp-news-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.wp-news-title a {
  color: inherit;
}

.wp-news-title a:hover {
  text-decoration: underline;
}

.wp-news-meta {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.wp-news-excerpt {
  margin-bottom: 0.5rem;
}

.wp-news-sidebar {
  border-left: 1px solid #2a2d32;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.wp-news-sidebar-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.wp-news-sidebar-block {
  margin-bottom: 1.75rem;
}

.wp-news-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp-news-sidebar-list li {
  margin-bottom: 0.4rem;
}


@media (max-width: 768px) {
  .wp-news-wrapper {
    grid-template-columns: 1fr;
  }

  .wp-news-sidebar {
    border-left: none;
    border-top: 1px solid #2a2d32;
    padding-left: 0;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
}
/* === because wordpress ignored the earlier code === */

.wp-main {
}

.wp-news-wrapper {
  max-width: 1100px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2.7fr) minmax(0, 1.3fr);
  gap: 2.5rem;
}

.wp-news-main {
  min-width: 0;
}

.wp-news-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
}


.wp-news-item {
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  background: #131416;
  border: 1px solid #2a2d32;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.wp-news-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.wp-news-title a {
  color: inherit;
}

.wp-news-title a:hover {
  text-decoration: underline;
}

.wp-news-meta {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.9rem;
  font-style: italic;
}

.wp-news-excerpt,
.wp-news-content {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}


.wp-news-sidebar {
  border-left: 1px solid #2a2d32;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.wp-news-sidebar-block {
  margin-bottom: 1.75rem;
}

.wp-news-sidebar-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.wp-news-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wp-news-sidebar-list li {
  margin-bottom: 0.4rem;
}

/* Breadcrumbs */
.wp-news-breadcrumbs {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.9rem;
}

.wp-news-breadcrumbs a {
  color: #d0d3d8;
}

.wp-news-breadcrumbs a:hover {
  text-decoration: underline;
}

.wp-news-breadcrumb-sep {
  margin: 0 0.4rem;
}

.wp-news-breadcrumb-current {
  color: #f2f5f8;
}


.wp-news-back {
  margin-top: 1.25rem;
}

.wp-news-backlink {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


@media (max-width: 768px) {
  .wp-news-wrapper {
    grid-template-columns: 1fr;
  }

  .wp-news-sidebar {
    border-left: none;
    border-top: 1px solid #2a2d32;
    padding-left: 0;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
}


.wp-news-header-image {
  margin: -1.5rem -1.75rem 1.25rem; 
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.wp-news-header-image img {
  display: block;
  width: 100%;
  height: auto;
}


.wp-news-header-link {
  display: block;
}

.wp-news-content p {
  margin: 1rem 0;
  text-indent: 2em;   
}

.wp-news-content p:first-child {
  margin-top: 0;
}

.wp-news-content p:last-child {
  margin-bottom: 0;
}


