@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #2d6ea1 0%, #1a3b52 100%);
    min-height: 100vh;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.what-we-offer {
    font-size: 0.8cm;
    margin-top: 1cm;
    font-family: 'Krona One', sans-serif;
    margin-bottom: 0.5cm;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* logo used in navbar across pages */
.nav-brand { display: inline-flex; align-items: center; gap: 0.6rem }
.nav-logo { width: 36px; height: 36px; object-fit: contain; border-radius: 6px }

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.main-title {
    font-size: 4cm;
    font-weight: 700;
    margin-bottom: 0.5cm;

    /* animated text gradient (uses your existing colors) */  background: linear-gradient(90deg, #a4b7c0 0%, #e5e5e5 50%, #63c4d2 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* animation */
    animation: gradientMove 6s linear infinite;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-login {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-signup {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-signup:hover {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-get-started {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-learn-more {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    min-height: calc(100vh - 80px);
}

.hero-content {
    max-width: 800px;
}

/* Section container: center content and add horizontal spacing */
.section { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

.main-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #1e196b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10px;
}
.btn:hover {
    transform: scale(1.05);
    background: #ffffff;
    color: #4177A3;
    transition: transform 0.2s;
}


.offer-list {
    margin-top: 10px;
    text-align: center;
    font-size: 0.5cm;
    line-height: 1cm;
    font-family: 'MuseoModerno', cursive;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 4cm; /* keep mobile readable */
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
}

.quick-links-list {
    list-style: none;
    margin: 0.6rem 0 0 0;
    padding: 0;
    display: grid;
    /* use the same min width as features so cards look uniform */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    align-items: stretch;
}
/* add breathing room below quick links so footer doesn't butt up to cards */
.quick-links.section { margin-bottom: 2rem }
.quick-links-list li { display: block }
.quick-link {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.quick-link .ql-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg,#667eea,#764ba2);
    box-shadow: 0 6px 12px rgba(6,12,28,0.25);
}
.quick-link .ql-label { font-weight: 600 }
.quick-link:hover, .quick-link:focus {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 10px 24px rgba(8,15,30,0.35);
    outline: none;
}
.quick-link:focus { box-shadow: 0 0 0 3px rgba(118,75,162,0.16) }

/* Ensure feature cards stretch to the same height as grid rows */
.feature { height: 100% }

/* Features card layout: stable two-column layout (icon + content) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; align-items: stretch }
.feature { display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: start; background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); padding:16px; border-radius:12px; color: rgba(255,255,255,0.95); box-shadow: 0 6px 18px rgba(8,15,30,0.18); min-height:140px }
.feature .icon { width:54px; height:54px; display:inline-flex; align-items:center; justify-content:center; font-size:24px; border-radius:10px; background: linear-gradient(135deg,#667eea,#764ba2); box-shadow: 0 6px 12px rgba(6,12,28,0.25) }
.feature .feature-content{min-width:0}
.feature h3{margin:0 0 6px 0;font-family: 'Poppins', sans-serif;font-weight:700;font-size:1.05rem}
.feature p{margin:0;color:rgba(255,255,255,0.9);line-height:1.4; font-family: 'Merriweather', serif}

@media (max-width:640px){ .features-grid{ grid-template-columns: 1fr } .feature{ grid-template-columns: 54px 1fr } }

@media (max-width:420px){
    .quick-links-list { grid-template-columns: 1fr; gap:0.5rem }
    .quick-link { padding: 0.6rem }
}

.site-footer, .site-footer a { color: #ffffff }
.site-footer a { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.12) }
.site-footer a[href^="mailto:"] { color: #ffffff; font-weight:600 }
.site-footer {
    color: #ffffff;
    padding: 1.25rem 2rem;
    background: rgba(0,0,0,0.12);
}
.site-footer a { color: #ffffff }
.site-footer a { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.12) }
.site-footer a[href^="mailto:"] { color: #ffffff; font-weight:600 }
.site-footer a:hover, .site-footer a:focus { color: #ffffff; text-decoration-color: rgba(255,255,255,0.28); outline: none }

/* Footer inner layout and spacing */
.site-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
.site-footer .footer-inner > div { min-width: 180px }
.site-footer p { margin: 0 0 0.45rem 0; line-height: 1.45; color: inherit }

@media (max-width:640px){
    .site-footer { padding: 1rem }
    .site-footer .footer-inner { flex-direction: column; gap: 0.75rem; align-items: flex-start }
}

/* Make footer go edge-to-edge while keeping inner content centered */
.site-footer.section {
    max-width: 100%;
    margin: 0;            /* override .section centering */
    padding-left: 2rem;
    padding-right: 2rem;
}


