/*
Theme Name: Beacon
Author: Me
Description: Custom Theme created in house for Beacon
Version: 2.4
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: beacon
Tags: beacon
*/

/* ----------------------------------------
   TABLE OF CONTENTS
   ----------------------------------------

  1. Header
    1.1 Desktop Menu
    1.2 Mobile menu
    1.3 Mobile header / Off-canvas
  2. General
  3. Contact form 
  4. Footer
  5. About us
  6. Home page
  7. Business login
  8. Business register
  9. Business My account
  10. Business Edit-account page
  11. Business Edit-email settings page
  12. Business Reset Password
  13. Login Business / Media 
  14. Business database
  15. 404 page
  16. Contact page
  17. About us
  18. Forgot Password
  19. Logout
  20. Media Requests
  21. 



/* ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------ */
/* =========================================================
   /* =========================================================
   1. HEADER
   ========================================================= */

/* =========================================================
 /* =========================================================
   1. HEADER
   ========================================================= */
#main-header {
    background: #FAFAFA;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

/* Hide X button by default (desktop) */
.menu-close {
    display: none;
}

/* Header layout */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 100px;
    position: relative;
}

/* Logo */
.header-logo img {
    max-height: 70px; /* slightly smaller */
    width: auto;
    height: auto;
    display: block;
}




/* --------------------------
   Header account switchers
   -------------------------- */

/* Base styles - no circle by default */
.header-account-switcher.login-switcher,
.header-account-switcher.company-switcher {
    font-weight: bold;
    color: #0B3D91;
    padding: 0;           /* no padding by default */
    border: none;         /* no border by default */
    border-radius: 0;     /* no rounding by default */
    background: none;     /* plain background */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin-left: 50px;
}

/* Hover effect */
.header-account-switcher.login-switcher:hover,
.header-account-switcher.company-switcher:hover {
    color: #FFC857;
}

/* Active state - circle / rounded border */
.header-account-switcher.login-switcher.active,
.header-account-switcher.company-switcher.active {
    padding: 6px 12px;           /* padding for rounded look */
    border: 2px solid #0B3D91;   /* border for circle */
    border-radius: 24px;          /* rounded corners */
    background-color: #f5f5f5;    /* light background */
    color: #0B3D91;
}

/* Active hover effect */
.header-account-switcher.login-switcher.active:hover,
.header-account-switcher.company-switcher.active:hover {
    color: #FFC857;
    border-color: #FFC857;
}

/* =========================================================
   1.1 DESKTOP MENU
   ========================================================= */


.desktop-menu-container {
    flex: 1; /* take all available space */
    display: flex;
    justify-content: center; /* center menu items */
}

/* Menu list */
.main-menu-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: "Liter", sans-serif;
    font-weight: 400;
}

/* Menu items */
.main-menu-desktop li {
    display: inline-block;
}

/* Menu links */
.main-menu-desktop a {
    font-family: "Liter", sans-serif;
    text-decoration: none;
    color: #0B3D91;
    font-size: 18px;       /* bigger */
    font-weight: bold;      /* bold */
    padding: 8px 16px;      /* space around link */
    border-radius: 24px;     /* rounded corners */
    background-color: #A7D3F2; /* new background */
    transition: color 0.3s ease; /* only text color changes */
}

.main-menu-desktop a:hover,
.main-menu-desktop a:focus {
    color: #FFC857;
    
}

/* Selected menu item underline */
.main-menu-desktop .current-menu-item > a {
    text-decoration: underline;
}

/* Account switcher container */
.header-account-switcher {
    display: flex;
    align-items: center;
}

.header-account-switcher a {
    text-decoration: none;
}

.header-account-switcher.login-switcher {
    margin-left: auto; /* push to the far right */
}


/* =========================================================
   1.2 HAMBURGER BUTTON
   ========================================================= */

.hamburger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 32px;
    height: 22px;
    display: none; /* desktop hidden */
    flex-direction: column;
    justify-content: space-between;
    z-index: 1102; /* above overlay and off-canvas */
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #0B3D91;
    border-radius: 2px;
}

/* =========================================================
   1.3 MOBILE MENU / OFF-CANVAS
   ========================================================= */

@media (max-width: 768px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px;
    }

    .hamburger {
        order: 1;
        display: flex;
    }

    .header-logo {
        order: 2;
        margin: 0 auto;
    }

    .login-switcher {
        order: 3;
    }

    /* Hide company switcher on mobile */
    .company-switcher {
        display: none;
    }

    /* Adjust logo size on mobile */
    .header-logo img {
        max-height: 44px;
        display: block;
         padding-left: 30px;
    }

    /* Off-canvas menu */
  

    .desktop-menu-container.menu-open {
        left: 0;
    }

    /* Close button (X) */
    .desktop-menu-container .menu-close {
        display: block;
        position: absolute;
        top: 30px; /* shifted down */
        right: 20px;
        font-size: 36px; /* bigger */
        background: none;
        border: none;
        cursor: pointer;
        color: #5DADEC; /* new color */
        z-index: 1060;
    }

    /* Overlay */
    #offcanvas-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1049;
        display: none;
    }

    #offcanvas-overlay.active {
        display: block;
    }

    /* Stack menu items vertically */
    .desktop-menu-container .main-menu-desktop {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .desktop-menu-container .main-menu-desktop li {
        display: block;
    }

    .desktop-menu-container .main-menu-desktop a {
        font-size: 18px;
        font-weight: bold; /* bold */
        color: #0B3D91;
        
        border-radius: 8px;
    }

    .desktop-menu-container .main-menu-desktop a:hover,
    .desktop-menu-container .main-menu-desktop a:focus {
        color: #FFC857;
        background-color: #fff3cd;
    }

    /* Underline for selected menu item */
    .desktop-menu-container .main-menu-desktop .current-menu-item > a {
        text-decoration: underline;
    }
}


/* =========================================================
   1.3 MOBILE MENU / OFF-CANVAS
   ========================================================= */

@media (max-width: 768px) {

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

    .hamburger {
        order: 1;
        display: flex;
    }

    .header-logo {
        order: 2;
        margin: 0 auto;
    }

    .login-switcher {
        order: 3;
    }

    /* Hide company switcher on mobile */
    .company-switcher {
        display: none;
    }

    /* Adjust logo size on mobile */
    .header-logo img {
        max-height: 44px;
        display: block;
    }

    /* Off-canvas menu */
    .desktop-menu-container {
        position: fixed;
        top: 10px; /* shift all content down 10px */
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        padding: 90px 20px 20px; /* original 80px + 10px shift */
        box-shadow: 4px 0 20px rgba(0,0,0,0.2);
        transition: left 0.3s ease;
        z-index: 1050;
        display: block;
        flex-direction: column;
    }

    .desktop-menu-container.menu-open {
        left: 0;
    }

    /* Close button (X) */
    .desktop-menu-container .menu-close {
        position: absolute;
        top: 40px; /* shifted down slightly more */
        right: 20px;
        font-size: 36px; /* bigger */
        background: none;
        border: none;
        cursor: pointer;
        color: #5DADEC; /* new color */
        z-index: 1060;
    }

    /* Overlay */
    #offcanvas-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1049;
        display: none;
    }

    #offcanvas-overlay.active {
        display: block;
    }

    /* Stack menu items vertically */
    .desktop-menu-container .main-menu-desktop {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .desktop-menu-container .main-menu-desktop li {
        display: block;
    }

    .desktop-menu-container .main-menu-desktop a {
        font-size: 18px;
        font-weight: bold; /* bold */
        color: #0B3D91;
    }

    .desktop-menu-container .main-menu-desktop a:hover,
    .desktop-menu-container .main-menu-desktop a:focus {
        color: #FFC857;
    }

    /* Underline for selected menu item */
    .desktop-menu-container .main-menu-desktop .current-menu-item > a {
        text-decoration: underline;
    }

    /* Ensure hamburger is behind off-canvas and overlay */
    .hamburger.menu-open {
        z-index: 1048;
    }
}


/* 1.2 END Header menu ------------------------------------------------------------------------------------------------*/

/* #2. General
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/

body {
    display: block;
    margin: 0px;
}

#primary.site-main {

margin-top:30px;
margin-bottom: 30px
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default body margin & set font defaults */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* fallback system font */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    background-color: #fff;
}

/* Reset heading margins */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: normal;
}

/* Reset lists */
ul, ol {
    list-style: none;
}

/* Anchor link defaults */
a {
    text-decoration: none;
    color: inherit;
}

/* Images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tables default reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Forms: remove default styles and add consistency */
input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background: none;
    border: none;
    outline: none;
    resize: none;
}

/* Buttons cursor and appearance */
button, input[type="button"], input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Text elements inherit font for consistency */
p, span, strong, em, small {
    margin: 0;
    padding: 0;
}

/* Optional: smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Optional: consistent focus styles for accessibility */
:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}



 /* 2.0 END general menu ------------------------------------------------------------------------------------------------*/




/* #3. Contact form
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/

.general-page-wrapper {
    padding: 50px; /* border padding */
    background-color: #FAFAFA;
    border: 1px solid #ccc; /* subtle border around page content */
    box-sizing: border-box;
}

.general-entry-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* allows wrapping on mobile */
    align-items: flex-start;
}

.contact-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 5px; /* optional: slightly rounded */
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1; /* take remaining space */
}

.contact-form-content h1.general-entry-title {
    margin: 0 0 20px 0;
}


/* Beacon Contact Form Styles */

#beacon-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#beacon-contact-form h1 {
  font-family: "Liter", sans-serif;
font-size: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
  font-weight: 700;
  font-style: normal;


    
}

#beacon-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* vertical spacing between fields */
}

#beacon-contact-form form input[type="text"],
#beacon-contact-form form input[type="email"],
#beacon-contact-form form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#beacon-contact-form form input[type="submit"] {
    padding: 10px 20px;
    background-color: #0B3D91;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#beacon-contact-form form input[type="submit"]:hover {
    background-color: #FFC857;
}


#beacon-contact-form form input[type="submit"] {
    padding: 10px 20px;          /* vertical and horizontal padding */
    background-color: #0B3D91;   /* button color */
    color: #fff;                 /* text color */
    border: none;                /* remove default border */
    border-radius: 8px;          /* rounded corners */
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* light drop shadow */
    width: 200px;                 /* only as wide as content + padding */
    display: inline-block;       /* ensures width behaves correctly */
}

#beacon-contact-form form input[type="submit"]:hover {
    background-color: #FFC857;   /* hover color */
}

/* Beacon Contact Form - Arial font */

#beacon-contact-form,
#beacon-contact-form h1,
#beacon-contact-form p,
#beacon-contact-form form,
#beacon-contact-form form input,
#beacon-contact-form form textarea,
#beacon-contact-form form input[type="submit"] {
    font-family: Arial, sans-serif;
}

/* Placeholder text in inputs and textarea */
#beacon-contact-form form input::placeholder,
#beacon-contact-form form textarea::placeholder {
    font-family: Arial, sans-serif;
    color: #999; /* optional: lighter gray for placeholder text */
}




/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .general-entry-content {
        flex-direction: column-reverse; /* form above image */
        align-items: stretch;
    }

    .contact-image img {
        max-width: 100%;
    }

    #beacon-contact-form {
        width: 100%;

}

}


 /* 3.0 END Contact form menu ------------------------------------------------------------------------------------------------*/



/* #4. Footer
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/

 /* Footer Styles */
.site-footer {
    background-color: #000; /* black background */
    color: #fff;            /* white text */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}



/* Footer columns container */
.footer-columns {
    display: flex;
    justify-content: space-between; /* evenly spaced columns */
    gap: 20px; /* optional spacing between columns */
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual column */
.footer-column {
    flex: 1;
    text-align: center;
}

.footer-column h2 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

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

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

.footer-column .desktop-footer li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column .desktop-footer li a:hover {
    color: #fff;
}

/* Bottom row spanning full width */
.footer-bottom-row {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive: stack columns on smaller screens */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

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


 /* 4.0 END Footer menu ------------------------------------------------------------------------------------------------*/


/* #5. Header
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/

.aboutus-image img {
    max-width: 400px;
    height: auto;
    border-radius: 5px;         /* optional rounded corners */
    
    
}

.about-page-wrapper {
    padding: 50px; /* border padding */
    background-color: #5DADEC;
    border: 1px solid #ccc; /* subtle border around page content */
    box-sizing: border-box;
}


/* Wrapper for text + image */
.aboutus-content-wrapper {
    display: flex;              /* horizontal layout */
    align-items: flex-start;    /* align top edges */
    gap: 20px;                  /* space between text and image */
}

/* Left content */
.aboutus-content {
    flex: 1;                    /* take remaining space */
    max-width: 60%;             /* optional: limit text width */
}

/* Right image */
.aboutus-image {
    flex: 0 0 35%;              /* fixed width for image container */
}



/* Responsive for mobile */
@media (max-width: 768px) {
    .aboutus-content-wrapper {
        flex-direction: column; /* stack vertically */
    }

    .aboutus-content, .aboutus-image {
        max-width: 100%;
    }
}


/* 5.0 END Footer menu ------------------------------------------------------------------------------------------------*/

/* Ensure hero content stacks vertically */


/* Keep heading-wrapper just for optional styling */
.hero-content .heading-wrapper {
    max-width: 1000px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-direction: row;  /* horizontal buttons on large screens */
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;    /* extra space if needed */
}

/* Buttons style remains the same */
.hero-buttons .btn {
    min-width: 220px;
    padding: 14px 24px;
    text-align: center;
    border-radius: 24px;
}

/* Responsive: stack buttons vertically on smaller screens */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        min-width: 180px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-content {
        max-width: 90vw;
    }
}
/* #6. Home
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/

#main-content-home {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
    padding-top: 50px;      /* optional: offset for header height */
    padding-bottom: 50px;    /* optional spacing from bottom */
    box-sizing: border-box;
}

#main-content-home .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

/* Force all content above backgrounds */
#main-content-home > *:not(.bg-layer) {
    position: relative;
    z-index: 2;
}

/* Hero content wrapper: stack headings and buttons vertically */
.hero-content {
    display: flex;
    flex-direction: column; /* stack children vertically */
    align-items: center;    /* center horizontally */
    text-align: center;     /* headings centered */
    gap: 2rem;              /* space between heading and buttons */
}

/* Heading wrapper optional styling */
.hero-content .heading-wrapper {
    max-width: 1000px;
}

/* Heading styles */
.hero-content h1 {
    color: white;
    font-weight: bold;
    font-size: 100px;
    margin: 0;
}

.hero-content h2 {
    color: white;
    margin-top: -10px;
    
    font-weight: bold;
    font-size: 60px;
}

/* Buttons container */
.hero-buttons {
    display: flex;
    flex-direction: row;  /* horizontal buttons on large screens */
    justify-content: center;
    gap: 1rem;
}

/* Button styling */
.hero-buttons .btn {
    min-width: 220px;
    padding: 14px 24px;
    text-align: center;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Business button (orange) */
.btn-business {
    background-color: #FF6600;
    color: #ffffff;
}

.btn-business:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

/* Media button (dark blue) */
.btn-media {
    background-color: #004080;
    color: #ffffff;
}

.btn-media:hover {
    background-color: #003366;
    transform: translateY(-2px);
}

/* Overlay covering the slideshow */
#main-content-home .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3); /* slightly black, adjust opacity */
    z-index: 2; /* between background layers (z=1) and content (z=3) */
    pointer-events: none; /* allow clicks on buttons */
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .hero-content {
        max-width: 90vw;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column; /* stack buttons vertically */
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        min-width: 180px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* 6.0 END Footer menu ------------------------------------------------------------------------------------------------*/


/* #7. Business login page
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/





/* Wrapper for flex centering the login form */
body.login-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background */
#login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

/* Login form centering container */
.login-content {
    flex: 1;
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
    width: 100%;
    padding: 20px;
}

/* Login form box */
#login-page {
    width: 350px;
    max-width: 100%;
    padding: 40px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-radius: 12px;
    text-align: center;
}

/* Inputs */
#login-page .form-field input[type="text"],
#login-page .form-field input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s, box-shadow 0.3s;
}

#login-page .form-field input[type="text"]:focus,
#login-page .form-field input[type="password"]:focus {
    border-color: #0073aa;
    box-shadow: 0 0 8px rgba(0, 115, 170, 0.3);
    outline: none;
}

/* Submit button */
#login-page input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

#primary .entry-header .entry-title {
    color: #0B3D91;
    font-weight: bold;
}




#login-page input[type="submit"]:hover {
    background-color: #005177;
}

/* Links */
#login-page .login-link {
    color: #0073aa;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800px;
    display: inline-block;
    margin: 5px 0;
    transition: color 0.3s;
}

#login-page .login-link:hover {
    color: #005177;
}

/* Back button */
#back-button {
    padding: 10px 15px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
}

#back-button:hover {
    background-color: #cfcfcf;
}

/* Messages */
.success-message {
    color: #28a745;
}

.error-message {
    color: #dc3545;
}

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






/* 7.0 END business login menu ------------------------------------------------------------------------------------------------*/

/* #8. Business register page
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/


/* Normalize ALL inputs inside the register form */
#register-page .form-field input {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    line-height: 1.4;
    box-sizing: border-box;

    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    color: #333;

    /* Remove browser-specific styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Keep focus styling consistent */
#register-page .form-field input:focus {
    outline: none;
    border-color: #2a7fff;
}

/* ======================
   TERMS MODAL
====================== */
#terms-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* enable scrolling if content is tall */
    background-color: rgba(0,0,0,0.6);
    display: none;
    transition: opacity 0.3s ease;
}

/* Modal content box */
.terms-modal-content {
    background-color: #fff;
    margin: 50px auto;
    padding: 30px;  /* increased padding */
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-height: 80vh; /* prevent it from taking full screen */
    overflow-y: auto;  /* vertical scroll if content exceeds max-height */
}

/* Close button */
.terms-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.terms-close:hover,
.terms-close:focus {
    color: #000;
    text-decoration: none;
}

/* Smooth fade-in/fade-out */
#terms-modal.show {
    display: block;
    opacity: 1;
}

#terms-modal.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Terms text styling */
.terms-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    color: #222;
}

.terms-text p {
    margin-bottom: 16px; /* spacing between paragraphs */
}

.terms-text strong {
    font-weight: bold; /* emphasize headings or important words */
}

.terms-text a {
    color: #0073aa; /* WordPress link color */
    text-decoration: underline;
}

/* Force left alignment for everything inside the modal */
#terms-modal, 
#terms-modal * {
    text-align: left !important;
}

.terms-modal-content h2 {
    margin-bottom: 16px; /* space between title and first paragraph */
    font-weight: bold;    /* make the title bold */
}



/* ======================
   FORM CHECKBOXES
====================== */
.register-terms-and-conditions,
.register-email-preferences label {
    display: flex;           /* use flex to align checkbox and text */
    align-items: center;     /* vertically center text with checkbox */
    justify-content: flex-start; /* align to left */
    gap: 8px;                /* space between checkbox and text */
    text-align: left;        /* ensure text itself is left-aligned */
    margin-bottom: 10px;     /* spacing between checkboxes */
}



/* ======================
   RESPONSIVE ADJUSTMENTS
====================== */
@media screen and (max-width: 480px) {
    .terms-modal-content {
        padding: 20px;
    }

    .terms-close {
        font-size: 24px;
        top: 5px;
        right: 10px;
    }

    .terms-text {
        font-size: 13px;
    }
}


/* Wrapper for flex centering the register form */
body.register-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background */
#register-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

#register-page {
    min-height: 100vh;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

#register-page .form-box {
    width: 400px;
    max-width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-radius: 12px;
    text-align: center;
}

#my-account-page .account-warning.email-warning p {
  color: red;
  margin: 0;
}

/* Style the resend verification button */
#my-account-page .account-warning.email-warning .resend-verification-btn {
  color: #fff;                /* text color */
  background-color: #b71c1c;  /* deep red background */
  font-weight: bold;           /* bold text */
  border: none;               /* remove default border */
  padding: 8px 14px;          /* padding */
  border-radius: 4px;         /* rounded corners */
  cursor: pointer;            /* pointer on hover */
  font-size: 14px;
  display: inline-block;       /* ensures it can be centered */
}

/* Hover state */
#my-account-page .account-warning.email-warning .resend-verification-btn:hover {
  background-color: #8b0000;  /* deeper red on hover */
}

/* Center the button inside the warning box */
#my-account-page .account-warning.email-warning form {
  text-align: center;          /* centers inline / inline-block children */
  margin-top: 10px;            /* optional spacing above button */
  margin-bottom: 10px;
}


/* Title */
#register-title h2 {
    margin-bottom: 10px;
    font-size: 26px;
}

/* Paragraph text */
#register-page p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

/* Form fields */
#register-page .form-field input[type="text"],
#register-page .form-field input[type="email"],
#register-page .form-field input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s, box-shadow 0.3s;
}

/* Focus state */
#register-page .form-field input:focus {
    border-color: #0073aa;
    box-shadow: 0 0 8px rgba(0, 115, 170, 0.3);
    outline: none;
}

/* Terms & conditions */
.register-terms-and-conditions {
    display: block;
    text-align: left;
    font-size: 14px;
    margin: 15px 0;
    color: #333;
}

.register-terms-and-conditions input {
    margin-right: 6px;
}

.register-terms-and-conditions a {
    color: #0073aa;
    text-decoration: none;
}

.register-terms-and-conditions a:hover {
    text-decoration: underline;
}

/* Submit button */
#register-page input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

#register-page input[type="submit"]:hover {
    background-color: #005177;
}

/* Links */
#register-page .login-link {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
}

#register-page .login-link:hover {
    color: #005177;
}

/* Error message */
#error-msg {
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 10px;
}

.entry-content p {
  text-align: center;
}



/* 8.0 END business register menu ------------------------------------------------------------------------------------------------*/


/* #9. My-account page
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/

/* Container */
.myaccount-not-logged-in {
    text-align: center;
    margin: 30px 0;
}

/* Normal login text */
.myaccount-not-logged-in .login-text {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Create Account emphasis */
.myaccount-not-logged-in .create-account a {
    display: inline-block;
    font-size: 24px;          /* Bigger text */
    font-weight: 700;
    color: #ffffff;           /* Text color */
    background-color: #0073aa; /* Button color */
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Hover effect */
.myaccount-not-logged-in .create-account a:hover {
    background-color: #005f8d;
    transform: scale(1.05);
}




/* Overall page wrapper */
.edit-account-page {
  max-width: 500px;       /* width similar to login/register form */
  margin: 40px auto;      /* center horizontally with some top/bottom spacing */
  padding: 30px;
  background: rgba(255, 255, 255, 0.95); /* slightly transparent white background */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Center the form and headings */
.edit-account-page form {
  text-align: center;
}

.edit-account-page label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  text-align: left;
}

.edit-account-page input[type="text"],
.edit-account-page input[type="url"],
.edit-account-page input[type="email"],
.edit-account-page input[type="password"],
.edit-account-page textarea,
.edit-account-page select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.edit-account-page textarea {
  resize: vertical;
  min-height: 80px;
}

/* Account warnings */
.account-warning {
    color: #b00020; /* red */
    text-align: left;
    margin-bottom: 24px; /* space between warnings */
}

.account-warning p {
    margin-bottom: 10px;
}

.account-warning form {
    margin-top: 10px;
}

/* Optional: make resend button match warning */
.resend-verification-btn {
    background: transparent;
    border: 1px solid #b00020;
    color: #b00020;
    padding: 6px 12px;
    cursor: pointer;
}

.resend-verification-btn:hover {
    background: #b00020;
    color: #fff;
}

/* Success message spacing */
.verification-success {
    margin-top: 10px;
    color: #0a7d2c; /* green */
}


/* Buttons */
.update-account-button {
  display: inline-block;
  background: #0073aa;       /* WordPress blue style */
  color: #fff;
  border: none;
  padding: 10px 25px;
  margin: 10px auto;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.update-account-button:hover {
  background: #005177;
}

/* Error and success messages */
.edit-account-page p {
  text-align: center;
}

.edit-account-page p.error-message {
  color: #d63638;
  margin-bottom: 10px;
}

.edit-account-page p.success-message {
  color: #0073aa;
  margin-bottom: 10px;
}

/* Optional: links inside messages */
.edit-account-page p a {
  color: #0073aa;
  text-decoration: underline;
}

/* Optional: back button section */
.back-account-section {
  margin-bottom: 20px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .edit-account-page {
    padding: 20px;
    margin: 20px auto;
  }
}

/* 9.0 END edit-account menu ------------------------------------------------------------------------------------------------*/

/* #10. Edit-account page
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/

/* my-account.css */

#my-account-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

#my-account-page h1 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.account-section {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fafafa;
    text-align: center;
}

.account-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.account-section p {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 400px; /* limit paragraph width */
    margin-left: auto;
    margin-right: auto;
}

.account-section a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.account-section a:hover {
    background-color: #005177;
}

/* 10.0 End My-account menu ------------------------------------------------------------------------------------------------*/

/* #11. Edit-email settings page
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/


/* edit-account.css */

#edit-account-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

#edit-account-page h1 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

/* ===== FORM SECTION ===== */
.edit-account-section {
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 8px;
    background-color: #fafafa;
}

/* ===== LABELS ===== */
.edit-account-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

/* ===== INPUTS ===== */
.edit-account-section input,
.edit-account-section textarea,
.edit-account-section select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}

.edit-account-section textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== BUTTON ROW ===== */
.form-actions {
    text-align: center;
    margin-top: 25px;
}

/* ===== BUTTONS ===== */
.form-actions a,
.form-actions button {
    display: inline-block;
    padding: 8px 18px;
    margin: 0 6px;
    font-size: 1em;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

/* Save button */
.form-actions button {
    background-color: #0073aa;
    color: #fff;
}

.form-actions button:hover {
    background-color: #005177;
}

/* Back button */
.form-actions a {
    background-color: #e5e5e5;
    color: #333;
}

.form-actions a:hover {
    background-color: #d5d5d5;
}

/* ===== MESSAGES ===== */
.notice-success {
    text-align: center;
    background-color: #e7f7ed;
    border: 1px solid #b7e1c1;
    color: #1e7e34;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.notice-error {
    text-align: center;
    background-color: #fdecea;
    border: 1px solid #f5c2c7;
    color: #a71d2a;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}



   

   /* 11 Edit-email settings END ------------------------------------------------------------------------------------------------*/


    /* #12. Reset Password 
    ------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------*/

/* ==============================
   RESET PASSWORD PAGE
   ============================== */

   /* FULL PAGE CENTERING */
#reset-password-wrapper {
   
    display: flex;
    justify-content: center;
    position: relative;
    padding: 20px;
}

/* BACKGROUND */
#login-background {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

/* FORM BOX */
#forgot-password-page.form-box {
    width: 420px;
    max-width: 100%;
    padding: 40px;
    background: rgba(255,255,255,0.96);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    text-align: center;
}

/* INPUTS */
#reset_password input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* SUBMIT */
.custom-submit {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.custom-submit:hover {
    background: #005177;
}

/* LINKS */
.back-to-login {
    display: block;
    margin-top: 15px;
    color: #0073aa;
    text-decoration: none;
}

/* MESSAGES */
.error-message {
    color: #dc3545;
    margin-bottom: 10px;
}

.success-message {
    color: #28a745;
    margin-bottom: 10px;
}



      /* 12 Reset password END ------------------------------------------------------------------------------------------------*/


       /* #13. Login BUsiness / Media 
    ------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------*/

/* Full screen wrapper */
#login-business-media-wrapper {
    position: fixed;        /* stays full screen */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

/* Background image layers */
.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;     /* fills screen */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

/* Dark overlay on top of images */
.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Content centered above background */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: buttons styling safety */
.login-buttons-container {
    text-align: center;
}


    
/* Full-screen section (not fixed) */
#login-business-media-wrapper {
    position: relative;      /* ← key change */
    width: 100%;
    min-height: 100vh;       /* fills viewport, allows page to grow */
    overflow: hidden;
    z-index: 0;
}


.login-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* space between buttons */
}

.login-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.login-button.business-login {
    background-color: #0073aa; /* WordPress blue */
}

.login-button.business-login:hover {
    background-color: #005177;
}

.login-button.media-login {
    background-color: #ff9900; /* Orange */
}

.login-button.media-login:hover {
    background-color: #cc7a00;
}


/* Container for buttons */
.login-buttons-container {
    display: flex;
    justify-content: center;
    gap: 1rem; /* space between buttons */
    flex-wrap: wrap; /* wrap on small screens */
}

/* Business login button (orange) */
.login-button.business-login {
    background-color: #FF6600; /* orange */
    color: #ffffff;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

/* Hover effect for business login button */
.login-button.business-login:hover {
    background-color: #e65c00; /* slightly darker orange */
    transform: translateY(-2px); /* subtle lift */
}

/* Media login button (dark blue) */
.login-button.media-login {
    background-color: #004080; /* dark blue */
    color: #ffffff;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

/* Hover effect for media login button */
.login-button.media-login:hover {
    background-color: #003366; /* slightly darker blue */
    transform: translateY(-2px); /* subtle lift */
}

/* Optional: larger buttons */
.login-buttons-container .login-button {
    min-width: 220px;  /* adjust width as needed */
    padding: 14px 24px;
    border-radius: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-buttons-container {
        flex-direction: column; /* stack buttons vertically */
        align-items: center;
        gap: 0.75rem;
    }

    .login-buttons-container .login-button {
        min-width: 180px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}


      /* 13 Login BUsiness / Media  END ------------------------------------------------------------------------------------------------*/


/* #14. Business database page
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/

   /* Search button container */
.filter-submit {
    display: flex;
    align-items: flex-end; /* aligns with selects */
}

/* Search button */
.filter-submit button {
    background-color: #2563eb; /* blue */
    color: #ffffff;
    border: none;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

/* Hover */
.filter-submit button:hover {
    background-color: #1d4ed8;
}

/* Active (click) */
.filter-submit button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) inset;
}

/* Focus (accessibility) */
.filter-submit button:focus {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

/* Disabled state (if you ever use it) */
.filter-submit button:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}


.database-header {
    margin-bottom: 30px;
}

.database-filters {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
     margin-left: 250px;
    margin-right: 250px;
    justify-items: center;
}

.filter-group {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.filter-group select {
    min-width: 200px;
}

.database-results ul {
    list-style: none;
    padding: 0;
}

.business-item {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    margin-left: 250px;
    margin-right: 250px;
    justify-items: left;
}

.business-name {
    margin: 0;
    font-size: 18px;
}

/* Mobile layout */
@media (max-width: 768px) {

    /* Filters container */
    .database-filters {
        margin-left: 0;
        margin-right: 0;
        padding: 16px;
        border-radius: 0;
    }

    /* Stack filter groups vertically */
    .filter-group {
        display: block;
        margin-right: 0;
        width: 100%;
    }

    .filter-group select {
        width: 100%;
        min-width: unset;
    }

    /* Search button container */
    .filter-submit {
        width: 100%;
        display: block;
    }

    /* Search button */
    .filter-submit button {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        border-radius: 8px;
    }

    /* Results list */
    .business-item {
        margin-left: 0;
        margin-right: 0;
        padding: 16px;
    }

    .business-name {
        font-size: 16px;
    }
}



/* 14 Login Business / Media  END ------------------------------------------------------------------------------------------------*/


/* #15. 404 Error
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/


/* 404 Page Styles */
.error-404-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f7f7f7;
    text-align: center;
    padding: 40px 20px;
}

.page-content-404 {
    max-width: 800px;
    width: 100%;
}

#error-image {
   
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.page-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

#back-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#back-button:hover {
    background-color: #005177;
}



/* 15 404 Error  END ------------------------------------------------------------------------------------------------*/


/* #16. Contact Page
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/
@media (max-width: 768px) {


  #beacon-contact-form h1 {

    font-size: 3.2rem;

   }

}

/* 16 Contact page  END ------------------------------------------------------------------------------------------------*/


/* #17. About us
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/


.about-page-wrapper p {
    margin-bottom: 1.75rem;
    line-height: 1.7; /* optional but highly recommended */
}

@media (max-width: 768px) {

.aboutus-image img {
        max-width: 100%; /* adjust as needed */
        margin: 0 auto;     /* center the image */
    }
}

/* 17 About us END ------------------------------------------------------------------------------------------------*/



/* #18. Forgot password
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/
/* Container for the form */

/* Forgot Password Form Wrapper */
.forgot-password-wrap {
    max-width: 400px;
    margin: 50px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-align: center; /* headings centered */
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Form Heading */
.forgot-password-wrap h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0073aa;
}

/* Message (success or error) */
.forgot-password-wrap p {
    font-size: 14px;
    margin-bottom: 20px;
    color: inherit;
    text-align: center;
}

/* Labels */
.forgot-password-wrap label {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* left-aligned text */
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

/* Input Fields */
.forgot-password-wrap input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border 0.3s, box-shadow 0.3s;
}

.forgot-password-wrap input[type="email"]:focus {
    border-color: #0073aa;
    box-shadow: 0 0 8px rgba(0,115,170,0.3);
    outline: none;
}

/* Submit Button */
.forgot-password-wrap button {
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.forgot-password-wrap button:hover {
    background-color: #005177;
}

/* Checkbox styling for reset options if any */
.forgot-password-wrap input[type="checkbox"] {
    margin-right: 6px;
}

/* Responsive tweaks */
@media (max-width: 500px) {
    .forgot-password-wrap {
        padding: 25px;
    }
    
    .forgot-password-wrap h2 {
        font-size: 22px;
    }

    .forgot-password-wrap input[type="email"],
    .forgot-password-wrap button {
        font-size: 14px;
    }
}



/* 18 Forgot password END ------------------------------------------------------------------------------------------------*/




/* #19. Logout
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/
/* Container for the form */

.logout-center {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logout-center a {
    font-size: 20px;
    text-decoration: none;
}

/* 19 Logout END ------------------------------------------------------------------------------------------------*/




/* #20. Media requests
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/
/* Container for the form */
/* ================================
   MEDIA REQUEST PAGE
================================ */

.media-request-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 16px;
    font-family: inherit;
}

/* Title */
.media-request-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
    text-align: center;
}

/* ================================
   ALERT MESSAGES
================================ */

.media-request-success,
.media-request-error {
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
}

.media-request-success {
    background: #e7f7ef;
    color: #1e7a46;
    border: 1px solid #bfe6d2;
}

.media-request-error {
    background: #fdeaea;
    color: #b3261e;
    border: 1px solid #f5c2c0;
}

/* ================================
   FORM LAYOUT
================================ */

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

/* Each field */
.form-group {
    margin-bottom: 18px;
}

/* Labels */
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Inputs / Textareas / Selects */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus state */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* Textarea tweaks */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ================================
   SUBMIT BUTTON
================================ */

.form-submit {
    margin-top: 8px;
}

.btn-primary {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-primary:active {
    transform: translateY(1px);
}

/* ================================
   DESKTOP ENHANCEMENTS
================================ */

@media (min-width: 768px) {

    .media-request-title {
        font-size: 2rem;
    }

    .media-request-form {
        padding: 32px;
    }

    .form-submit {
        display: flex;
        justify-content: center;
    }

    .btn-primary {
        width: auto;
        min-width: 240px;
    }
}

/* ================================
   ACCESSIBILITY / REQUIRED
================================ */

.form-group input:required,
.form-group textarea:required,
.form-group select:required {
    background-image: none;
}

/* Optional: highlight invalid fields */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
    border-color: #e11d48;
}


/* 20 Media Requests END ------------------------------------------------------------------------------------------------*/



/* #21. Blog
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/
/* Only target single blog posts */
body.single-post {
  font-family: Arial, sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* ------------------------------
   Main Content Area
------------------------------ */
body.single-post .site-main {
  max-width: 1000px; /* Wider content area */
  margin: 0 auto;
  padding: 40px 20px;
}

/* ------------------------------
   Post Header: Title & Date
------------------------------ */
body.single-post .entry-header {
  text-align: center;
  margin-bottom: 30px;
}

body.single-post .entry-title {
  font-size: 3rem; /* Bigger title */
  font-weight: bold;
  margin: 0 0 10px;
  color: #111;
}

body.single-post .post-date {
  font-size: 1rem; /* Slightly bigger date */
  color: #777;
}

/* ------------------------------
   Featured Image
------------------------------ */
body.single-post .featured-image-wrapped {
  text-align: center;
  margin-bottom: 30px;
}

body.single-post .featured-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

body.single-post .featured-image-caption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 5px;
  font-style: italic;
  text-align: center;
}

/* ------------------------------
   Post Content
------------------------------ */
body.single-post .entry-content {
  font-size: 1.15rem; /* Bigger text */
  line-height: 1.9;
  color: #333;
  text-align: left; /* Force all paragraphs left-aligned */
}

body.single-post .entry-content p {
  margin-bottom: 22px;
  text-align: left; /* Ensure no paragraph is centered */
}

body.single-post .entry-content h2,
body.single-post .entry-content h3,
body.single-post .entry-content h4 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 1.6rem; /* Slightly bigger headings */
}

/* Links */
body.single-post .entry-content a {
  color: #0073aa;
  text-decoration: underline;
}

body.single-post .entry-content a:hover {
  color: #005177;
}

/* ------------------------------
   Lists (bullets and numbers)
------------------------------ */
body.single-post .entry-content ul,
body.single-post .entry-content ol {
  margin: 20px 0 20px 40px;  /* Indent from left */
  padding-left: 20px;
  list-style-position: outside;
}

body.single-post .entry-content ul {
  list-style-type: disc;  /* Solid black bullets */
}

body.single-post .entry-content ol {
  list-style-type: decimal; /* Numbers for ordered lists */
}

body.single-post .entry-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ------------------------------
   Author & Share Section
------------------------------ */
body.single-post .post-author-share-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

body.single-post .avatar-wrapper img {
  border-radius: 50%;
  display: block;
}

body.single-post .author-wrapper {
  flex: 1;
}

body.single-post .post-author {
  font-weight: bold;
  margin: 0 0 5px;
}

body.single-post .post-author a {
  color: #0073aa;
  text-decoration: none;
}

body.single-post .post-author a:hover {
  text-decoration: underline;
}

body.single-post .share-wrapper {
  text-align: right;
}

/* ------------------------------
   Responsive Adjustments
------------------------------ */
@media (max-width: 1024px) {
  body.single-post .site-main {
    max-width: 90%; /* Slightly narrower on tablets */
  }
}

@media (max-width: 768px) {
  body.single-post .post-author-share-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  body.single-post .share-wrapper {
    text-align: left;
  }
}


/* 21 Blog END ------------------------------------------------------------------------------------------------*/



/* #22. Blog
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------
   ------------------------------------------------------------------------------------------------*/




/* ------------------------------
   Archive Page Styling
------------------------------ */
.archive-main {
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Archive header */
.archive-inner .page-header {
  text-align: center;
  margin-bottom: 40px;
}

.archive-inner .page-title-archive {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  color: #111;
}

/* Divider under section headers */
.archive-divider {
  border: none;
  border-top: 2px solid #eee;
  margin: 10px 0 30px;
}

/* Latest posts heading */
#archive-latest {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Archive post list */
.archive-post-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Individual archive post item */
.archive-post-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.archive-post-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Left content */
.archive-post-left {
  flex: 1 1 60%;
  text-align: left;
}

.archive-post-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.archive-post-title a {
  text-decoration: none;
  color: #111;
}

.archive-post-title a:hover {
  color: #0073aa;
}

.archive-post-short-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.archive-post-meta {
  font-size: 0.9rem;
  color: #777;
}

.archive-post-meta span {
  margin-right: 15px;
}

/* Right content (thumbnail) */
.archive-post-right {
  flex: 1 1 35%;
  text-align: center;
}

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

.archive-image-caption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 5px;
  font-style: italic;
  text-align: center;
}

/* Responsive: single column on tablets/mobile */
@media (max-width: 1024px) {
  .archive-post-item {
    flex-direction: column;
  }

  .archive-post-left, 
  .archive-post-right {
    flex: 1 1 100%;
  }
}

/* 22 Archive ------------------------------------------------------------------------------------------------*/
