* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #1d4d2b;
    --cascadia-blue: #3b7ea1;
    --black: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --a-bit-tan: #edd691;
    --dark-tan: #a17b0b;
    --darker-tan: #574309;
}

.rosarivo-regular {
  font-family: "Rosarivo", cursive;
  font-weight: 400;
  font-style: normal;
}

.rosarivo-regular-italic {
  font-family: "Rosarivo", cursive;
  font-weight: 400;
  font-style: italic;
}

body {
    font-family: 'Rosarivo', serif;
    color: var(--black);
    line-height: 1.7;
    font-size: 18px;
}

nav {
    background: var(--white);
    padding: 0.5rem 0.5rem;
    border-bottom: 2px solid var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    display: flex;
    align-items: center;
    font-size:1.7rem;
    font-weight:500;
    text-decoration: none;
}

nav .logo img {
    height: 100px;
    width: auto;
}

nav .tagline {
    font-size: 0.95rem;
    color: var(--dark-tan);
    margin-left: 2.5rem;
    font-style: regular;
}

nav ul {
     flex-direction: row;
     display: flex;
     list-style: none;
     gap: 1rem;
    justify-content: center;
 }


nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--dark-tan);
}
/* ---- begin button - */
a.button {
    padding: 15px 15px;
    border-radius: 15px;
    color: var(--black);
    font-weight: 900;
    background-color: var(--a-bit-tan);
    text-decoration: none;
}

/* ---- end button -------- */

.featured-section {
    background: var(--light-gray);
    padding: 4rem 0;
    border-bottom: 2px solid var(--black);
}

.featured-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
    text-align: center;
    border: none;
    padding: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-tile {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.featured-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--dark-tan);
}

.featured-tile a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tile-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-tan) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-content {
    padding: 1.5rem;
}

.tile-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.tile-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: center;
}

.hero-image {
    background: linear-gradient(45deg, var(--dark-tan) 15%, var(--light-gray) 85%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-text {
    padding: 4rem;
    margin-bottom:auto;
    background: var(--white);
}

.hero-text ul {

    list-style: none;

}

.hero-text li {

    margin-bottom:1rem;

}

.hero-text span {

    font-weight: 800;

}

.hero-text h1 {
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.hero-text a {

    margin-top:5rem;
    font-weight:800;
    color:var(--dark-tan);
    text-decoration:none;
}

.hero-text a:hover {

    margin-top:5rem;
    font-weight:800;
    color:var(--forest-green);
    text-decoration:none;
}

.tagline-large {
    font-size: 0.92rem;
    color: var(--dark-tan);
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro {
    font-size: 1.0rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    line-height: 1.7;
}

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

.section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
    margin-top:1.5rem;
    color: var(--black);
    border-bottom: 3px solid var(--forest-green);
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--darker-tan);
}

.tastesof {
    font-style:italic;
    font-size:1rem;
    color: var(--dark-tan);
    padding: 0.5rem;
}

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

.link-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--black);
}

.link-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
}

.link-card a {
    color: var(--dark-tan);
    text-decoration: none;
    font-weight: 600;
}

.link-card a:hover {
    color: var(---dark-tan);
}

.resources-list {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.resource-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-left: 4px solid var(--dark-tan);
    border-radius: 4px;
}

.resource-item:last-child {
    margin-bottom: 0;
}

.resource-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.resource-item p {
    margin-bottom: 1rem;
    color: #555;
}

.resource-item a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--forest-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.resource-item a:hover {
    background: var(--cascadia-blue);
}

footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.current-page {
    color: var(--dark-tan) !important;
    font-weight: 700;
}

.current-page:hover {
    color: var(--forest-green) !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    nav .container {
        flex-direction: row;
        gap: 0.25rem;
        padding: 0.5rem 0.5rem;
    }

    nav .logo {

        font-size:1.2rem;
    }

    nav ul {
        flex-direction: row;
        gap: 0.55rem;
        text-align: center;
        font-size:1.0rem;
    }

    nav .tagline-large {
        display:none;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tile-image {
        height: 180px;
    }

    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-text {
        padding: 2rem;

    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.0rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 400px) {

    nav .container {

    flex-direction: column;
    gap: 0.25rem;


    }
    .featured-grid {
        gap: 1rem;
    }

   .featured-tile {
        padding: 1rem;
    }

    .tile-image {
        height: 120px;
    }

    .tile-content h3 {
        font-size: 1.1rem;
    }

    .tile-content p {
        font-size: 0.9rem;
    }
}
