/* FONTS (Heading: Cambria; Paragraph: Calibri Light) */
/* Colors:                   */
    /* Primary:      #1d4ed8 */
    /* Secondary:    #0f172a */
    /* Accent 1:     #60a5fa */
    /* Accent 2:     #e5e7eb */



/* Header Style (same for every page) */
body {
    margin: 0;
    line-height: 1.6;
}
header {
    background-color: #1d4ed8;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
}
#logo {
    margin: 10px;
    width: 150px;
    height: auto;
    justify-self: center;
    box-shadow: 0px 5px 5px #0f172a;
    border: 5px solid #0f172a;
}
#navigation {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    list-style: none;
    list-style-type: none;
    align-items: center;
    justify-items: center;
    margin: 50px 50px 50px 0;
    padding: 0;
}

#navigation li {
    margin-left: 20px;
    padding: 10px 15px;
    border: 2px solid #60a5fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#navigation li:hover {
    background-color: #60a5fa;
    transform: scale(1.05);
}

#navigation a {
    text-decoration: none;
    font-family: "Cambria", serif;
    color: #e5e7eb;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px #0f172a;
}

#nav {
    padding: 5px;
    border: 5px solid #60a5fa;
}
a {
    text-decoration: none;
    font-weight: inherit;
    color: inherit;
    font-size: 25px;
    font-family: "Cambria", serif;
    color: #e5e7eb;
    text-shadow: 2px 2px 4px #0f172a;
}

.password-page {
    font-family: "Calibri Light", sans-serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #0f172a;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #e5e7eb;
    border-radius: 10px;
    margin-bottom: 40px;
    border-bottom: 8px solid #1d4ed8;
}

.hero h1 {
    font-family: "Cambria", serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1d4ed8;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background-color: #60a5fa;
    padding: 35px;
    border-radius: 12px;
    color: #0f172a;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.8);
    transition: transform 0.3s ease;
}

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

.card h2 {
    font-family: "Cambria", serif;
    margin-top: 0;
    border-bottom: 2px solid #0f172a;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.tips {
    padding: 30px;
    background-color: #0f172a;
    color: #e5e7eb;
    border-radius: 10px;
    border-left: 10px solid #60a5fa;
}

.tips h2 {
    font-family: "Cambria", serif;
    color: #60a5fa;
    margin-top: 0;
}

.tips ul {
    font-size: 1.2rem;
    padding-left: 25px;
    margin-bottom: 0;
}

.tips li {
    margin-bottom: 15px;
}

/* Footer Style (same for every page) */
footer {
    background-color: #1d4ed8;
    text-align: center;
    color: #e5e7eb;
    border: 5px solid #1d4ed8;
}
#feeter {
    padding: 20px;
    font-family: "Calibri Light", sans-serif;
    font-size: 15px;
    border: 5px solid #0f172a;
    border-radius: 50%;
    margin: 5px;
    background-color: #60a5fa;
    color: #0f172a;
    
}


/* Main Content Style (different for each page) STRONG PASSWORDS PAGE */

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    #navigation {
        flex-direction: column;
    }
}