/* GENERAL */
body {
    font-family: "komet", sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    text-align: center;
}

header.top {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #ddd; /* top border */
}

header.top h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

header.top h2 {
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

header.top h3 {
  font-size: 16px;
  margin-top: 5px;
  color: #666;
}

/* NAVIGATION */
nav {
    text-align: center;
    padding: 20px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}
nav {
  border-bottom: 1px solid #ddd;
}

/* HEADER (used on technique pages) */
header.top {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

header.top h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

header.top h2 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

header.top h3 {
    font-size: 16px;
    margin-top: 5px;
    color: #666;
}

/* INTRO (home page) */
.intro {
    padding: 40px 20px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.intro h1 {
    margin-bottom: 10px;
}

/* THUMBNAILS (home page) */
.thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.thumbnails img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.thumbnails img:hover {
    transform: scale(1.05);
}

/* TABLE SECTION (home page) */
.table-section {
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 2px solid #333;
}

th, td {
    padding: 12px;
    border: 1px solid #333;
}

th {
    background: #eee;
}

/* PHOTO SECTION (technique pages) */
.photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 800px) {
    .photo-section {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

.photo-section img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 20px auto 10px auto;
    border-radius: 8px;
}

.photo-section figcaption {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.photo-section p {
    margin-top: 10px;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.7;
    font-size: 17px;
    color: #333;
}

/* VIDEO */
video {
    display: block;
    margin: 0 auto;
}

/* BACK LINK */
.back-link {
    margin: 40px 0;
    display: block;
}

/* CONTACT PAGE */
.contact-page,
.contact-page p,
.contact-page h2 {
    text-align: center;
}

.bottom-contact {
    text-align: center;
    margin-top: 60px;
    padding: 20px 0;
    color: #333;
}

.center-text {
    text-align: center;
}
body {