:root {
    --accent: #4a7342;
    --accent-hover: #689160;
    --accent-light: #A5B367;
    --light: #fdfdfd;
    --gray: #f2f2f2;
    --mid: #606060;
    --dark: #1a1a1a;
    --dark-hover: #4a7342;
    --white: #ffffff;
    --content-width: 1200px
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    background: var(--light);
}

.container {
    position: relative;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1rem;
}
.container.centered
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

header {
    background: var(--dark);
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  font-size: 1.5rem;
  color: var(--white);
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--content-width);
}

/* NAVIGATION -------------------- */
nav a {
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    padding: 1.5rem;
    transition: background 0.3s;
}

nav a:hover {
    background: var(--accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1rem;
}

/* HERO Section -------------------- */
section.hero {
    padding: 2rem 2rem 3rem;
    background-image: url(graphics/hero-background.jpg);
    background-position: bottom;
    background-size: cover;
    height: fit-content;
    color: #ffffff;
}
.hero-logo {
    width: 100%;
    max-width: 512px;
    aspect-ratio: 1;
}
.hero h2 {
    margin: 0;
    text-shadow: 0 0 16px #000000;
}

.alt {
    background: var(--gray);
}

.hero {
    background: var(--accent);
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    max-width: 800px;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.button-grid button {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    background: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

button:hover {
    background: var(--accent);
}

button i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.button {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--accent);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}
.button:hover
{
    background-color: var(--accent-hover);
}

h2
{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    /* max-width: 800px; */
    text-align: center;
}

.divider {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem 0;
    font-size: 48px;
    text-align: center;
    color: var(--accent);
}
.line {
    width: 80%;
    height: 2px;
    background-color: var(--dark);
    border-radius: 100px;
}

section.dark {
    background: var(--dark);
    color: var(--white);
}

section.dark h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 5rem;
}

section.dark a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
section.dark a:hover {
    color: var(--accent-hover);
}
section.dark a:visited {
    color: var(--accent-light);
}
section.dark a:active {
    color: var(--accent-light);
}

.border-container {
    position: relative;
    flex: 1 1 400px;
    min-width: 250px;
    padding: 4rem 1.5rem 1rem;
    font-size: 1.25rem;
    text-align: center;
    border: solid 2px var(--accent);
    border-radius: 16px;
}

.icon-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    width: 72px;
    height: 72px;
    font-size: 3rem;
    background-color: var(--dark);
    border: solid 2px var(--accent);
    border-radius: 100px;
}

/* Poster -------------------- */
.poster-content
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;;
    width: 100%;
}
.poster-row
{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}
.poster-item
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.poster-item .button
{
    width: fit-content;
}

img.poster
{
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.15s;
}
img.poster:hover
{
    transform: translateY(-0.5rem);
}

/* Workshop List -------------------- */
/* .workshop-list {
    display: flex;
    flex-direction: column;
}
.workshop-list-header {
    padding: 1rem;
    color: var(--white);
    font-size: 1.25rem;
    background-color: var(--mid);
    border-top: solid 1px var(--dark);
    border-left: solid 1px var(--dark);
    border-right: solid 1px var(--dark);
}
.workshop-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border: solid 1px var(--dark);
    transition: background-color 0.3s;
}
.workshop-item + .workshop-item {
    border-top: none;
}

.workshop-item:hover {
    background-color: var(--white);
}

.item-header {
    font-weight: 600;
}
.workshop-item .button {
    max-width: fit-content;
} */

/* Pricing Table -------------------- */
/* .pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-top: 2rem;
    font-size: 1rem;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #ccc;
    padding: 1rem;
    vertical-align: top;
}

.pricing-table th {
    background-color: #f0f0f8;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
}

.pricing-table td {
    background-color: #ffffff;
}

.pricing-table td:nth-child(1) {
    background-color: #dce8f2;
}
.pricing-table td:nth-child(2) {
    background-color: #fdf4cc;
}
.pricing-table td:nth-child(3) {
    background-color: #f8e0ea;
}

.pricing-table small {
    color: #555;
} */

.split-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.sub-text {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--dark);
    opacity: 0.6;
}

.contact-form
{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 1.5rem 1rem;
    max-width: 720px;
    font-size: 1.25rem;
    background-color: var(--light);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
.contact-copy
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.contact-header
{
    font-size: 32px;
    font-weight: 700;
    color: #3C4858;
    text-align: center;
}
.contact-text
{
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--dark);
    opacity: 0.6;
}
form
{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
label
{
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: var(--dark);
}
label.row
{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}
input, textarea
{
    font-size: 16px;
    padding: 0.5rem;
}
textarea::placeholder
{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #BFCAD8;
    /* opacity: 0.3; */
}
form button
{
    padding: 12px 18px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    background-color: var(--accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
form button:hover
{
    background-color: var(--accent-hover);
}

.map-container {
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    height: 540px;
    /* max-width: 58%; */
    width: 100%;
    border: solid 2px var(--dark);
    border-radius: 16px;
    overflow: hidden;
}
.map-location {
    box-sizing: border-box;
    width: fit-content;
    padding: 1rem 1.5rem;
    width: 100%;
    color: var(--white);
    text-align: center;
    background-color: var(--dark);
}
.map-location h3 {
    margin-top: 0;
}
.map {
    width: 100%;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--dark);
    color: var(--white);
}

@media (min-width: 768px) {
    section {
        padding: 4rem 3rem;
    }

    .hero-tagline {
        margin: 0;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    .nav-toggle {
        display: block;
    }
    .nav-toggle i {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--dark);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
    }

    .nav-links a {
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    /* Posters -------------------- */
    img.poster
    {
        max-width: 100%;
    }

    /* Pricing Table -------------------- */
    .pricing-table {
    border: 0;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tr {
    display: block;
    margin-bottom: 2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
  }

  .pricing-table td {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: left;
    border: none;
    border-bottom: 1px solid #eee;
    background-color: var(--white);
  }

  .pricing-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
  }

  .pricing-table td:last-child {
    border-bottom: none;
  }

  .pricing-table td:nth-child(1) {
    background-color: #dce8f2;
  }
  .pricing-table td:nth-child(2) {
    background-color: #fdf4cc;
  }
  .pricing-table td:nth-child(3) {
    background-color: #f8e0ea;
  }

    #sib-container {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
        height: auto;
    }

    .map-container {
        max-width: 100%;
    }
}