/* PROJECTS STYLES */
body{
    background-color: black;
}

img{
    width: 200px;
    height: 200px;
    object-fit: cover;
}

p{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

h1{
    font-family:"BBH Bartle" ;
    color: white;
    text-align: center;
}

.menu-item {
    font-size: 20px;
    margin: 20px;
    font-family: Helvetica, sans-serif;
    text-decoration: none;
    color: white;
}

.menu-item:hover {
    color: #0000ff;
    transition: 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 10px;
    background-color: black;
    border: 5px solid  #000083;
    border-radius: 25px;
    box-shadow: 0px 0px 10px #0000ff;
}

.logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.logo-card {
    border: 3px solid #0000ff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
    font-family: Helvetica, sans-serif;
    box-shadow: 0px 0px 10px #0000ff;
}

.title{
   font-weight: bold;
}

.sampleimg {
    width: 45%;
    height: auto;
}

.desc-text{
    width: 75%;
    margin: 0 auto;
}

ul {
    list-style-position: inside;  
    text-align: center;           
    padding: 0;                 
}

iframe {
    width: 75%;
    height: 500px;
    border: none;
}

#pizza{
    width:100%;
    height: 75vh;
}

body {
    display: flex;
    flex-direction: column;    
    min-height: 100vh;         
}

/* Step 2 — tell the main content to grow and fill all available space */
/* This pushes the footer down to the bottom */
main {
    flex-grow: 1;    /* this is the magic — it stretches to fill the gap */
}

/* Step 3 — the footer just sits naturally at the bottom */
footer {
    /* no special positioning needed! */
}

a:visited {
    color: white;  
}

/* for mobile */
@media (max-width: 1080px) {

    nav {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    .logos {
        flex-direction: column;
        align-items: center;
    }

    img {
        width: 150px;
        height: 150px;
    }

    .sampleimg {
        width: 90%;
    }

    .desc-text {
        width: 90%;
    }

    iframe {
        width: 90%;
        height: 300px;
    }

}

/* sidenav hidden by default */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    box-shadow: 0px 0px 10px #0000ff;
    overflow-x: hidden;
    transition: width 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.sidenav a {
    color: white;
    font-family: 'Inter';
    font-size: 20px;
    text-decoration: none;
    padding: 15px 20px;
}

.sidenav a:hover {
    color: #0000ff;
    transition: 0.3s;
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
}

/* hamburger hidden on desktop, visible on mobile */
.hamburger {
    display: none;
    font-size: 36px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 1080px) {
    nav {
        display: none;
    }
    .hamburger {
        display: block;
    }
}