/* ==========================================================================
   BALDRON Theme — Main Stylesheet
   Colors: #7AAE37 (green), #8CCCDD (teal), #BDA89A (brown),
           #574D47 (dark brown), #3B3B3B (text), #D4B96A (gold),
           #1B3A5C (dark blue)
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --baldron-green: #7AAE37;
    --baldron-teal: #8CCCDD;
    --baldron-brown: #BDA89A;
    --baldron-dark-brown: #574D47;
    --baldron-text: #3B3B3B;
    --baldron-dark-blue: #1B3A5C;
    --baldron-gold: #D4B96A;
    --baldron-light-gray: #D9D9D9;
    --baldron-white: #FFFFFF;
    --baldron-black: #000000;
}

/* ---------- Base / Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--baldron-white);
    color: var(--baldron-text);
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1440px;
}

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

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

/* Skip Link */
.skip-link:focus {
    background-color: var(--baldron-green);
    color: var(--baldron-white);
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 24px;
    z-index: 100001;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

/* Focus-visible indicators */
.nav-btn:focus-visible,
.feature-card-link:focus-visible,
.more-news-btn:focus-visible,
.submit-btn:focus-visible,
.search-input:focus-visible,
a:focus-visible {
    outline: 2px solid var(--baldron-green);
    outline-offset: 2px;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.wp-caption {
    max-width: 100%;
}

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

.wp-caption-text {
    text-align: center;
    font-size: 0.85em;
    color: #666;
    margin-top: 0.5em;
}

/* ---------- Typography ---------- */
.page-main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--baldron-black);
    margin-bottom: 24px;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    font-weight: 700;
}

/* ---------- Hero Section ---------- */
#hero-section {
    width: 100%;
    position: relative;
    padding-bottom: 30px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    height: 318px;
    overflow: hidden;
    position: relative;
}

.hero-image-wrapper picture {
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.64;
}

/* Hero Carousel */
#heroCarousel {
    height: 318px;
}

#heroCarousel .carousel-item {
    height: 318px;
}

#heroCarousel .carousel-item img {
    height: 318px;
    object-fit: cover;
    opacity: 0.64;
}

#heroCarousel .carousel-indicators {
    bottom: 10px;
}

#heroCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--baldron-green);
}

/* ---------- Navigation Bar ---------- */
.baldron-navbar {
    margin-top: -22px;
    position: relative;
    z-index: 10;
    padding: 0;
}

.baldron-navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.baldron-navbar .navbar-collapse {
    flex-grow: 0;
}

.baldron-navbar .navbar-toggler {
    border-color: var(--baldron-green);
    background-color: var(--baldron-green);
    padding: 4px 8px;
}

.baldron-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Nav Items */
.nav-item {
    position: relative;
}

.nav-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    width: 104px;
    height: 45px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
}

.dropdown-arrow {
    font-size: 0.65em;
    vertical-align: middle;
    margin-left: 2px;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--baldron-green);
    border-radius: 7px;
}

.btn-text {
    position: relative;
    z-index: 2;
    color: var(--baldron-white);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Logo */
.logo-item {
    width: 77px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-bg {
    position: absolute;
    width: 102px;
    height: 53px;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0.93) 17.31%, rgba(255, 255, 255, 0.8) 35.58%, rgba(255, 255, 255, 0.7) 55.29%, rgba(255, 255, 255, 0.54) 75.48%, rgba(255, 255, 255, 0.3) 89.9%, rgba(255, 255, 255, 0) 100%);
    border-radius: 31px;
}

.logo-img,
.custom-logo-link img {
    width: 120px;
    height: 69px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 44px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

/* Language Button */
.lang-btn {
    width: 37px;
}

.lang-icon,
.lang-btn svg {
    position: relative;
    z-index: 2;
    width: 22px;
    height: 22px;
}

.lang-text {
    font-size: 11px;
    font-weight: 700;
}

.nav-lang {
    display: flex;
    align-items: center;
}

/* Dropdown Menus */
.baldron-dropdown {
    background-color: var(--baldron-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 160px;
}

.baldron-dropdown .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--baldron-text);
    transition: background-color 0.15s ease;
}

.baldron-dropdown .dropdown-item:hover,
.baldron-dropdown .dropdown-item:focus {
    background-color: var(--baldron-green);
    color: var(--baldron-white);
}

/* Override Bootstrap dropdown-toggle caret (we use "v" text instead) */
.nav-btn.dropdown-toggle::after {
    display: none;
}

/* ---------- Search Section ---------- */
#search-section {
    padding: 20px 0 60px;
}

.search-container {
    display: flex;
    justify-content: center;
}

.search-bar {
    width: 530px;
    max-width: 100%;
    height: 30px;
    position: relative;
}

.search-input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    background: linear-gradient(90deg, #BDA89A 0%, rgba(180, 160, 147, 0.91) 30.29%, rgba(171, 152, 139, 0.82) 50%, rgba(87, 77, 71, 0) 100%);
    padding: 0 15px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.search-input::placeholder {
    color: white;
}

/* ---------- Main Content Section ---------- */
#main-content {
    padding-bottom: 80px;
}

.content-grid {
    gap: 60px;
}

/* Feature Cards */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.feature-card-link {
    text-decoration: none;
    display: block;
}

.feature-card {
    width: 100%;
    max-width: 407px;
    height: 136px;
    position: relative;
    border-radius: 34px;
    overflow: hidden;
}

.card-bg,
.feature-card picture {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.feature-card picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    width: 91%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 34px;
    transition: opacity 0.2s ease;
}

.feature-card:hover .card-overlay {
    opacity: 0.7;
}

.shop-overlay {
    background-color: rgba(122, 174, 55, 0.5);
    mix-blend-mode: hard-light;
}

.clinic-overlay {
    background-color: rgba(113, 215, 255, 0.5);
    mix-blend-mode: color;
}

.courses-overlay {
    background-color: rgba(189, 168, 154, 0.5);
    mix-blend-mode: color;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 325px;
}

.icon-wrapper {
    position: absolute;
    left: 325px;
    top: 50%;
    transform: translateY(-50%);
    width: 82px;
    height: 98px;
}

.icon-wrapper svg:first-child,
.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-wrapper svg:last-child,
.icon-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
}

.card-title {
    position: absolute;
    left: 58px;
    top: 29px;
    font-size: 48px;
    color: var(--baldron-white);
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.48);
    margin: 0;
    font-weight: 700;
}

/* News Column */
.news-column {
    width: 100%;
    position: relative;
}

.news-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 479px;
    background-color: var(--baldron-light-gray);
    z-index: 0;
}

.news-content {
    position: relative;
    z-index: 1;
    padding: 10px;
}

.news-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--baldron-black);
    line-height: 1.2;
}

.news-text {
    font-size: 14px;
    line-height: 1.4;
    color: var(--baldron-black);
    margin-bottom: 40px;
}

.more-news-btn {
    width: 199px;
    height: 49px;
    border: none;
    background: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.more-news-btn .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--baldron-teal);
    border-radius: 0;
}

.more-news-btn .btn-label {
    position: relative;
    z-index: 1;
    color: var(--baldron-white);
    font-weight: 700;
    font-size: 16px;
}

/* ---------- Videos Section ---------- */
#videos-section {
    position: relative;
    min-height: 262px;
    margin-bottom: 150px;
    padding-bottom: 40px;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #BDA89A 0%, rgba(87, 77, 71, 0) 100%);
    z-index: 0;
}

.video-container {
    position: relative;
    z-index: 1;
    padding-top: 24px;
}

.video-container .section-title {
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--baldron-black);
}

/* No flex `gap` here — it stacks on top of Bootstrap's column gutters and
   pushes the 3rd item onto a new row. Spacing is handled by the row's gutters. */
.video-grid {
    row-gap: 24px;
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-placeholder,
.video-item img {
    width: 183px;
    height: 111px;
    background-color: #A37171;
    border-radius: 14px;
    margin-bottom: 16px;
    object-fit: cover;
}

.video-title {
    font-size: 14px;
    text-align: center;
    color: var(--baldron-black);
    margin: 0;
}

.video-title a {
    color: var(--baldron-black);
    text-decoration: none;
}

/* ---------- Gallery Section ---------- */
#gallery-section {
    margin-bottom: 240px;
}

/* Plugin-driven gallery (Modula/NextGEN/FooGallery/native [gallery]) */
.gallery-plugin-section {
    margin-bottom: 120px;
}

.gallery-plugin-section .gallery {
    margin: 0 auto;
}

.gallery-container {
    height: 367px;
    position: relative;
}

.gallery-img,
.gallery-container picture {
    position: absolute;
    top: 0;
    height: 367px;
}

.gallery-img {
    object-fit: cover;
}

.gallery-container picture img {
    height: 367px;
    object-fit: cover;
}

.img-left,
.gallery-container picture:first-child {
    left: 0;
    width: 25.5%;
    z-index: 1;
}

.img-center,
.gallery-container picture:nth-child(2) {
    left: 16.25%;
    width: 67.5%;
    z-index: 2;
}

.img-right,
.gallery-container picture:nth-child(3) {
    right: 0;
    left: auto;
    width: 25.5%;
    z-index: 1;
}

.gallery-container picture:first-child img { width: 100%; }
.gallery-container picture:nth-child(2) img { width: 100%; }
.gallery-container picture:nth-child(3) img { width: 100%; }

.gallery-carousel-img,
.gallery-carousel-img img {
    border-radius: 8px;
}

/* ---------- Newsletter Section ---------- */
#newsletter-section {
    padding-bottom: 150px;
}

.newsletter-wrapper {
    position: relative;
    max-width: 751px;
    width: 100%;
    height: 462px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.newsletter-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 370px;
    background: linear-gradient(180deg, #8CCCDD 0%, rgba(75, 110, 119, 0) 100%);
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 60px;
}

.newsletter-heading {
    font-size: 96px;
    font-family: Georgia, 'Times New Roman', serif;
    margin: 0;
    color: var(--baldron-black);
    line-height: 1;
}

.newsletter-desc {
    font-size: 16px;
    max-width: 630px;
    margin: 20px auto 40px;
    color: var(--baldron-black);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.input-wrapper {
    width: 400px;
    max-width: 100%;
    height: 36px;
    background: var(--baldron-white);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.48);
    border-radius: 34px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.email-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: var(--baldron-text);
    font-family: 'Inter', sans-serif;
    background: transparent;
}

.submit-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.submit-btn:hover {
    transform: scale(1.1);
}

.newsletter-message {
    margin-top: 15px;
    font-size: 14px;
}

.newsletter-message.success {
    color: var(--baldron-green);
}

.newsletter-message.error {
    color: #c0392b;
}

/* ---------- Footer Section ---------- */
#footer-section {
    background-color: var(--baldron-brown);
    padding: 60px 0 20px;
    width: 100%;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-col {
    color: var(--baldron-text);
    font-size: 14px;
    line-height: 1.8;
}

.footer-col h4 {
    margin: 0 0 10px 0;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-col p {
    margin: 0;
}

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

.footer-nav-list li {
    line-height: 1.8;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.social-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
}

.footer-nav-list a:hover,
.social-links li a:hover {
    color: var(--baldron-dark-brown);
}

.social-links li svg,
.social-links li img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: var(--baldron-text);
    border-top: 1px solid rgba(59, 59, 59, 0.1);
    padding-top: 20px;
}

/* ---------- Theme Cards ---------- */
.theme-cards-grid {
    max-width: 900px;
    margin: 0 auto;
}

.theme-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 150px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.theme-card--active {
    box-shadow: 0 0 0 3px var(--baldron-green);
}

.theme-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.theme-card__placeholder {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.theme-card:hover .theme-card__img,
.theme-card:hover .theme-card__placeholder {
    opacity: 0.8;
}

.theme-card__title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--baldron-white);
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* ---------- Contact Card ---------- */
.contact-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.contact-card__header {
    background-color: var(--baldron-green);
    padding: 12px 20px;
}

.contact-card__header h3 {
    color: var(--baldron-white);
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.contact-card__body {
    background-color: var(--baldron-white);
    padding: 20px;
}

.contact-card__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--baldron-text);
}

.contact-card__icon {
    color: var(--baldron-green);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-card__item a {
    color: var(--baldron-green);
    text-decoration: underline;
}

/* ---------- About Page Styles ---------- */
.page-about .about-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.we-are-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--baldron-black);
}

.team-member {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.team-member__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--baldron-black);
}

.team-member__bio {
    font-size: 14px;
    line-height: 1.8;
    color: var(--baldron-text);
}

/* ---------- Products Page ---------- */
.products-header-img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
}

.products-description {
    font-size: 14px;
    line-height: 1.8;
}

.btn-contact-us {
    display: inline-block;
    background-color: var(--baldron-green);
    color: var(--baldron-white);
    font-size: 24px;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 34px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: none;
}

.btn-contact-us:hover {
    background-color: #6a9a2f;
    color: var(--baldron-white);
    transform: translateY(-2px);
}

/* ---------- News Archive ---------- */
.news-archive-item__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--baldron-black);
    margin-bottom: 16px;
}

.news-archive-item__image {
    width: 100%;
    max-width: 700px;
    border-radius: 4px;
}

.news-archive-item__image-link {
    display: block;
}

/* ---------- Course Archive ---------- */
.page-course-archive .course-item__content {
    font-size: 14px;
    line-height: 1.8;
}

.page-course-archive .course-item__content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.page-course-archive .course-item__content ul li {
    margin-bottom: 8px;
}

.page-course-archive .course-item__image img {
    max-width: 500px;
}

/* ---------- Inner Page Shared Styles ---------- */
.page-theme-single .theme-body {
    font-size: 14px;
    line-height: 1.8;
}

.page-theme-single .theme-featured-image img {
    max-width: 600px;
}

/* ---------- Single Templates ---------- */
.single-news-article .entry-content,
.single-video .entry-content {
    font-size: 14px;
    line-height: 1.8;
}

.entry-content img {
    border-radius: 4px;
    margin: 16px 0;
}

/* ---------- Search Results ---------- */
.search-result-item h2 a:hover {
    color: var(--baldron-green);
}

/* ---------- 404 Page ---------- */
.error-404 .search-bar {
    margin: 0 auto;
}

/* ---------- WPML Language Switcher Override ---------- */
.wpml-ls-statics-shortcode_actions .wpml-ls-item {
    display: inline-block;
}

/* ---------- Post Navigation ---------- */
.post-navigation {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-navigation a {
    color: var(--baldron-green);
    font-weight: 600;
}

.posts-navigation {
    margin-top: 30px;
    text-align: center;
}

.posts-navigation a {
    color: var(--baldron-green);
    font-weight: 600;
}

/* ---------- Responsive Design ---------- */

/* >= 1440px: Gallery overflow */
@media (max-width: 1440px) {
    .gallery-container {
        overflow-x: hidden;
    }
}

/* <= 1200px */
@media (max-width: 1200px) {
    .page-main-title {
        font-size: 36px;
    }

    .gallery-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .gallery-img,
    .gallery-container picture {
        position: relative;
        left: auto !important;
        width: 100% !important;
        max-width: 972px;
        height: auto;
    }

    .gallery-container picture img {
        width: 100% !important;
        height: auto;
    }

    #gallery-section {
        margin-bottom: 80px;
    }
}

/* <= 992px: Mobile nav, stacked content */
@media (max-width: 992px) {
    .baldron-navbar .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .baldron-navbar .navbar-collapse {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 7px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .nav-btn {
        width: 140px;
    }

    .nav-lang {
        justify-content: center;
        margin-top: 10px;
    }

    .content-grid {
        gap: 30px;
    }

    .features-column {
        align-items: center;
    }

    .news-bg {
        height: 100%;
    }

    .video-grid {
        row-gap: 15px;
    }

    #videos-section {
        height: auto;
        margin-bottom: 60px;
    }

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

    .social-links li {
        justify-content: center;
    }

    .theme-card {
        height: 120px;
    }
}

/* <= 768px: Tablet */
@media (max-width: 768px) {
    #heroCarousel,
    #heroCarousel .carousel-item,
    #heroCarousel .carousel-item img,
    .hero-image-wrapper {
        height: 200px;
    }

    .search-bar {
        width: 100%;
    }

    .feature-card {
        max-width: 100%;
    }

    .card-title {
        font-size: 36px;
        left: 30px;
        top: 20px;
    }

    .icon-wrapper {
        left: auto;
        right: 10px;
    }

    .card-content {
        padding-left: 0;
    }

    .newsletter-heading {
        font-size: 56px;
    }

    .newsletter-wrapper {
        height: auto;
        padding-top: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .input-wrapper {
        width: 100%;
        max-width: 350px;
    }

    #newsletter-section {
        padding-bottom: 60px;
    }

    .page-main-title {
        font-size: 28px;
    }

    .we-are-title {
        font-size: 32px;
    }

    .btn-contact-us {
        font-size: 18px;
        padding: 12px 36px;
    }

    .news-archive-item__title {
        font-size: 24px;
    }
}

/* <= 576px: Mobile */
@media (max-width: 576px) {
    .page-main-title {
        font-size: 24px;
    }

    .card-title {
        font-size: 28px;
    }

    .video-item {
        width: 140px;
    }

    .video-placeholder,
    .video-item img {
        width: 140px;
        height: 85px;
    }

    .newsletter-heading {
        font-size: 40px;
    }

    .theme-card {
        height: 100px;
    }

    .theme-card__title {
        font-size: 16px;
        bottom: 12px;
        left: 12px;
    }

    .products-header-img {
        width: 60px;
    }
}

/* ---------- Print Styles ---------- */
@media print {
    #hero-section,
    #search-section,
    #videos-section,
    #gallery-section,
    #newsletter-section,
    #footer-section,
    .baldron-navbar,
    .theme-cards-grid {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .page-main-title {
        font-size: 24pt;
    }
}
