body {
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ebebeb;
}

section a{
    color:darkorange;
    text-decoration: none;
}

section a:hover{
    text-decoration: underline;
}

header {
    position: relative;
    min-height: 50vh; /* Adjust the value as per your design */
    overflow: hidden; /* To ensure the image doesn't spill out */
     line-height: 0.8; /* A common choice for headers */
}





.header-image {
    width: 100%;
    min-height: 500px !important; /* Adjust this value as needed */
    background-size: cover;
    background-position: center;
    position: relative;
}




.header-title {
    font-family: 'Urbanist', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Adjust as needed for visibility */
}

.header-title .name {
    font-size: 2.5em;

    /* Additional styles for 'Penny Goldstone' */
}

.header-title .title {
    font-size: 2.5em; /* Adjust as needed */
    color:#ebebeb; /* Adjust as needed */
    /* Additional styles for 'Fashion Editor' */
}


section {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.4em;
    padding: 20px;
    text-align: center;

     max-width: 700px;
    margin: auto;
}

#portfolio .portfolio-items {
    /* Styling for portfolio items */
}

#contact form {
    max-width: 700px;
    margin: auto;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

#contact button {
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

#formMessage {
    margin-top: 10px;
}

footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 20px;
}

.footer .brand-logos {
    /* Styling for brand logos */
}

@media screen and (max-width: 700px) {
    .header-title .name, .header-title .title {
        font-size: 1.5em; /* Adjust for smaller screens */
    }

    #contact form {
        width: 90%;
        padding: 10px;
    }


     .brand-logos {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
    }

}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns */
    gap: 10px; /* Adjust the gap as needed */
    justify-items: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    padding: 20px;
}

.brand-logos img {
    width: 100%;
    max-width: 120px; /* Adjust maximum width as needed */
    height: auto; /* Maintain aspect ratio */
}



