@charset "utf-8"; /* CSS Document */


/* styling for the top title section */
.page-header {
    background-color: #fafafa;   /* #fafafa same as page background */
    padding: 0 0;           /* space inside the box */
}



.page-header h1 {
    color: #212427;           
    margin: 0;
    font-size: 1.2rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;   /* makes the box only as wide as the text */
    border-bottom: 2px solid #f40000;   /* creates the underline at the exact text width */
    padding-bottom: 3px;   /* gap between the text and the underline */
}



.page-title-left {
    display: inline-block !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 2px solid #f40000 !important;   /* the red underline */
    
    /* Typography */
    font-size: 22px;
    color: #212427;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase !important;
}



.page-header .container {
    text-align: center;
    margin: 40px auto 0 auto;   /* top, right, bottom, left */
}



/* --- Master Typography Control --- */

h1, h2, h3, h4, p, li, a {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    /* Control H1 everywhere from here */
}

h2 {
    font-size: 1.8rem;
    color: #454c52;
    /* border-left: 5px solid #f40000; */
    padding-left: 15px;
    margin: 40px 0 20px 0;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212427;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333333;
}

/* Link Styles */
a {
    color: #f40000;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #008000; /* Your signature green hover */
}



/* In typography.css, add this at the bottom */
.bg-dark h1, 
.bg-dark h2, 
.bg-dark h3, 
.bg-dark p {
    color: #ffffff !important; /* Forces text to be white inside dark boxes */
}



.btn-standard {
    display: inline-block;
    margin-top: 25px;   /* auto pushes button to the bottom of the box */
    padding: 10px 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: #28a745;
    color: #ffffff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);   /* creates the shadow around the button box */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);   /* makes the text inside the button sharp */
    cursor: pointer;
}



.btn-standard:hover {
    background-color: #f40000;   /* hover state: background fills with #F40000 signature red */
    border: none;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 0, 0, 0.2);
}




.btn-main {
    display: inline-block;
    margin-top: auto;   /* auto pushes button to the bottom of the box */
    padding: 10px 25px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #0096FF;
    text-decoration: none;
    border: 1px solid #212427;   /* the button shape */
    border-radius: 2rem;   /* rounded pill shape */
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);   /* creates the shadow around the button box */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);   /* makes the text inside the button sharp */
}



.btn-main:hover {
    background-color: #F40000;   /* hover state: background fills with #F40000 signature red */
    border-color: #F40000;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(244, 0, 0, 0.2);
}



.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 0.5rem;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    /* this creates the shadow around the button box */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    
    /* this makes the text inside the button sharp */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}



.btn-primary {
    background-color: #F40000;   /* signature red */
    color: #FFFFFF;
}



.btn-primary:hover {
    background-color: #4CBB17;   
    color: #ffffff;
    transform: translateY(-10px);
}



.btn-secondary {
    border: 2px solid #212427;
    color: #212427;
}



.btn-secondary:hover {
    background-color: #212427;
    color: #FFFFFF;
    transform: translateY(-10px);
}



.btn-primary:hover, .btn-secondary:hover {
    /* transform: translateY(-5px);
    /* shadow becomes blurrier and lighter as it "lifts" */
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.4); 
}



/* apply this to any link you want to look like a button */
.button, .btn, .hero-btn {
    display: inline-block;
    text-decoration: none;   /* no underline ever */
    /* add your padding/background colors here */
}



.button:hover, .btn:hover, .hero-btn:hover {
    text-decoration: none !important;   /* forces the underline away on hover */
}



.policy-meta {
    background-color: #fafafa;   /* inner box colour */
    color: #495057;           /* Deep Charcoal text */
    padding: 12px 20px;       /* gives the bar some height and width */
    border-radius: 0;       /* matches your site's professional feel, 0 makes the border stripes sharp */
    font-size: 0.95rem;
    text-align: center;
    border-left: 4px solid #f40000;   /* adds a subtle left border in signature red */
    border-right: 4px solid #f40000;   /* adds a subtle left border in signature red */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;   /* space before the rest of the policy starts */
    /* margin-left: 0;   /* ensures it hugs the left edge */
    display: table;    /* allows it to take its own line without centering issues */
    margin: 0 auto 45px auto; /* Centering margins: 'auto' on left and right */
    width: auto;
}



.policy-meta strong::before {
    content: "\23F2";   /* Unicode for a Timer/Clock icon */
    margin-right: 10px;
    color: #f40000;    /* matches the signature red stripe */
    font-size: 1.3rem;
    vertical-align: middle;
}



.policy-meta strong {
    color: #212529;     /* darker black for the labels */
    font-weight: 800;   /* extra bold */
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-right: 5px;
}



/* Booking Notice Styling */
.booking-notice {
    padding: 40px 0;
    line-height: 1.6;
    display: flex;
    justify-content: center;
}

.notice-box {
    background-color: #f9f9f9;   /* Subtle light grey */
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
}

.notice-box .btn-booking {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 20px;
    
    /* BACKGROUND COLOR - Change #0056b3 to your brand blue */
    background-color: #008000 !important; 
    
    /* TEXT COLOR */
    color: #ffffff !important; 
    
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.notice-box h2 {
    margin-top: 0;
    color: #333;
}

.notice-box p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.notice-box a {
    color: #0056b3;
    text-decoration: none;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.notice-box a:hover {
    color: #f40000;
    text-decoration: none;
}

