
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ff6b35; /* Orange background */
    color: #ffffff; /* Default body text: white */
    line-height: 1.6;
    text-align: justify;
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.inter-NCheadline {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 48;
  font-style: normal;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 0.75rem;
    background: #ff6b35;
    color: #ffffff;
    border-radius: 4px;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

.brand-first {
    font-weight: 100;
    font-style: italic;
}

header {
    background-color: transparent;
    padding: 1.25rem 0;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

header h1 {
    margin: 0;
    color: #000000; /* Headline color: black */
    font-size: 2rem;
}

nav {
    display: flex;
    gap: 1rem;
}

nav a {
    color: #000000; /* Nav text: black */
    text-decoration: none;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
}

nav a:focus,
nav a:hover {
    text-decoration: underline;
}

main {
    padding: 0;
}

#hero {
    padding: 4rem 1rem;
    text-align: center;
}

#hero h2 {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.25rem;
    margin: 0.25rem 0 0.5rem;
    color: #000000;
    font-weight: 400; /* normal weight for CREATIONS */
}

.brand-first {
    font-weight: 100; /* thin for norrtou */
    font-style: italic;
}

#hero p {
    font-size: 1.05rem;
    margin: 0.25rem 0;
    color: #ffffff; /* Body copy white */
}

.tagline {
    font-style: italic;
    color: #ffffff;
    font-size: 1rem;
}

.hero-illustration {
    margin-top: 1.5rem;
    max-width: 260px;
    height: auto;
}

#featured {
    padding: 3rem 1rem 4rem;
}

#featured h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #000000;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background-color: rgba(255,255,255,0.95); /* near white */
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.18s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card-illustration {
    margin-bottom: 0.2rem;
    max-width: 120px;
    height: auto;
}

.card h3 {
    font-size: 1.125rem;
    margin: 0.5rem 0;
    color: #000000;
}

.card p {
    margin-bottom: 1rem;
    color: #000000;
}

.read-more {
    display: inline-block;
    background-color: #ffffff; /* white button */
    color: #000000; /* black text */
    padding: 0.5rem 0.9rem;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
}

.read-more:hover {
    opacity: 0.9;
}

footer {
    background-color: transparent;
    color: #ffffff;
    text-align: center;
    padding: 2rem 0 3rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #hero h2 {
        font-size: 2rem;
    }

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

    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 0.25rem;
        gap: 0.5rem;
    }
}
