
main {
    background-color: rgb(152, 199, 225);
    min-height: 65vh;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(152, 199, 225);
    overflow-x: hidden;
}
footer {
    background-color: #194056;
    color: white;
    padding: 20px 0;
}

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-family: 'Cormorant Garamond', serif !important;
    font-size: 2.25rem !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #f8f9fa !important;  /* Off-white */
    letter-spacing: 2px !important;
    text-transform: none !important;
    margin: 0 !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* Subtle depth */
}

@media (min-width: 968px) {
    .marina-name {
        font-size: 3rem;
    }

    .marina-subtitle {
        font-size: 2.25;
    }


}

.marina-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: #d0e0f0;
    text-align: center;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}


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

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

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


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



.navbar-nav .nav-link:hover {
    background-color: rgb(152, 199, 225);
    color: white !important;
}

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


