/* Use Geist for UI text and Geist Mono for monospace elements */
:root{
  --bg: #ffffff;
  --fg: #111827;
  --muted: #6b7280;
  --purple: #4e1195;
}
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,body{
  color:var(--fg);
  font-family: 'Geist', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

h1,h2,h3{
  margin:0 0 .5rem 0;
  font-weight:700;
}

.lead{
  color:var(--muted);
  margin-top:.25rem;
}

/* Monospace usage */
code, pre, kbd, samp {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Courier New", monospace;
  background:#a2a2a3;
  padding:.25rem .4rem;
  border-radius:.25rem;
}

main {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(#e2f7f0, #95b7a9);
    display: flex  ;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 4rem;
}

header {
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: absolute;
    z-index: 1000;
}
.logo {
    max-width: 150px;
}
header ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
header ul li a {
    text-decoration: none;
    color: var(--fg);
    font-weight: 500;
    font-size: 1rem;
}
.content {
    position: relative;
    width: 100%;
    display: flex;
    padding: 2rem;
    justify-content: space-between;
    align-items: center;
}
.content .text {
    width: 100%;
    max-width: 600px;
}
.content .text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--purple);
}
.content .text h1 span {
    color: #256d5b;
}
.content .text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--fg);
    line-height: 1.5;
    font-weight: 500;
}
.btn-primary {
    background-color: #256d5b;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s;
}
.btn-primary:hover {
    background-color: #1e5546;
}
.btn-secondary {
    background-color: transparent;
    color: #256d5b;
    padding: 0.75rem 1.5rem;
    border: 1px solid #256d5b;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
}
.btn-secondary:hover {
    background-color: #f0fdf9;
}
.hero-image {
    position: relative;
}
.hero-image .slides {
    display: none;
}
.hero-image .slides-active {
    display: block;
}
.hero-image img {
    width: 100%;
    max-width: 1024px;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #f9f9f9;
    color: var(--muted);
    font-size: 0.875rem;
    position: relative;
    bottom: 0;
    width: 100%;
}


/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 2rem;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2rem;
    }
    .content {
        flex-direction: column;
        text-align: center;
    }
    .content .text {
        max-width: 100%;
    }
    .content .text h1 {
        font-size: 2.5rem;
    }
    .hero-image {
        margin-top: 2rem;
    }
}