/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #333;
}

/* ===== TOP INFO BAR ===== */
.top-bar {
    background: #08304f;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

.top-bar .flex {
    display: flex;
    justify-content: space-between;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(to bottom, #0A3D62, #06263f);
    padding: 20px 0;
    color: white;
}
.logo {
background: url('logo.png');
}
.bluelogo {
background: url('bluelogo.png');
}
.logotxt {
	color: red;
    font-size: 28px;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: white;
    font-weight: bold;
    font-size: 15px;
}

nav ul li a:hover {
    color: #38ADA9;
}


.hero {
            
            background: url('shrimpinocean.png');
            
            /* 2. Standard background CSS to ensure it looks good on all devices */
            background-size: cover;       /* Ensures the image fills the space */
            background-position: center;   /* Keeps the trawler centered */
            background-repeat: no-repeat; /* Prevents tiling */

            height: 60vh; /* 80vh; Keeps the hero prominent */
            color: white; /* Ensures text contrasts with the dark overlay */
            display: flex;
            flex-direction: column;
            justify-content: top;
            align-items: top;
            text-align: left;
            padding: 0 20px;
        }
.hero h1 { font-size: 3.5rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
        .hero p { font-size: 1.2rem; max-width: 600px; margin-bottom: 30px; }
/* .hero-overlay {
    
    height: 100%;
    display: flex;
    align-items: center;
} */

.hero-text {
    color: darkblue;
    padding-left: 60px bold;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px bold;
    margin-bottom: 20px;
}

.recipe-hero {
    /* This adds the dark tint and the image together linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), */
    background: url('busykitchen.png');
    
    /* This ensures the image covers the whole area and is centered */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Spacing and Alignment */
    padding: 100px 5%; 
    text-align: center;
    border-bottom: 1px solid #ddd;
    
    /* Make all text inside white */
    color: #ffffff;
}

.recipe-hero h1 { 
    color: #ffffff; 
    font-size: 3rem; 
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* This shadow ensures the text is readable regardless of the image brightness */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7); 
}

.recipe-hero p { 
    color: #ffffff; 
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Recipe Grid */
        .container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
        
        .recipe-entry {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 80px;
            align-items: start;
        }

        @media (max-width: 768px) {
            .recipe-entry { grid-template-columns: 1fr; }
        }

        .recipe-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .recipe-details h2 { color: var(--navy); margin-top: 0; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 5px; }
        .specs { background: var(--light-gray); padding: 10px 15px; border-radius: 4px; margin: 15px 0; font-size: 0.9rem; display: flex; gap: 20px; }
        .specs span { font-weight: bold; color: var(--accent); }

        .ingredients h4, .instructions h4 { color: var(--navy); margin-bottom: 5px; }
        .ingredients ul { padding-left: 20px; margin-bottom: 20px; }
        .instructions ol { padding-left: 20px; }
        .instructions li { margin-bottom: 10px; }
.btn-primary {
    background: #38ADA9;
    padding: 12px 22px;
    color: white;
    font-weight: bold;
    border-radius: 3px;
}

.btn-primary:hover {
    background: #2e8f8b;
}

/* ===== CATEGORY STRIP ===== */
.category-strip {
    background: #f1f1f1;
    padding: 20px 0;
    text-align: center;
}

.category-strip span {
    margin: 0 25px;
    font-weight: bold;
    color: #0A3D62;
}

/* ===== SECTION ===== */
.section {
    padding: 50px 0;
}

.section h2 {
    margin-bottom: 20px;
    border-bottom: 3px solid #0A3D62;
    display: inline-block;
    padding-bottom: 5px;
}

/* ===== PRODUCT TABLE ===== */
.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
	padding: 20px;
}

.product-table th {
    background: #0A3D62;
    color: white;
    padding: 12px;
    text-align: left;
}

.product-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.product-table tr:hover {
    background: #f5f5f5;
}

/* ===== FOOTER ===== */
footer {
    background: #06263f;
    color: white;
    padding: 40px 0;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
}

.footer-columns div {
    width: 30%;
}

footer h4 {
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
}
.product-container {
    display: grid;
    /* Defines three columns with the specified widths */
    grid-template-columns: 15% 60% 15%;
    gap: 10px; /* Optional spacing between columns */
    /* height: 50vh; Just for visualization */
  }

  .column {
    background-color: white;
	margin-right:20px;
    /* border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center; */
  }

  .middle {
    background-color: #e0e7ff; /* Highlight the center column */
	margin-left:20px;
  }

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text {
        padding-left: 20px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 20px;
    }
}