/*
Theme Name: ExploreHull
Theme URI: https://explorehull.com
Author: Manus
Author URI: https://explorehull.com
Description: A custom WordPress theme for ExploreHull based on the visitdallas.com design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: explorehull
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #0099cc;
    transition: color 0.3s ease;
}
/* Maritime Header Design */
.site-header {
	    background-color: #1e5799;
	    padding: 15px 0;
	    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header .site-branding {
	    padding: 10px 0;
}

.site-header .site-title a,
.site-header .site-description {
	    color: #ffffff;
}

.site-header .main-navigation a {
	    color: #ffffff;
	    font-weight: 500;
	    padding: 10px 15px;
}

.site-header .main-navigation a:hover {
	    background-color: rgba(255,255,255,0.1);
	    border-radius: 4px;
}

/* Page Title Sizing Fix */
.entry-title, 
.page-title {
	    font-size: 42px;
	    font-weight: 700;
	    margin-bottom: 30px;
	    color: #333;
	    position: relative;
}

.entry-title:after,
.page-title:after {
	    content: "";
	    display: block;
	    width: 80px;
	    height: 3px;
	    background-color: #1e5799;
	    margin-top: 15px;
}

/* Copyright Section with Improved Visibility */
.site-info {
	    background-color: #1e5799;
	    color: #ffffff;
	    padding: 15px 0;
	    text-align: center;
	    font-size: 14px;
	    width: 100%;
	    display: block;
	    clear: both;
	    margin-top: 30px;
}

.site-info .container {
	    max-width: 1200px;
	    margin: 0 auto;
	    padding: 0 15px;
}

.site-info p {
	    margin: 5px 0;
}

.site-info a {
	    color: #ffffff;
	    text-decoration: underline;
}

/* Add copyright text using :after pseudo-element */
footer:after {
	    content: " 2025 ExploreHull. Developed by Lampstand Consulting LTD. All rights reserved. Contact: tolu@lampstand.consulting";
	    background-color: #1e5799;
	    color: #ffffff;
	    padding: 15px 0;
	    text-align: center;
	    font-size: 14px;
	    width: 100%;
	    display: block;
	    clear: both;
}
}
}
}
}
}
}
}
}
}
}
}
}
a:hover {
    color: #007aa3;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #0099cc;
    color: #fff;
}

.btn-primary:hover {
    background-color: #007aa3;
    color: #fff;
}

.btn-secondary {
    background-color: #333;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #555;
    color: #fff;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 60px;
    width: auto;
    margin-right: 15px;
}

.site-title-group {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #333;
}

.site-description {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Navigation */
.main-navigation {
    background-color: #0099cc;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-weight: 600;
}

.menu a:hover {
    background-color: #007aa3;
}

.menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0099cc;
    min-width: 200px;
    z-index: 99;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.menu li:hover > .sub-menu {
    display: block;
}

.menu .sub-menu a {
    padding: 12px 20px;
}

.menu .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Featured Section */
.featured-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    color: #0099cc;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.featured-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.featured-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.featured-content {
    padding: 20px;
}

.featured-content h3 {
    margin-bottom: 10px;
}

.featured-content p {
    color: #666;
    margin-bottom: 15px;
}

.featured-link {
    font-weight: 600;
    color: #0099cc;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Content Area */
.site-main {
    padding: 60px 0;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    color: #0099cc;
}

/* Posts */
.post {
    margin-bottom: 40px;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    margin-bottom: 10px;
}

.entry-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.entry-content {
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget-title {
    color: #0099cc;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #ccc;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    margin: 0 10px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #0099cc;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #0099cc;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #007aa3;
}

/* Widgets */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    margin-bottom: 15px;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li {
    margin-bottom: 10px;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
