/* 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/projects_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; /* Increased padding on the left and right */
    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;
}

.social-links {
    display: flex;
    justify-content: center;

    /* margin-top: 10px; */
}

.social-links a {
    color: #333;
    margin-left: 15px;
    font-size: 14px;
}

.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;
}

.inspiration-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    border-bottom: 1px solid lightgray;
}

.inspiration-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.text-content {
    flex: 1;
}

.inspiration-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-top: 0;
}

.location {
    font-size: 16px;
    color: #777;
    margin-top: 4px;
}

.inspiration-image {
    width: 60%;
    height: auto;
    border-radius: 4px;
}

.image-description {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-top: 20px; /* Added margin to create space below the image */
    margin-left: auto; /* Aligns with the image naturally */
    max-width: 60%; /* Matches the width of the image */
    padding-left: 5px; /* Adds a bit of left padding */
}

.read-more {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.inspiration-image2{
    width: 30%;
    height: auto;
    border-radius: 4px;
}

.last{
    border-bottom: none;
}

.footer {
    background-color: lightgrey;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-icon {
    color: black;
    margin: 0 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.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;
}
