/* =========================
   Base / Typography
========================= */

body,html {
  
  margin: 0;
  min-height: 100vh;
  height:100%;
  display: flex;
  flex-direction: column;

  background-color: #231f20;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.cinzel-font {
  font-family: "Cinzel", serif;
  font-weight: 700;
}

h1 {
  display: flex;
  justify-content: center;
}

/* =========================
   Navbar / Header
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0d0d0d;
}
.navbar ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #0d0d0d;
  font-family: "Cinzel", serif
}



/* =========================
   Navigation
========================= */



ul li a {
  display: inline-block;
  padding: 0.75rem 1.5rem;

  color: #d6d1c4;
  background-color: #0d0d0d;

  
  text-decoration: none;
  letter-spacing: 0.08em;

  transition: all 0.3s ease;
  margin: 2px;
}

ul li a:hover {
  color: #f5f2e8;
  border-color: #888;
  box-shadow: 0 0 8px rgba(200, 200, 200, 0.2);
}

/* =========================
   Buttons
========================= */

.home-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;

  color: #d6d1c4;
  background-color: #0d0d0d;

  border: 1px solid #2a2a2a;
  text-decoration: none;

  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;

  transition: all 0.3s ease;
  width: 30%;
  margin: auto;
}

.home-button:hover {
  color: #f5f2e8;
  border-color: #888;
  box-shadow: 0 0 8px rgba(200, 200, 200, 0.2);
}

/* =========================
   Layout Helpers
========================= */

.about {
  margin: 100px;
  text-align: center;
}

.header {
  margin: auto;
  display: flex;
  justify-content: center;
  font-weight: 600;
  text-align: center;
}

.error-page {
  margin: auto;
  width: 70%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  font-weight: 600;
}

/* =========================
   Intro
========================= */

.intro {
  text-align: center;
  padding: 2rem;
  color: #bbb;
}

/* =========================
   Grid / Gallery
========================= */

.grid {
  column-count: 5;
  column-gap: 1.5rem;
  padding: 2rem;
}

.card {
  break-inside: avoid;
  margin-bottom: 1.5rem;

  background: #111;
  border: 1px solid #222;

  transition: transform 0.2s ease, border 0.2s ease;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 1rem;
}

.card h2 {
  font-family: "Cinzel", serif;
  margin: 0 0 0.5rem;
}

.card p {
  color: #aaa;
  font-size: 0.9rem;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #555;
}

.card:hover img {
  filter: grayscale(0%);
}

/* =========================
   Lightbox
========================= */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;

  z-index: 999;
  background: rgba(0, 0, 0, 0.9);

  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
}

/* =========================
   Blog
========================= */

.blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.blog-intro {
  text-align: center;
  margin-bottom: 3rem;
  color: #bbb;
}

.blog-intro h2 {
  font-family: "Cinzel", serif;
}

.post {
  background: #111;
  border: 1px solid #222;

  padding: 1.5rem;
  margin-bottom: 2rem;

  transition: transform 0.2s ease, border 0.2s ease;
}

.post:hover {
  transform: translateY(-3px);
  border-color: #444;
}

.post h3 {
  font-family: "Cinzel", serif;
  margin-top: 0;
}

.meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;

  color: #d6d1c4;
  text-decoration: none;

  border-bottom: 1px solid #333;
  padding-bottom: 2px;

  transition: all 0.2s ease;
}

.read-more:hover {
  color: #fff;
  border-color: #888;
}

/* =========================
   About Page
========================= */

.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;

  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-text h1 {
  font-family: "Cinzel", serif;
  margin-bottom: 2rem;
  max-width: 700px;
 
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #ddd;
  max-width: 700px;
}

.about-side {
  border-left: 1px solid #222;
  padding-left: 2rem;
  color: #aaa;
}

.about-side h3 {
  font-family: "Cinzel", serif;
  color: #ddd;
  margin-top: 0;
}

/* =========================
   Home / Hero
========================= */

.home {
  position: relative;
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  overflow: hidden;
}

.background {
  position: absolute;
  inset: 0;
  background: url("images/IMG_2483.jpg") center/cover no-repeat;
  filter: brightness(0.4);
  z-index: 0;
}

.hero {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 1s ease forwards;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}

.tagline {
  color: #aaa;
  margin-bottom: 2.5rem;
}

/* =========================
   Links
========================= */

.home-links a {
  display: inline-block;
  margin: 0 1rem;

  color: #d6d1c4;
  text-decoration: none;

  border-bottom: 1px solid #333;
  padding-bottom: 4px;

  transition: all 0.2s ease;
}

.home-links a:hover {
  color: #fff;
  border-color: #888;
}

/* =========================
   Media Queries
========================= */

@media (max-width: 768px) {
  .grid {
    column-count: 1;
  }

  .card-content {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-side {
    border-left: none;
    border-top: 1px solid #222;
    padding-left: 0;
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .home-links a {
    display: block;
    margin: 0.5rem 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*==========================
  Guest Book
============================*/


.guestbook {
 height: calc(100vh - 60px);

}

.guestbook iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}