:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --light: #f8fafc;
    --accent: #10b981;
    --maxwidth: 1000px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

header, .header {
    padding: 2rem 1rem;
    text-align: center;
    {{/* background: white; */}}
    color : white;
    border-bottom: 1px solid #e2e8f0;

    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(/images/pexels-pixabay-51965_1920x1080.jpeg );
    /* Set a specific height */
    /* height: 200px; */
    width: 100%;
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero {
    padding: 2rem 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.tagline {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;

    text-align: center;
    max-width: 800px;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    /* padding: 3rem 1rem; */
   /* padding: 1rem 1rem; */
    /* max-width: 1000px; */
    max-width: var(--maxwidth);
    margin: 1rem auto;
}

.note {
    display: block;
    text-align: end;
    padding: 0rem 1rem;
    font-size : 0.8rem;
    margin: 0 auto;
    max-width: var(--maxwidth);
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);

    display: flex;
    flex-direction: column; /* Stack children vertically */
}

.note_card {
    background: white;
    padding: 2rem 0.9rem 0.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    margin: 0rem 1rem;
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

.card h3, .note_card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.card p, .note_card p {
    font-size : 1.1rem;
    font-weight: 450;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
}

footer {
    text-align: center;
    padding: 4rem 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer_note {
    margin-top: auto;  /* Pushes link to the bottom */
    margin-bottom: 0;
    margin-left: auto; /* Pushes link to the right */
    margin-right: 0;
    text-align: right;
    flex-grow: 0;
    flex-shrink: 0;
    color : rgb(85, 26, 139);
    
}

.fit-text-img {
  height: 1em;          /* Forces height to match 1x the current font size */
  width: auto;          /* Maintains natural aspect ratio */
  object-fit: contain;  /* Prevents image distortion */
}

.inline-badge {
  display: inline-flex;  /* Keeps the strong tag inline while enabling flexbox */
  align-items: center;  /* Vertically centers image and text */
  gap: 0.4em;           /* Scalable spacing between icon and text */
  font-size: 0.85rem;    /* Whatever size you set, the image will match */
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 3.5rem;
    }

    .portrait-only {
    display: none !important; /* or inline-block, flex, grid, etc. */
  }
}

.portrait-only {
  display: block;
  margin: 0;
}

.primary-action {
    color : #05CE78; /*kickstarter green*/
    /* color: #1E40AF; emerald */
    /* color : #2563EB;
    color : #0D9488; */ 
}

.secondary-action {
    /* color : #1F2937; */
    color : #4B5563;
}

