/* html, body {
    margin: 0; 
    padding: 0; 
    padding-bottom: 0%;
    height: 100%; 
}

header {
    margin: 0; 
    padding: 0; 
    padding-bottom: 0%;
}

.header-container{
    display: flex;
    flex-direction: row;
    background-color: #0e726a;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: white;
    height: auto;
    padding: 10px 10px;
    width: auto;
    position: relative;
}


.address-container {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: -100px;
    position: relative;
}

.marina-name {
    font-size: 3rem; 
    font-weight: bold;
    font-family: 'Georgia', serif; 
    letter-spacing: 2px; 
    text-transform: uppercase;
    margin: 0;
    padding: 5px 0; 
}



@media screen and (max-width: 1024px) {
    .marina-name {
        font-size: 2rem; 
    }
    .logo-container img {
        width: 200px;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .address-container {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .marina-name {
        font-size: 2rem; 
    }

    .logo-container img {
        height: 150px;
    }

    .menu-container {
        width: 50px; 
        height: 60px;
    }
}

.header-container a{
    color: white;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    max-width: 250px;
}

.logo-container img {
    height: 250px;
}

.menu-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 25px;
    right: 20px;
    width: 70px;
    height: 80px;
    cursor: pointer;
    z-index: 2;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.7);
    z-index: 1;
    border: 1px;
}

 .menu-container:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: row;
    }
} 

.row {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    flex: 1;

}


main {
    background-color: #92caba;
    padding: 20px;
}



.list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.dropdown{
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none; 
    position: absolute;
    background-color: #92caba;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.4);
    min-width: 200px;
    z-index: 1;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0f1d32;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    min-width: 200px;
    z-index: 1; 
} */


main {
    background-color: #92caba;
}

body {
    margin: 0;
    padding: 0;
    background-color: #92caba;
}
footer {
    background-color: #0e726a;
    color: white;
    text-align: center;
    padding: 20px 0;
    text-align: center;
}

footer a img {   
    width: 30px;
    padding: 0 5px;
}

.logo {
    justify-content: center;
    height: 100px;
    text-align: center;
}

.footer-info {
    text-align: center; /* Center the text inside the footer info */
    flex: 2;
}

.logo-link {
    flex: 1;
    text-align: center;
}

.button-column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px;
    width: 100%;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-row img {
    max-width: 250px;
    min-width: 150px;
    height: auto;
}

.footer-column {
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
}

.footer-column-side {
    flex: 1; /* Assigns 1 part width to each side column */
}

.footer-column-middle {
    flex: 2; /* Assigns 2 parts width to the middle column */
}



/* Custom styles for alignment and fonts */
.h1, .p {
    color: white; /* Text color */
}



.marina-name {
    font-size: 3rem !important;
    font-weight: bold !important;
    font-family: 'Georgia', serif !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: white !important;
    margin: 0 !important;
}

.address-container p {
    font-size: 1.2rem !important;
    color: white !important;
    margin: 0 !important;
}

.navbar {
    background-color: #0e726a;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav {
    width: 100%;
    justify-content: flex-end; /* This will align the nav items to the right */
}
 
.navbar-toggler {
    border: none !important;
    padding: 0.5rem 1rem;
    color: white;

}



.navbar-nav .nav-link:hover {
    background-color: #92caba;
    color: black !important;
}

.shrink-text {
    font-size: clamp(10px, 2vw, 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
