/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Jost', sans-serif;
}

/* Header and Navbar (Unchanged from the original) */
.header {
    background-image: url("https://prium.github.io/freya/v2.1.0/assets/img/about_header.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vh;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.navbar {
    position: sticky;
    width: 80%;
    z-index:10;
    background: transparent;
    opacity: 0.9;
    padding: 20px 30px; 
    margin: 1.25rem auto;
    background-color: #fbfcfe;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    border-radius: 1.375rem;
}

.navbar-brand {
    font-weight: 400;
    font-size: 20px;
    color: white !important;
    /* Force white color */
    background-color: black !important;
    /* Force black background */
    padding: 15px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar .nav-link {
    color: gray;
    margin-right: 15px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 0;
    letter-spacing: 1px;
}

/* .navbar .nav-link:hover {
    color: #f95a25;
    text-decoration: none;
} */

.social-links {
    display: flex;
    justify-content: center;

    /* margin-top: 10px; */
}

.social-links a {
    color: #333;
    margin-left: 15px;
    font-size: 14px;
    height: auto;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    top: 40%;
    z-index: 1000;
}

.hero h2 {
    font-size: 4rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    margin-top: 120px;
    position: absolute;
    text-transform: uppercase;
    word-spacing: 5px;
    letter-spacing: 10px;
    color: #ccc;
}

/* Blog Content */
.inspiration-section {
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
    text-align: left;
}

.category {
    text-transform: uppercase;
    font-size: 14px;
    color: grey;
    text-align: center;
}

h1 {
    font-size: 36px;
    margin: 10px 0;
    font-weight: 600;
    text-align: center;
}

.author-date {
    font-size: 14px;
    color: #888;
    text-align: center;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
    color: #444;
}

.image-container {
    text-align: center;
    margin: 15px 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-container {
    display: flex;
    gap: 10px;
}

.image-container .row50 {
    width: 50%;
    display: flex;
}

.footer {
    background-color: lightgrey;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Social Media Section */
.social-media {
    /* margin-bottom: 10px; */
}

.social-icon {
    color: black;
    margin: 0 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}


/* .social-icon:hover {
    color: #f39c12;
} */
 

.footer-black {
    background-color: black;
    color: #fff;
    padding: 50px 0;
    text-align: center;
    align-items: center;
}

.footer-black-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-black h5 {
    color: lightgrey;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: medium;
}

/* Responsive design for Mobile and Tablets */
@media (max-width: 768px) {

    .navbar {
        width: 100%;
        padding: 10px;
        margin: 0;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Blog section */
    h1 {
        font-size: 28px;
        margin: 5px 0;
    }

    .inspiration-section {
        padding: 15px;
    }

    .description {
        font-size: 14px;
    }

    /* Image container responsive */
    .image-container {
        flex-direction: column;
        /* Stack images on mobile */
    }

    .image-container .row50 {
        width: 100%;
        /* Full width for images */
    }

   
}