@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
:root{
    --title-font: "Familjen Grotesk", sans-serif;
    --text-font:   "Lato", sans-serif;
    --title-color: #0055B7;
    --text-color: #75787B;
}
html {
    scroll-behavior: smooth;
}
.navbar {
    background-color: #0055B7; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 1000; /* Ensure navbar is on top */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-logo {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navbar-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.about {
    padding: 8px;
}

.navbar-link:hover {
    background-color: #0561c9;
}

.about h1 {
    font-family: var(--title-font);
    font-size: 40px;
    text-align: center;
    color: var(--title-color);
}

.about p {
    font-family: var(--text-font);
    color: var(--text-color);
    font-size: 18px;
    display: flex;
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    word-spacing: 4px;
}

.hero_story {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    padding: 8px;
}

.hero_story h1 {
    font-size: 40px;
    text-align: center;
    margin: 10px;
    color: var(--title-color);
    font-family: var(--title-font);
}

.hero_story p {
    font-size: 18px;
    text-align: center;
    color: var(--text-color);
    font-family: var(--text-font);
    word-spacing: 4px;
    padding: 10px;	
}

.hero_story img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

.calltoaction {
    display: grid;
    grid-template-columns: auto auto;
}

.calltoaction img {
    max-width: 100%;
    height: 419.3px;
}

.calltoaction button {
    position: relative;
    width: auto;
    left: 80%;
    background-color: #0055B7;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100px;
}

.calltoaction button:hover {
    background-color: #0561c9;
}

.wish_stories {
    padding: 8px;
    text-align: center; /* Center the title and button */
}

.wish_story img {
    margin-right: 20px; /* Space between image and text */
    max-width: 50%; /* Ensure the image doesn't get too large */
    height: auto; /* Maintain aspect ratio */
}

.wish_stories h1 {
    font-size: 40px;
    text-align: center;
    margin: 10px;
    color: var(--title-color);
    font-family: var(--title-font);
}
.wish_story {
    display: flex; /* Use flexbox to align items side by side */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center the entire content vertically */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center the entire content horizontally */
    margin-bottom: 20px; /* Space between stories */
}   

.wish_story p {
    max-width: 50%; /* Ensure the paragraph does not get too wide */
    font-size: 18px; /* Maintain font size for readability */
    color: var(--text-color);
    font-family: var(--text-font);
    word-spacing: 4px;
}
.wish_stories button {
    background-color: #0055B7;  
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wish_stories button:hover {
    background-color: #0561c9;
}

.footer {
    background-color: #0055B7; /* Same background as navbar */
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;  
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.footer-link:hover {
    background-color: #0561c9; 
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 16px;
    color: white;
    font-family: var(--text-font);
}
.wish_stories p{
    font-family: var(--text-font);
    color:var(--text-color);
    font-size: 18px;
}
