/* Cold Water Bar & Grill Menu Styles */

.menu-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logo {
    color: #0066b3;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: visible;
}

.logo img {
    max-width: 60px;
    margin-right: 10px;
}

.bring-your-catch {
    border: 3px solid #000;
    padding: 15px;
    text-align: center;
    color: rgb(68, 133, 255);
    font-weight: 700;
    max-width: 300px;
    background-image: url("/images/fishing-rod.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}

.bring-your-catch h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.bring-your-catch .price {
    font-size: 1.5rem;
    margin-top: 10px;
    color: rgb(0, 197, 26);
}

.menu-section {
    margin-bottom: 30px;
}

.red-checkered-bg {
    background-image: linear-gradient(45deg, #f5f5f5 25%, #ffdddd 25%, #ffdddd 50%, #f5f5f5 50%, #f5f5f5 75%, #ffdddd 75%, #ffdddd 100%);
    background-size: 20px 20px;
    padding: 20px;
    border-radius: 5px;
    border: 2px solid rgb(255, 0, 0);
}

.menu-category {
    border: 2px solid #000;
    padding: 15px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.9);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Times New Roman', serif;
    font-style: italic;
}

.menu-item {
    margin-bottom: 15px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.item-name {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-right: 10px;
}

.dotted-line {
    flex-grow: 1;
    border-bottom: 2px dotted #999;
    margin: 0 5px;
}

.item-price {
    color: rgb(0, 197, 26);
    font-weight: 600;
    padding-left: 10px;
}

.item-price::before {
    content: "$";
}

.item-description {
    font-size: 0.9rem;
    margin-top: 5px;
}

.menu-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.menu-column {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 30px 0 15px;
    font-family: 'Times New Roman', serif;
    font-style: italic;
    border-bottom: 1px solid #000;
}

.note {
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 20px;
}

.crab-icon {
    color: hsl(350, 73.50%, 44.30%);
    font-size: 1.5rem;
    margin-right: 10px;
}

.daily-specials {
    margin-top: 30px;
    padding: 20px;
    border: 2px solid rgb(255, 0, 0);
    text-align: center;
    color: rgb(0, 0, 0);
    font-weight: 700;
}

.daily-specials h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.daily-specials img {
    max-width: 80px;
    margin: 0 auto;
    display: block;
}

.phone-number {
    display: flex;
    font-weight: 700;
    justify-content: center;
    margin: 15px auto;
    font-size: 1.3rem;
    background: linear-gradient(to right, #00a040, #13bb5f, #00d142);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.7);
    text-shadow: 0 0 8px rgba(0, 180, 15, 0.82);
    transition: text-shadow 0.3s ease;
}

.phone-number a {
    text-decoration: none;
    border-radius: 5px;
    border-color: rgba(0, 0, 0, 0.82);
    border-style: dotted;
    padding: 5px 10px;
}

.phone-number a:hover {
    text-shadow: 3px 3px 20px rgb(0, 180, 15);
    border-style: solid;
}

@media (max-width: 768px) {
    .menu-header {
        flex-direction: column;
        order: 2;
        /* Change the order to appear after phone number */
    }

    .special-offer {
        margin-top: 20px;
        max-width: 100%;
    }

    .menu-column {
        min-width: 100%;
    }

    /* Reorder elements in the container */
    .menu-container {
        display: flex;
        flex-direction: column;
    }

    .phone-number {
        order: 1;
        /* Make phone number appear first */
        margin-bottom: 0px;
        margin-top: 7px;
    }

    /* Ensure the rest of the content follows */
    .menu-content {
        order: 3;
    }
}