/* ================================ */
/* Version 1.0.0 Updates 2026-08-13 */
/* ================================ */

body{margin:0;font-family:Garamond,serif;background:#181818;color:#eee;line-height:1.6}
header{background:#111;padding:1rem 2rem;position:sticky;top:0}
nav a{color:#d8c28a;text-decoration:none;margin-right:18px}
navsubmenu a{color:#8FD3FF;text-decoration:none;margin-right:18px}
.hero{padding:20px 20px;text-align:center;background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7)),#333}
.hero h1{font-size:5rem;margin:.2rem}
.subhero h1{font-size:2rem;margin:.2rem}
.btn{display:inline-block;background:#b89b5e;color:#111;padding:12px 20px;border-radius:4px;text-decoration:none;font-weight:bold}
section{max-width:1000px;margin:auto;padding:60px 20px}
.cardgrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}
.card{background:#242424;padding:20px;border-radius:8px}
footer{background:#111;padding:20px;text-align:center;color:#aaa}
.placeholder{border:2px dashed #666;height:220px;display:flex;align-items:center;justify-content:center;color:#888;margin-bottom:15px}

/* 1. Establish the positioning context */
.kk-image-container {
  position: relative;
  display: inline-block; /* Keeps container the same size as the image */
}

/* 2. Ensure the image behaves predictably */
.kk-image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.kk-half-image-container img {
  display: block;
  width: 40%;
  height: auto;
  place-items: center;
}

/* 3. Position the title absolutely over the container */
.kk-image-title {
  position: absolute;
  font-size: 10vw; /* clamp(12px, 10vw, 48px); */
  top: 15%;            /* Push down to vertical center */
  left: 60%;           /* Push right to horizontal center */
  transform: translate(-0%, -0%); /* Perfect centering alignment */
  color: black;        /* Ensure readability */
  margin: 0;           /* Strip default spacing */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adds contrast */
}

/* 3. Position the title absolutely over the container */
.kk-image-subtitle {
  position: absolute;
  font-size: 5vw; /* clamp(8px, 10vw, 24px); */
  top: 25%;            /* Push down to vertical center */
  left: 60%;           /* Push right to horizontal center */
  transform: translate(-0%, -0%); /* Perfect centering alignment */
  color: black;        /* Ensure readability */
  margin: 0;           /* Strip default spacing */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adds contrast */
}

/* ======================================================================= */
/* About page CSS
/* ======================================================================= */

/* About page container Setup */
.about-card-grid {
  display: grid;
  /* Left column fits its content exactly; right column takes 100% of remaining space */
  grid-template-columns: max-content 1fr;
  gap: 0px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #181818;
  align-items: start;
}

/* Base Card Styling */
.about-right-card {
  background-color: #181818;
  /*border: 1px solid #ddd;
  border-radius: 8px;*/
  padding: 16px;
}

/* Image Setup */
.about-left-card {
  background-color: #181818;
  display: block;
  max-width: 100%;
  height: auto;
}

.about-card-grid a {
    color: #8FD3FF;
}

.about-card-grid a:visited {
    color: #66BFFF;
}

.about-card-grid a:hover {
    color: #FFFFFF;
}


/* About page - responsive mobile layout */

/* Contact page - responsive mobile layout */

@media screen and (max-width: 700px) {

    .about-card-grid {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .about-left-card {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 0 20px 0;
        text-align: center;
    }

    .about-left-card img {
        display: block;
        width: 100%;
        max-width: 350px;
        height: auto;
        margin: 0 auto;
    }

    .about-right-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 30px 15px;
    }
}
/*

/* ======================================================================= */
/* Blog page CSS
/* ======================================================================= */

.blog-text .card > img {
    display: block;
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 15px auto;
    margin-left: 0;
    margin-right: auto;
}

.blog-text a {
    color: #8FD3FF;
}

.blog-text a:visited {
    color: #66BFFF;
}

.blog-text a:hover {
    color: #FFFFFF;
}

/* Font sizing for block posts */

.blog-post p {
    font-size: 1.2rem;
}

/* Blog Index formatting */

.blog-index-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.blog-index-item img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
}
.blog-index-info h3 {
    margin: 0;
}
.blog-index-info p {
    margin: 4px 0 8px;
}
@media screen and (max-width: 700px) {
    .blog-index-item {
        gap: 12px;
    }
    .blog-index-item img {
        width: 100px;
        height: 70px;
    }
}

.blog-index a {
    color: #8FD3FF;
}

.blog-index a:visited {
    color: #66BFFF;
}

.blog-index a:hover {
    color: #FFFFFF;
}

/* NAVSUBMENU link formatting */

navsubmenu a {
    color: #8FD3FF;
}

navsubmenu a:visited {
    color: #66BFFF;
}

navsubmenu a:hover {
    color: #FFFFFF;
}

