/*
Theme Name: Seafood Opener
Description: Classic WordPress theme preserving the supplied Seafood Opener landing page, with shared header and footer and standard content templates.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seafood-opener
Tags: custom-menu, custom-logo, featured-images, translation-ready, blog
*/

        /* Base Reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: #F8F5F0; /* Sandy off-white */
            color: #2C3E50; /* Dark slate blue text */
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        /* Typography */
        h1, h2, h3, h4 {
            color: #1A365D; /* Deep navy blue */
            margin-bottom: 15px;
            font-weight: 700;
        }

        h1 { font-size: 2.5rem; line-height: 1.2; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }
        p { margin-bottom: 20px; font-size: 1.1rem; }

        /* Layout Utilities */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center { text-align: center; }

        /* Buttons */
        .btn {
            display: inline-block;
            background-color: #D62828; /* Crab Red */
            color: #ffffff;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            text-align: center;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .btn:hover {
            background-color: #B22222; /* Darker red */
            transform: translateY(-2px);
        }

        /* Header & Navigation */
        .site-header {
            background-color: #1A365D; /* Navy Blue */
            color: #ffffff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            max-height: 40px;
        }

        .primary-navigation ul {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        .primary-navigation a {
            color: #ffffff;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .primary-navigation a:hover {
            color: #D62828; /* Crab red hover */
        }

        /* Hero Section */
        .hero {
            background-color: #E2E8F0;
            padding: 100px 0;
            text-align: center;
            background-image: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.8)), url('https://web.archive.org/web/20240815182914im_/https://seafoodopener.com/wp-content/uploads/2024/05/Crabs-Open-Easier-with-Tommys-Famous-Seafood-Opener.jpg');
            background-size: cover;
            background-position: center;
            color: #ffffff;
        }

        .hero h1 {
            color: #ffffff;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px auto;
        }

        /* Split Sections (Text next to Image) */
        .split-section {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .split-section.reverse {
            flex-direction: row-reverse;
        }

        .split-content {
            flex: 1;
        }

        .split-image {
            flex: 1;
        }

        .split-image img {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Features Grid */
        .features-bg {
            background-color: #ffffff;
            border-top: 5px solid #1A365D;
            border-bottom: 5px solid #1A365D;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background-color: #F8F5F0;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #D62828;
            margin-bottom: 15px;
            display: block;
        }

        /* Video & Order Section */
        .order-section {
            background-color: #1A365D;
            color: #ffffff;
        }
        
        .order-section h2 {
            color: #ffffff;
        }

        .video-container {
            max-width: 800px;
            margin: 0 auto 40px auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .video-container video {
            width: 100%;
            display: block;
        }

        .order-box {
            background-color: #ffffff;
            color: #2C3E50;
            padding: 40px;
            border-radius: 8px;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
        }

        .contact-form {
            background: #ffffff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #1A365D;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #cbd5e1;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: #1A365D;
        }

        textarea.form-control {
            height: 150px;
            resize: vertical;
        }

        .contact-info-block {
            margin-bottom: 30px;
        }

        .contact-info-block h4 {
            margin-bottom: 10px;
            color: #D62828;
        }

        /* Footer */
        .site-footer {
            background-color: #0F172A;
            color: #94a3b8;
            padding: 40px 0;
            text-align: center;
        }

        .social-links {
            margin-bottom: 20px;
        }

        .social-links a {
            display: inline-block;
            margin: 0 10px;
            color: #ffffff;
            font-weight: bold;
        }

        .social-links a:hover {
            color: #D62828;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .primary-navigation ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .split-section, .split-section.reverse {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
    

/* WordPress compatibility and keyboard access. */
.screen-reader-text { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.screen-reader-text:focus { clip:auto; width:auto; height:auto; top:10px; left:10px; padding:15px; background:#fff; color:#1A365D; z-index:100001; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline:3px solid #D62828; outline-offset:4px; }
html { scroll-padding-top:140px; }
.admin-bar .site-header { top:32px; }
.contact-form:empty { min-height:530px; }
.content-area { min-height:55vh; }
.entry-content { overflow-wrap:anywhere; }
.entry-content ul, .entry-content ol { margin:0 0 20px 1.5em; }
.entry-content a, .entry-meta a, .pagination a { text-decoration:underline; }
.entry-content > * + * { margin-top:1em; }
.entry-content table { width:100%; border-collapse:collapse; }
.entry-content th, .entry-content td { padding:10px; border:1px solid #cbd5e1; }
.entry-content blockquote { border-left:4px solid #1A365D; padding-left:20px; }
.entry-card { margin-bottom:40px; padding-bottom:30px; border-bottom:1px solid #cbd5e1; }
.entry-meta { font-size:.9rem; margin-bottom:20px; }
.alignleft { float:left; margin:0 20px 20px 0; }
.alignright { float:right; margin:0 0 20px 20px; }
.aligncenter { display:block; margin-left:auto; margin-right:auto; }
.wp-caption { max-width:100%; }
.wp-caption-text, .gallery-caption { font-size:.9rem; }
.sticky { border-top:3px solid #1A365D; }
.bypostauthor { border-left:3px solid #1A365D; padding-left:15px; }
.entry-content::after { content:''; display:table; clear:both; }
.primary-navigation ul { flex-wrap:wrap; }
.primary-navigation li { position:relative; }
.primary-navigation .sub-menu { display:none; position:absolute; min-width:180px; background:#1A365D; padding:15px; z-index:2; }
.primary-navigation li:hover > .sub-menu, .primary-navigation li:focus-within > .sub-menu { display:block; }
.primary-navigation .sub-menu li { margin:8px 0; }
.primary-navigation .sub-menu .sub-menu { left:100%; top:0; }
.footer-menu { list-style:none; display:flex; justify-content:center; flex-wrap:wrap; gap:20px; margin-bottom:20px; }
.custom-logo { width:auto; max-height:40px; }
.search-form input, .comment-form input:not([type=checkbox]), .comment-form textarea { max-width:100%; padding:12px; border:1px solid #cbd5e1; border-radius:4px; }
.comment-list { margin-left:20px; }
.comment-body { margin-bottom:25px; }
.comment-form label { display:block; }
.comment-form-cookies-consent label { display:inline; }
@media(max-width:782px) { .admin-bar .site-header { top:46px; } }
@media(max-width:600px) { .admin-bar .site-header { top:0; } .primary-navigation .sub-menu { position:static; } .order-box img { width:100%; } .contact-form { padding:25px; } }
@media(prefers-reduced-motion:reduce) { *, *::before, *::after { transition:none !important; scroll-behavior:auto !important; } }
