* {
    box-sizing: border-box;
}

header{
    background-color: lightblue;
    margin-bottom: 15px;
    margin-left: 95px;
    margin-right: 95px;

    display: flex;
    justify-content: space-evenly;
}
/* Style for Title text inside header*/
.Trips{
    color: white;
    text-decoration: underline;
    font-size: 300%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Trips a:hover {
    color: lightyellow;
}
/* MENU BAR */
.menu-bar {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px;
    margin-top: 20px;

    display: flex;
    justify-content: space-around;
}
/* Individual Menu Item*/
.menu-item {
    width: 16%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: lightblue;
    text-align: center;
    position: relative;
}
/* Style for the current menu item for the page you are on */
.current {
    font-weight: bold;
    color: black;
}
/* Style for current sub menu item link*/
.drop-down-item.current a {
    font-weight: bold;
    color: black;
}
/* Prevent the hover from changing color for an active sub menu link*/
.drop-down-item.current:hover a {
    color: black;
}
/* Style for all menu links*/
.menu-item a:link, .menu-item a:visited {
    color: white;
    font-weight: bold;
    text-decoration: none;
}
/* Hover background color*/
.menu-item:hover {
    background-color: red;
}
/* Hover menu link color*/
.menu-item:hover .drop-down-item.current {
    background-color: blue;
}
/* Change menu link color on hover*/
.menu-item:hover a {
    color: blue;
}
/* Force the current sub menu link to stay black on hover*/
.menu-item:hover .drop-down-item.current a {
    color: black;
}
/* DROPDOWN MENU*/
.drop-down-menu-bar {
    width: 100%;
    background-color: rgb(62, 78, 95);
    position: absolute;
    top: 100%; /* places it directly below the menu item */
    left: 0;

    display: none;
    z-index: 1;
}
/* Show dropdown menu wen hovering over the month*/
.menu-item:hover .drop-down-menu-bar {
    display: block;
}
/* Individual links in dropdown*/
.drop-down-item {
    width: 100%;
    background-color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    border: solid 1px lightblue;
}
/* Highlight the background when hovering*/
.drop-down-item:hover {
    background-color: red;
}
/* Change text color on hover*/
.drop-down-item:hover a {
    color: lightblue;
}

/* Month-specific dropdown background color on hover */
.menu-item.first-month:hover .drop-down-item.first-month {
    background-color: lightskyblue;
}

.menu-item.second-month:hover .drop-down-item.second-month {
    background-color: lightseagreen;
}

.menu-item.third-month:hover .drop-down-item.third-month {
    background-color: lightgreen;
}

.menu-item.fourth-month:hover .drop-down-item.fourth-month {
    background-color: lightcoral;
}


/* MAIN CONTENT*/
/* Main wrapper*/
#all{
    max-width: 1400px;
    width:80%;
    margin-left:auto;
    margin-right:auto;
    border: solid lightblue 2px;
    height:fit-content;
    padding-top:45px;
}
/* Image and location grid*/    
.row{
    width:100%;
    margin-bottom:15px;
    display:flex;
    justify-content: space-around;
}
/* Individual image container*/    
.image{
    width:19%;
}
    
.image img {
    width:100%;
}
/* Style for trip location text area*/    
.place{
    width:22%;
    padding: 15px;
    font-weight:bolder;
    text-align:center;
}
/* date text*/    
.date {
    color: teal; 
}
/* place visited text for the "View Trip" Link*/    
.visit {
    color: blue;
}
/* FOOTER */
footer{
    background-color: lightblue;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 95px;
    margin-right: 95px;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}
/* Style for the message in the footer above the form link*/
.message{
    color: white;
    font-weight: bold;
    font-size: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Style for the form link*/
.form{
    color: blue;
    font-weight: bold;
    font-size: 120%;
    margin-top: 5px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Colored at top of each page for the month */
.month-tag {
    width: 100%;
    height: 8px;
    margin-bottom: 20px;
}

/* Colors for each month */
.first-month { 
    background-color: lightskyblue; 
}
.second-month { 
    background-color: lightseagreen; 
}
.third-month { 
    background-color: lightgreen; 
}
.fourth-month { 
    background-color: lightcoral; 
}

/* INFO BOXES IN PLACES VISITED*/
.three-boxes {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
/* Each info box (food, sights, nightlife)*/
.info-box {
    width: 31%;
    height: 500px; 
    background-color: lightblue;
    padding: 20px;
    font-weight: bold;
    text-align: left;
}
/* Each info box (food, sights)*/
.info-box2 {
    width: 46%;
    height: 500px; 
    background-color: lightblue;
    padding: 20px;
    font-weight: bold;
    text-align: left;
}
/* Image on each side of the center block*/
.middle-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
/* Image containter for left & right side*/
.side-image {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 30px;
    margin-right: 30px;
}

.side-image img {
    width: 100%;
    height: auto;
    max-width: 350px;
    max-height: 350px;
    border-radius: 10px; /* rounded corners*/
}
/* Center box with trip info between the images*/
.center-info {
    width: 32%;
    text-align: center;
    font-size: 130%;
    font-weight: bold;
    padding: 20px;
    background-color: lightblue;
    border-radius: 10px;
    color: white;
}
/* Spacing/font for text*/
.sub-description {
    font-weight: normal;
    font-size: 95%;
    margin-top: 5px;
    margin-bottom: 5px;
}
/* Spacing/font for long one*/
.sub-description2 {
    font-weight: normal;
    font-size: 80%;
}
/* Spacing/font for diff long one*/
.sub-description3 {
    font-weight: normal;
    font-size: 84%;
}

.trip-comment {
    background-color: black;
    color: white;
    padding: 12px;
    margin-top: 30px;
    border-radius: 8px;
    width: fit-content;
    font-size: 90%;
  }