/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #0e0e0e;
    color: #fff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

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

figure {
    margin: 0;
}

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

/* Reset margins for lists */
ul, li {
    margin: 0;
    padding: 0;
}

a { color: #f05556; }
a:hover { color: #7dd2ee; text-decoration: none; }
/* Header */
.site-header {
    background-color: #0e0e0e;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-width: 200px;
    height: auto;
}

.main-navigation {
    flex: 1;
    margin-left: 20px;
}

.nav-menu {
    display: flex;
    gap: 15px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #f05556;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000; /* Fallback color */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-logo {
    max-width: 75%;
    height: auto;
}

/* Two-Column Layout */
.row {
    display: flex;
    flex-flow: row;
    gap: 20px;
}

.col-md-8 {
    flex: 0 0 66%;
    max-width: 66%;
    background: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.col-md-4 {
    flex: 0 0 33%;
    max-width: 33%;
    background: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
p { color: #fff; }
/* Post Styling */
article {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px; overflow-x: scroll;
}

article:last-child {
    border-bottom: none;
}

.post-thumbnail {
    width: 100%; flex: unset; max-width: unset;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.post-details {
    flex: 1;
}

.post-title a { color: #7dd2ee; 
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}
.post-title {
  width: 100%;

}


.post-title a:hover {
    color: #fff;
}

.post-meta {
    font-size: 0.875rem;
    color: #666;
    margin: 5px 0;
}

.post-excerpt {
    font-size: 16px;
    color: #0e0e0e;
    margin-top: 10px;
}

/* Footer */
footer {
  background-color: #0e0e0e;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #252525;
  margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

footer a { text-transform: uppercase; font-weight: 400!important; font-size: 14px!important; }

.footer-logo img {
    max-width: 280px;
    margin: 0 auto 20px;
}

footer li { list-style: none; margin: 0 10px; display: inline-block; }
footer ul { margin: 0px; }

.footer-navigation {
    margin-top: 10px;
}

.footer-menu {
    display: inline-flex;
    gap: 15px;
}

.footer-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.current-menu-item a, .footer-menu li a:hover {
    color: #f05556!important;
}

/* Header Styling */
.site-header {
    background-color: #0e0e0e;
    color: #fff;
    padding: 10px 0;
}

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

.header-logo img {
    max-height: 100px;
    width: auto;
}

.main-navigation {
    flex: 1;
    text-align: center;
}

.nav-menu {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
	text-transform: uppercase; 
    transition: color 0.3s ease; 
}

.nav-menu li a:hover {
    color: #f05556;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #f05556;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #fff;
}
.post-categories a { font-size: 16px; text-decoration: none; }

.col-md-8 .post-excerpt { display: none; }

.col-md-4 .post-content { display: none; }

.col-md-4 .post-thumbnail { max-height: 120px; overflow: hidden; }

.col-md-4 h2 {
  text-transform: uppercase;
  font-size: 20px;
  border-bottom: 4px solid;
  padding-bottom: 12px;
  margin-bottom: 20px !important;
}
.hero.interior-hero {
    position: relative;
    width: 100%;
    height: auto;
	min-height: 200px; display: flex; justify-content: center; align-items: center;
    overflow: hidden;
}


.interior-hero .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.interior-hero .hero-overlay {
z-index: 2;
text-align: center;
color: #fff;
padding: 20px;
background-color: rgba(0,0,0,.5);
height: 100%;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
}

/* Responsive Design */
.page-content ul { margin-left: 25px; margin-bottom: 15px; }
footer .social-links a {
  display: block;
  margin: 30px auto 0;
}

header ul { margin: 0px; }
.hamburger-menu {
    display: none; margin-top: 20px;
}

.hamburger-menu button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 25px;
}

.hamburger-menu button span {
    background-color: #fff;
    height: 3px;
    width: 100%;
    border-radius: 2px;
}

/* Responsive Styles for 768px and Below */
@media (max-width: 768px) {
    .site-header {
        position: relative; /* Remove sticky behavior */
    }

    .main-navigation {
        display: none; /* Hide navigation by default */
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 10px 0;
    }

    .main-navigation.active {
        display: flex; /* Show navigation when active */
    }

    .hamburger-menu {
        display: block; /* Show hamburger menu */
    }

    header .social-links {
        display: none; /* Hide social links on mobile */
    }
}




@media (max-width: 768px) {
	.site-header { position: relative; }
    .row {
        flex-direction: column;
    }

    .col-md-8, .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .post-thumbnail {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-navigation {
        margin-top: 10px;
    }

    .social-links {
        margin-top: 10px;
    }
}
