/*
Theme Name: Par Society Custom Theme v1.0
Theme URI: https://parsociety.co.uk/theme
Author: George Stone
Author URI: https://hosuto.co.uk/
Description: A custom WordPress theme for Par Society
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: par-society
*/

/* Font Declarations */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'Coolvetica';
    src: url('assets/fonts/Coolvetica Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
body {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #f3efe0;
    background: #1d1d1d;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-size: 1.125rem;
}

a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #66BB6A;
}

/* Layout */
.site {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Homepage Specific Layout */
.home .site {
    min-height: 100vh;
}

.home .site-header {
    min-height: 80vh;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 100%;
}

.home .header-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    max-width: 1320px;
    margin: 0 auto;
}

/* Non-Homepage Layout */
.site:not(.home) {
    min-height: auto;
}

.site:not(.home) .site-header {
    background: #1d1d1d;
    border-bottom: 1px solid rgba(243, 239, 224, 0.1);
}

.site:not(.home) .header-content {
    padding: 1rem 0;
    max-width: 1320px;
    margin: 0 auto;
}

.site:not(.home) .site-main {
    padding-top: 2rem;
}

/* Add container styles */
.container-fluid {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 768px) {
    .container-fluid {
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

/* Header Styles */
.site-header {
    width: 100%;
    position: relative;
    background: #1d1d1d;
}

/* Header Content - This is our consistent container across all pages */
.header-content {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
    max-width: 1320px;
    margin: 0 auto;
}

/* Row alignment in header */
.header-content .row {
    margin: 0;
    width: 100%;
}

/* Column spacing */
.header-content .col-4 {
    padding: 0 15px;
    display: flex;
    align-items: center;
}

/* Logo & Title */
.site-logo {
    margin-bottom: 0.5rem;
}

.site-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.site-title {
    margin: 0;
    line-height: 1.2;
}

.site-title a {
    color: #f3efe0;
    text-decoration: none;
}

/* Book Now Button */
.btn-book-now {
    background: #4CAF50;
    color: #f3efe0;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    min-height: 44px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: rgba(76, 175, 80, 0.9);
    color: #f3efe0;
}

/* Sticky Header Adjustments */
.sticky-header .header-content {
    padding: 0.75rem 0;
}

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

.sticky-header .site-title {
    font-size: 2rem;
}

.sticky-header .btn-book-now {
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    .header-content {
        padding: 1rem 0;
    }

    .site-logo img {
        max-height: 50px;
    }

    .site-title {
        font-size: 1.75rem;
    }

    .btn-book-now {
        padding: 0.5rem 1rem;
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 768px) {
    /* Adjust column widths for mobile */
    .header-content .col-4 {
        padding: 0 10px;
    }
    
    /* Menu button column */
    .header-content .col-4:first-child {
        width: 15%;
        flex: 0 0 15%;
    }
    
    /* Logo/title column */
    .header-content .col-4:nth-child(2) {
        width: 60%;
        flex: 0 0 60%;
        justify-content: center;
        text-align: center;
    }
    
    /* Book now column */
    .header-content .col-4:last-child {
        width: 25%;
        flex: 0 0 25%;
    }

    .btn-book-now {
        padding: 0.5rem;
        font-size: 1.125rem;
        width: 100%;
        text-align: center;
        min-height: 40px;
    }

    /* Book Now Button Mobile Text */
    .btn-book-now .full-text {
        display: none;
    }
    
    .btn-book-now .mobile-text {
        display: inline;
    }
}

/* Small Mobile Adjustments */
@media screen and (max-width: 480px) {
    /* Further adjust column widths */
    .header-content .col-4:first-child {
        width: 20%;
        flex: 0 0 20%;
    }
    
    .header-content .col-4:nth-child(2) {
        width: 55%;
        flex: 0 0 55%;
    }
    
    .header-content .col-4:last-child {
        width: 25%;
        flex: 0 0 25%;
    }

    .btn-book-now {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }
}

/* Very Small Mobile Adjustments */
@media screen and (max-width: 360px) {
    /* Adjust text for very small screens */
    .btn-book-now {
        font-size: 0.65rem;
    }

    .site-title {
        font-size: 0.875rem;
    }
}

/* Hero Header Styles */
.hero-header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 13, 0.5);
    z-index: 1;
}

/* Ensure header content sits above overlay */
.header-content {
    position: relative;
    z-index: 2;
}

/* Condensed Header Specific Styles */
.condensed-header {
    min-height: 80px;
    border-bottom: 1px solid rgba(243, 239, 224, 0.1);
}

.condensed-header .header-content {
    padding: 1rem 0;
}

/* Consistent Logo Size */
.site-logo img {
    max-height: 80px;
    width: auto;
}

/* Site Title */
.site-title {
    margin: 0;
    font-size: 3.5rem;
    line-height: 1.1;
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
}

.site-title a {
    color: #f3efe0;
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    margin-bottom: 1.25rem;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.main-navigation li {
    margin-right: 20px;
}

.main-navigation a {
    color: #f3efe0;
    display: block;
    padding: 5px 0;
}

.main-navigation a:hover {
    color: #4CAF50;
}

/* Content Area */
.site-main {
    padding: 2rem 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1320px; /* Match the header/footer max-width */
}

/* Posts and Pages */
.entry-header {
    margin-bottom: 20px;
}

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

.entry-meta {
    color: #a0a0a0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.entry-content {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
}

/* Archive and Search */
.archive-header,
.page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

/* Sidebar */
.widget-area {
    padding: 1.25rem;
    background: #1d1d1d;
    border-radius: 5px;
    border: 1px solid #333;
}

.widget {
    margin-bottom: 30px;
}

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

/* Comments */
.comments-area {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.comments-title {
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    background: #1d1d1d;
    border-radius: 5px;
    border: 1px solid #333;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 4rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.error-404 .page-title {
    font-size: 3.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.error-404 .error-subtitle {
    font-size: 1.25rem;
    color: rgba(243, 239, 224, 0.8);
    margin-bottom: 3rem;
}

.error-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.action-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.action-item h2 {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.btn-404 {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #4CAF50;
    color: #f3efe0;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: auto;
}

.btn-404:hover {
    background: #66BB6A;
    color: #f3efe0;
    transform: translateY(-2px);
}

.error-404-menu {
    width: 100%;
    max-width: 300px;
    margin-top: auto;
    margin-bottom: auto;
}

.error-404-menu a {
    color: #f3efe0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-404-menu a:hover {
    color: #4CAF50;
}

@media screen and (max-width: 768px) {
    .error-404 {
        padding: 2rem 1rem;
    }

    .error-404 .page-title {
        font-size: 2.5rem;
    }

    .error-actions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .action-item {
        min-height: auto;
        padding: 1.5rem;
    }
}

/* Footer */
.site-footer {
    flex-shrink: 0;
    padding: 2rem 0;
    background: #1d1d1d;
    color: #f3efe0;
    border-top: 3px solid #4CAF50;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.nav-branding-footer {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-title {
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.5rem;
    color: #f3efe0;
}

.site-info {
    font-size: 0.875rem;
    color: rgba(243, 239, 224, 0.8);
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-branding {
        align-items: center;
    }

    .site-footer {
        padding: 1.5rem 0;
    }
}

/* Pagination */
.pagination,
.posts-navigation {
    margin: 20px 0;
    text-align: center;
}

.page-numbers,
.nav-links a {
    padding: 0.3125rem 0.625rem;
    margin: 0 0.3125rem;
    background: #1d1d1d;
    border: 1px solid #4CAF50;
    color: #f3efe0;
    border-radius: 3px;
}

.page-numbers.current,
.nav-links a:hover {
    background: #4CAF50;
    color: #f3efe0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin-right: 0;
        margin-bottom: 0.625rem;
    }
    
    /* Remove this as we're using Bootstrap containers */
    /* .site {
        padding: 0 10px;
    } */
}

/* WordPress Core Classes */
.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    background: #1d1d1d;
    border: 1px solid #333;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
    padding: 0.8075em;
    color: #a0a0a0;
}

/* Buttons and Interactive Elements */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background: #4CAF50;
    color: #f3efe0;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #66BB6A;
}

/* Golf-specific Accents */
.entry-title a:hover {
    color: #66BB6A;
}

blockquote {
    border-left: 4px solid #4CAF50;
    padding-left: 20px;
    margin-left: 0;
}

/* Custom Selection Color */
::selection {
    background: #4CAF50;
    color: #f3efe0;
}

::-moz-selection {
    background: #4CAF50;
    color: #f3efe0;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    background: #1d1d1d;
    border: 1px solid #333;
    color: #f3efe0;
    padding: 0.5rem;
    border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Navigation Toggle Button */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(243, 239, 224, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 2rem;
    height: 2rem;
}

/* Base Button Styles */
.btn,
.wp-block-button__link,
.btn-book-now,
.sticky-book-now {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-size: 1.125rem;
    background: #4CAF50;
    color: #f3efe0;
    border: none;
}

/* Button Hover State */
.btn:hover,
.wp-block-button__link:hover,
.btn-book-now:hover,
.sticky-book-now:hover {
    background: #66BB6A;
    color: #f3efe0;
    transform: translateY(-2px);
}

/* Override specific sticky button styles */
.sticky-book-now {
    position: fixed;
    top: 50%;
    left: -12rem;
    transform: rotate(-90deg);
    transform-origin: 100% 50%;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 3px 3px;
}

.sticky-book-now.show {
    left: -9.25rem;
    opacity: 1;
    visibility: visible;
}

.sticky-book-now:hover {
    background: #66BB6A;
    color: #f3efe0;
    left: -9rem;
    transform: rotate(-90deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(29, 29, 29, 0.95);
        padding: 2rem;
        z-index: 1000;
    }

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

/* Update container styles for hero header */
.hero-header .container-fluid {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
} 

/* Primary Navigation */
#primaryMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100vh;
    background: #262626;
    padding: 2rem;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#primaryMenu.show {
    transform: translateX(0);
}

/* Overlay when menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Adjust for WordPress admin bar */
.admin-bar #primaryMenu {
    top: 32px;
    height: calc(100vh - 32px);
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #f3efe0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.menu-close:hover {
    color: #4CAF50;
}

/* Navigation Menu Links */
#primaryMenu .navbar-nav {
    margin: 0 -2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(243, 239, 224, 0.1);
}

#primaryMenu .navbar-nav li {
    margin: 0;
    list-style: none;
    width: 100%;
    text-align: left;
}

#primaryMenu .navbar-nav a {
    color: #f3efe0;
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    padding: 0.75rem 2rem;
    line-height: 1.2;
    min-height: 44px;
    text-align: left;
}

#primaryMenu .navbar-nav a:hover {
    color: #f3efe0;
    background: rgba(76, 175, 80, 0.1);
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    #primaryMenu {
        width: 100%;
        max-width: 350px;
    }

    #primaryMenu .navbar-nav {
        text-align: left;
    }

    #primaryMenu .navbar-nav a {
        padding: 0.75rem 2rem;
        justify-content: flex-start;
    }
}

/* Side Menu Book Now Button */
.side-menu-cta {
    margin: 0.5rem -2rem 0 -2rem;
    border-top: 1px solid rgba(243, 239, 224, 0.1);
}

.side-menu-cta .btn-book-now {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    width: 100%;
    text-align: left;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 0;
    background: #4CAF50;
    color: #f3efe0;
    transition: background-color 0.3s ease;
    line-height: 1.2;
    text-decoration: none;
    display: block;
}

.side-menu-cta .btn-book-now:hover {
    background: #66BB6A;
}

/* Update the regular Book Now button to match */
.btn-book-now {
    background: #4CAF50;
    color: #f3efe0;
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn-book-now:hover {
    background: #66BB6A;
    color: #f3efe0;
}

/* Navigation Links - update to match */
.navbar-nav a {
    color: #f3efe0;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    margin: 0 -2rem;
    padding: 0.5rem 2rem;
}

.navbar-nav a:hover {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
} 

/* Titles */
.site-title,
.entry-title,
h1 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
}

/* Subtitles */
h2, h3, h4, h5, h6,
.site-description {
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
    color: #4CAF50;
}

/* Navigation */
.navbar-nav a,
.btn-book-now {
    font-family: 'Coolvetica', sans-serif;
    font-weight: bold;
} 

/* Base Typography */
html {
    font-size: 16px;
}

/* Heading Typography */
h1, .site-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* Navigation and Buttons */
.navbar-nav a {
    font-size: 1.125rem;
}

.btn-book-now {
    font-size: 1.125rem;
}

/* Content Typography */
p, li, td, th {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Small Text */
.entry-meta,
.wp-caption-text,
.site-footer {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Mobile Typography Adjustments */
@media screen and (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1, .site-title {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

/* Ensure minimum touch target sizes */
.navbar-nav a,
.btn-book-now,
button,
input[type="button"],
input[type="submit"] {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
}

/* Improve link accessibility */
a {
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

a:hover, a:focus {
    text-decoration-thickness: 2px;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
    outline: none;
}

/* Optional: Add a different focus style for accessibility */
a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Headings */
.site-title,
.entry-title,
h1, h2, h3 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
}

/* Other Headings */
h4, h5, h6,
.site-description {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
}

/* Content Typography */
p, li, td, th {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
}

/* Small Text */
.entry-meta,
.wp-caption-text,
.site-footer {
    font-family: 'Geist', sans-serif;
    font-weight: 300;
} 

/* Condensed Header */
.condensed-header {
    padding: 1rem 0;
    background: #1d1d1d;
    border-bottom: 1px solid rgba(243, 239, 224, 0.1);
}

.condensed-header .page-title {
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.75rem;
    margin: 0;
    color: #f3efe0;
}

/* Adjust spacing for admin bar */
.admin-bar .condensed-header {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .condensed-header {
        margin-top: 46px;
    }
} 

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    background-color: #1d1d1d;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    color: #f3efe0;
    font-size: 4.5rem;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Coolvetica', sans-serif;
    max-width: 1200px;
}

/* Main Content Area */
.main-content {
    padding: 4rem 0;
    background: #1d1d1d;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .main-content {
        padding: 2rem 0;
    }
} 

/* Hero Background Video */
.hero-video,
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-container {
    overflow: hidden;
    background: #000;
}

#youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
} 

/* Page Titles - ensure these are h1 */
.page-title,
.entry-title {
    font-family: 'Coolvetica', sans-serif;
    font-weight: normal;
}

h1.page-title,
h1.entry-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
} 

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: none !important;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 99;
    color: #4CAF50;
    font-size: 2rem;
}

.scroll-top:hover,
.scroll-top:focus {
    background: none !important;
    opacity: 0.8;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

/* Adjust for admin bar */
.admin-bar .scroll-top {
    bottom: 4rem;
}

@media screen and (max-width: 782px) {
    .scroll-top {
        bottom: 1.5rem;
        right: 1.5rem;
    }
} 

/* Sticky Book Now Button */
.sticky-book-now {
    position: fixed;
    top: 50%;
    left: -12rem;
    transform: rotate(-90deg);
    transform-origin: 100% 50%;
    background: #4CAF50;
    color: #f3efe0;
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-family: 'Geist', sans-serif;
    font-weight: 900;
    font-size: 1.125rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 3px 3px;
    white-space: nowrap;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .sticky-book-now {
        display: none;
    }
}

/* Adjust for admin bar */
.admin-bar .sticky-book-now {
    top: calc(50% + 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .sticky-book-now {
        top: calc(50% + 46px);
    }
}

/* Footer Styles */
.main-footer {
    background: #1d1d1d;
    padding: 2rem 0;
    border-top: 3px solid #4CAF50;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    max-width: 1320px;
    margin: 0 auto;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-title {
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.5rem;
    color: #f3efe0;
}

/* Secondary Footer */
.secondary-footer {
    background: #262626;
    padding: 1rem 0;
}

.secondary-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.copyright {
    color: rgba(243, 239, 224, 0.8);
    font-size: 0.875rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: rgba(243, 239, 224, 0.8);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4CAF50;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .secondary-footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }

    .footer-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-icons {
        justify-content: center;
    }
} 

/* Header Branding */
.col-4.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Adjust logo size when shown with title */
.site-logo img {
    max-height: 60px;
    width: auto;
}

/* When only logo is shown, make it larger */
.col-4.text-center:not(:has(.site-title)) .site-logo img {
    max-height: 80px;
} 

/* Footer Map */
.footer-map {
    flex: 1;
    max-width: 400px;
    margin-left: 2rem;
}

#map {
    width: 100%;
    height: 200px;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.footer-map address {
    font-style: normal;
    color: rgba(243, 239, 224, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .footer-map {
        max-width: 100%;
        margin-left: 0;
        margin-top: 1.5rem;
    }
} 

/* Footer Styles */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Column Styles */
.footer-column {
    min-width: 0;
}

/* Branding Column */
.branding-column {
    grid-column: 1;
}

/* Widget Columns */
.widgets-column {
    grid-column: auto;
}

/* Mobile Layout */
@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .branding-column {
        grid-column: 1 / -1;
    }

    .widgets-column {
        grid-column: auto;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-branding {
        align-items: center;
    }

    .widgets-column {
        grid-column: 1;
    }
} 

/* Footer Policy Menu */
.footer-policy-nav {
    flex: 1;
    text-align: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: rgba(243, 239, 224, 0.8);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Copyright and Social Icons */
.copyright,
.social-icons {
    flex-shrink: 0;
}

/* Mobile Layout */
@media screen and (max-width: 768px) {
    .secondary-footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }

    .footer-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-icons {
        justify-content: center;
    }
} 

/* Gutenberg Block Styles */
.entry-content > * {
    margin-left: auto;
    margin-right: auto;
}

.entry-content > .alignwide {
    max-width: 1560px;
}

.entry-content > .alignfull {
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Block specific styles */
.wp-block-button__link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #4CAF50;
    color: #f3efe0;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    background: #66BB6A;
    color: #f3efe0;
    transform: translateY(-2px);
}

.is-style-outline .wp-block-button__link {
    background: transparent;
    border: 2px solid #4CAF50;
    color: #4CAF50;
}

.is-style-outline .wp-block-button__link:hover {
    background: #4CAF50;
    color: #f3efe0;
} 

/* Custom color classes for Gutenberg */
.has-primary-color {
    color: #4CAF50 !important;
}

.has-primary-background-color {
    background-color: #4CAF50 !important;
}

.has-light-color {
    color: #f3efe0 !important;
}

.has-light-background-color {
    background-color: #f3efe0 !important;
}

.has-dark-color {
    color: #1d1d1d !important;
}

.has-dark-background-color {
    background-color: #1d1d1d !important;
}

/* Override default color handling */
.wp-block[data-type="core/paragraph"] p,
.wp-block[data-type="core/heading"] h1,
.wp-block[data-type="core/heading"] h2,
.wp-block[data-type="core/heading"] h3,
.wp-block[data-type="core/heading"] h4,
.wp-block[data-type="core/heading"] h5,
.wp-block[data-type="core/heading"] h6 {
    color: inherit;
} 

/* Book Banner Text */
.book-banner-text {
    font-family: 'Coolvetica', sans-serif;
    font-size: 160px;
    line-height: 1;
    color: #f3efe0;
    text-align: center;
    margin: 0;
    padding: 2rem 0;
    text-transform: uppercase;
}

/* Responsive Adjustments for Book Banner */
@media screen and (max-width: 1400px) {
    .book-banner-text {
        font-size: 140px;
    }
}

@media screen and (max-width: 1200px) {
    .book-banner-text {
        font-size: 120px;
    }
}

@media screen and (max-width: 991px) {
    .book-banner-text {
        font-size: 100px;
        padding: 1.5rem 0;
    }
}

@media screen and (max-width: 768px) {
    .book-banner-text {
        font-size: 80px;
        padding: 1rem 0;
    }
}

@media screen and (max-width: 576px) {
    .book-banner-text {
        font-size: 60px;
    }
}

@media screen and (max-width: 480px) {
    .book-banner-text {
        font-size: 40px;
    }
}

@media screen and (max-width: 360px) {
    .book-banner-text {
        font-size: 32px;
    }
} 

/* Link styling */
.book-banner-text a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.book-banner-text a:hover {
    opacity: 0.8;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .book-banner-text {
        font-size: 80px;
    }
} 

.alternate-background-section {
    background: #262626;
    padding: 2rem;
} 

/* Business Card Component */
.business-card {
    background-color: #F3EFE0;
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 2rem auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.business-card-image {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.business-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-card-details {
    flex: 1;
    color: #1d1d1d;
    font-family: 'Geist', sans-serif;
}

.business-card-details dl {
    margin: 0;
    padding: 0;
}

.business-card-details dt {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #1d1d1d;
}

.business-card-details dd {
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    line-height: 1.4;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .business-card {
        max-width: 90%;
        padding: 2rem;
        gap: 2rem;
    }

    .business-card-image {
        flex: 0 0 250px;
        height: 250px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .business-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .business-card-image {
        width: 100%;
        height: 200px;
        flex: 0 0 auto;
    }

    .business-card-details dt {
        font-size: 1.125rem;
    }

    .business-card-details dd {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
} 

/* Responsive Map Container */
.map-responsive {
    position: relative;
    width: 100%;
    height: 450px; /* Fixed height instead of aspect ratio */
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 8px; /* Optional: adds rounded corners */
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important; /* Force full width */
    height: 100% !important; /* Force full height */
    border: 0;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .map-responsive {
        height: 300px; /* Smaller height on mobile */
    }
} 

/* Entry content width */
.entry-content {
    width: 100%;
    margin: 0 auto;
}

/* Ensure full-width blocks can extend */
.entry-content > .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
}

/* Wide blocks should respect the container max-width */
.entry-content > .alignwide {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
} 

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #f3efe0;
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 0.8;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-30px) translateX(-50%);
    }
    60% {
        transform: translateY(-15px) translateX(-50%);
    }
}

/* Ensure header content stays on top */
.hero-header .header-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

/* Adjust hero content vertical position */
.hero-content {
    padding-top: 35vh;
} 

/* Mobile Header Adjustments */
@media screen and (max-width: 768px) {
    /* Header Layout */
    .header-content {
        padding: 1rem;
    }

    /* Site Title */
    .site-title {
        font-size: 2rem;
    }

    /* Book Now Button */
    .btn-book-now {
        padding: 0.5rem 1rem;
        font-size: 1.125rem;
    }

    /* Hero Content */
    .hero-content {
        padding-top: 25vh;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
} 

/* Container and Content Spacing */
@media screen and (max-width: 768px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-main {
        padding: 1rem 0;
    }

    .entry-content {
        padding: 0 1rem;
    }

    /* Fix overlapping issues */
    .entry-content > * {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Adjust spacing between elements */
    .wp-block-group {
        margin-bottom: 2rem;
    }
} 

/* Business Card Mobile Adjustments */
@media screen and (max-width: 768px) {
    .business-card {
        margin: 1rem;
        padding: 1rem;
        gap: 1rem;
    }

    .business-card-image {
        height: 200px;
    }

    .business-card-details dt {
        font-size: 1rem;
    }

    .business-card-details dd {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
} 

/* Mobile Navigation and Buttons */
@media screen and (max-width: 768px) {
    /* Primary Menu */
    #primaryMenu {
        width: 85%;
        padding: 1rem;
    }

    /* Hide sticky elements on mobile */
    .sticky-book-now {
        display: none;
    }

    /* Adjust scroll buttons */
    .scroll-arrow,
    .scroll-top {
        font-size: 1.5rem;
    }

    /* Menu Toggle Button */
    .navbar-toggler {
        padding: 0.5rem;
    }

    .navbar-toggler-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
} 

/* General Mobile Fixes */
@media screen and (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Fix for nested containers */
    .wp-block-group.is-layout-constrained {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Adjust spacing */
    .wp-block-spacer {
        height: 2rem !important;
    }
} 

/* Make it responsive */
@media screen and (max-width: 768px) {
    .wp-block-group.is-vertical.is-content-justification-center.is-layout-flex {
        padding-left: 1rem; /* Smaller padding on mobile */
    }
} 

/* Navigation Branding */
.nav-branding {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(243, 239, 224, 0.1);
}

.nav-logo {
    margin-bottom: 1rem;
}

.nav-logo img {
    max-height: 60px;
    width: auto;
}

.nav-site-title {
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.75rem;
    color: #f3efe0;
}

/* Navigation Menu */
.navbar-nav {
    margin: 0 -1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(243, 239, 224, 0.1);
}

/* Contact Area */
.nav-contact-area {
    padding: 1.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(243, 239, 224, 0.1);
}

.nav-contact-area .widget-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* Social Area */
.nav-social-area {
    padding: 1.5rem 0;
}

.nav-social-area .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-social-area .social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(243, 239, 224, 0.8);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.nav-social-area .social-icons a:hover {
    color: #4CAF50;
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    #primaryMenu {
        padding: 1rem;
    }

    .nav-branding {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .nav-logo img {
        max-height: 50px;
    }

    #primaryMenu .navbar-nav {
        margin: 0 -1rem;
        padding: 1rem 0;
    }

    #primaryMenu .navbar-nav a {
        padding: 0.5rem 1rem;
    }

    .nav-contact-area,
    .nav-social-area {
        padding: 1rem 0;
    }
} 

/* ==========================================================================
   Blog Styles
   ========================================================================== */

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(243, 239, 224, 0.1);
}

.blog-title {
    font-family: 'Coolvetica', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f3efe0;
}

.blog-description {
    font-size: 1.125rem;
    color: rgba(243, 239, 224, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Card */
.blog-card {
    background: #262626;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-categories {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-badge {
    background: #4CAF50;
    color: #f3efe0;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.category-badge:hover {
    background: #66BB6A;
    color: #f3efe0;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: #f3efe0;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #4CAF50;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(243, 239, 224, 0.6);
    margin-bottom: 1rem;
}

.blog-card-meta i {
    margin-right: 0.5rem;
}

.blog-card-excerpt {
    color: rgba(243, 239, 224, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card-footer {
    border-top: 1px solid rgba(243, 239, 224, 0.1);
    padding-top: 1rem;
}

.read-more {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
    color: #66BB6A;
}

/* Pagination */
.navigation.pagination {
    margin-top: 3rem;
    text-align: center;
}

.nav-links {
    display: inline-flex;
    gap: 0.5rem;
    background: #262626;
    padding: 0.5rem;
    border-radius: 5px;
}

.page-numbers {
    color: #f3efe0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-numbers.current {
    background: #4CAF50;
    color: #f3efe0;
}

.page-numbers:not(.current):hover {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

/* No Posts Found */
.no-posts {
    text-align: center;
    padding: 4rem 0;
}

.no-posts h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-title {
        font-size: 2rem;
    }

    .blog-card-title {
        font-size: 1.25rem;
    }

    .blog-card-content {
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
} 

/* Single Post Styles */
.single-post .site-main {
    padding-top: 0;
}

/* Featured Header */
.post-featured-header {
    background: #262626;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
}

.post-featured-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.post-featured-image {
    margin: -2rem -2rem 2rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Categories */
.post-categories {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Post Title */
.post-title {
    font-family: 'Coolvetica', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #f3efe0;
}

/* Post Meta */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(243, 239, 224, 0.1);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-label {
    font-size: 0.875rem;
    color: rgba(243, 239, 224, 0.6);
}

.author-name {
    color: #f3efe0;
    font-weight: 500;
}

.post-details {
    display: flex;
    gap: 1.5rem;
    color: rgba(243, 239, 224, 0.8);
    font-size: 0.875rem;
}

.post-details i {
    margin-right: 0.5rem;
}

/* Post Content */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Post Footer */
.post-footer {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(243, 239, 224, 0.1);
}

/* Sharing Buttons */
.post-sharing {
    text-align: center;
}

.post-sharing h3 {
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #f3efe0;
}

.post-sharing .sharing-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 3px;
    background: #262626;
    color: #f3efe0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
    color: #f3efe0;
}

.share-button.facebook:hover {
    background: #1877f2;
}

.share-button.twitter:hover {
    background: #000000;
}

.share-button.linkedin:hover {
    background: #0a66c2;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .post-featured-content {
        padding: 1rem;
    }

    .post-featured-image {
        margin: -1rem -1rem 1.5rem;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .sharing-buttons {
        flex-direction: column;
    }

    .share-button {
        justify-content: center;
    }
} 

/* Sticky Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(29, 29, 29, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(243, 239, 224, 0.1);
    visibility: hidden;
    opacity: 0;
}

.sticky-header.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

/* Adjust header content for sticky state */
.sticky-header .header-content {
    padding: 0.75rem 0;
    max-width: 1320px;
    margin: 0 auto;
}

.sticky-header .site-logo img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.sticky-header .site-title {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.sticky-header .btn-book-now {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    /* Reset the stacked layout for sticky header */
    .sticky-header .header-content .row {
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .sticky-header .site-title,
    .sticky-header .site-logo {
        display: none;
    }

    /* Reset column widths for sticky header */
    .sticky-header .col-mobile-12 {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    /* Reset the mobile ordering */
    .sticky-header .mobile-order-1,
    .sticky-header .mobile-order-2,
    .sticky-header .mobile-order-3 {
        order: unset !important;
    }

    /* Keep buttons in a row for sticky header */
    .sticky-header .header-buttons {
        flex-direction: row !important;
        align-items: center;
        gap: 0.5rem;
        width: auto !important;
    }

    .sticky-header .btn-book-now,
    .sticky-header .btn-gift-card {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        min-width: 100px;
    }

    /* Force alignment */
    .sticky-header .justify-content-start {
        justify-content: flex-start !important;
    }

    .sticky-header .justify-content-end {
        justify-content: flex-end !important;
    }

    /* Add padding for sticky header */
    .sticky-header .header-content {
        padding: 0.5rem 1rem !important;
    }
}

/* Pricing Text */
.pricing-text {
    font-family: 'Coolvetica', sans-serif;
    font-size: 160px;
    line-height: 1;
    color: #f3efe0;
    text-align: center;
    margin: 0;
    padding: 2rem 0;
    text-transform: uppercase;
}

/* Responsive Adjustments for Pricing */
@media screen and (max-width: 1400px) {
    .pricing-text {
        font-size: 140px;
    }
}

@media screen and (max-width: 1200px) {
    .pricing-text {
        font-size: 120px;
    }
}

@media screen and (max-width: 991px) {
    .pricing-text {
        font-size: 100px;
        padding: 1.5rem 0;
    }
}

@media screen and (max-width: 768px) {
    .pricing-text {
        font-size: 80px;
        padding: 1rem 0;
    }
}

@media screen and (max-width: 576px) {
    .pricing-text {
        font-size: 60px;
    }
}

@media screen and (max-width: 480px) {
    .pricing-text {
        font-size: 40px;
    }
}

@media screen and (max-width: 360px) {
    .pricing-text {
        font-size: 32px;
    }
} 

.rank-math-breadcrumb {
    padding-top: 25px;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Shared Button Styles */
.btn-book-now,
.btn-gift-card {
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    min-height: 44px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    text-align: center;
}

/* Book Now Button */
.btn-book-now {
    background: #4CAF50;
    color: #f3efe0;
}

.btn-book-now:hover {
    background: rgba(76, 175, 80, 0.9);
    color: #f3efe0;
}

/* Gift Card Button */
.btn-gift-card {
    background: #f3efe0;
    color: #0d0d0d;
}

.btn-gift-card:hover {
    background: rgba(243, 239, 224, 0.9);
    color: #0d0d0d;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    .btn-book-now,
    .btn-gift-card {
        padding: 0.75rem 1rem;
        min-width: 120px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .btn-book-now,
    .btn-gift-card {
        padding: 0.5rem 0.75rem;
        min-width: 110px;
        font-size: 0.75rem;
    }

    /* Keep buttons in a row for sticky header */
    .sticky-header .header-buttons {
        flex-direction: row !important;
        align-items: center;
        gap: 0.5rem;
        width: auto !important;
    }
}

@media screen and (max-width: 480px) {
    .btn-book-now,
    .btn-gift-card {
        padding: 0.5rem 0.5rem;
        min-width: 100px;
        font-size: 0.7rem;
    }
}

/* Hero Video Styles */
.hero-video,
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-container {
    overflow: hidden;
    background: #000;
}

/* Desktop Video */
.hero-video.desktop-video {
    display: block;
}

.hero-video.mobile-video {
    display: none;
}

/* Mobile Video Switch */
@media screen and (max-width: 768px) {
    .hero-video.desktop-video {
        display: none;
    }

    .hero-video.mobile-video {
        display: block;
    }
}

#youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

/* Mobile Optimization - Only show fallback if video fails */
.hero-header.video-fallback {
    background-image: var(--mobile-fallback-image);
    background-size: cover;
    background-position: center;
}

.hero-header.video-fallback .hero-video,
.hero-header.video-fallback .hero-video-container {
    display: none;
}

/* Base Header Styles */
.header-content {
    padding: 1rem 0;
}

.header-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Desktop Navigation (above 768px) */
@media screen and (min-width: 769px) {
    .header-content .row {
        flex-direction: row;
    }

    /* Keep buttons in row */
    .header-buttons {
        flex-direction: row;
    }
}

/* Mobile Navigation (768px and below) */
@media screen and (max-width: 768px) {
    /* Initial header - stacked layout */
    .header-content .row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .col-mobile-12 {
        width: 100%;
        flex: 0 0 100%;
    }

    /* Center align all elements */
    .col-mobile-12.d-flex {
        justify-content: center !important;
    }

    .header-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    /* Mobile ordering for stacked layout */
    .mobile-order-1 { order: 1; }
    .mobile-order-2 { order: 2; }
    .mobile-order-3 { order: 3; }

    /* Sticky Header Specific Mobile Styles */
    .sticky-header .header-content .row {
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .sticky-header .site-title,
    .sticky-header .site-logo {
        display: none;
    }

    .sticky-header .col-mobile-12 {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    /* Reset mobile ordering for sticky header */
    .sticky-header .mobile-order-1,
    .sticky-header .mobile-order-2,
    .sticky-header .mobile-order-3 {
        order: unset !important;
    }

    /* Keep buttons in row for sticky header */
    .sticky-header .header-buttons {
        flex-direction: row !important;
        align-items: center;
        gap: 0.5rem;
        width: auto !important;
    }

    .sticky-header .btn-book-now,
    .sticky-header .btn-gift-card {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        min-width: 100px;
    }

    /* Force alignment */
    .sticky-header .justify-content-start {
        justify-content: flex-start !important;
    }

    .sticky-header .justify-content-end {
        justify-content: flex-end !important;
    }

    /* Add padding for sticky header */
    .sticky-header .header-content {
        padding: 0.5rem 1rem !important;
    }
}

/* Button Shadows */
.btn-book-now,
.btn-gift-card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.btn-book-now:hover,
.btn-gift-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Site Title Shadow */
.site-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Burger Menu Shadow */
.navbar-toggler {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Sticky Header Shadow */
.sticky-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Side Navigation Shadow when open */
#primaryMenu {
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}
