/*
Theme Name: Lionberg Nitro
Theme URI: https://lionbergnitro.com
Author: Your Name
Author URI: https://yoursite.com
Description: A fully customizable WordPress theme for Lionberg Nitro with Secure Custom Fields integration
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lionberg-nitro
Domain Path: /languages

This theme requires the Secure Custom Fields (SCF) plugin to be activated.
*/

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

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #f3f3f3;
	background-color: #000000;
}

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

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

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

/* Header Styles */
header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4af37;
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #d4af37;
    text-decoration: none;
}

.btn:hover {
    background-color: transparent;
    color: #d4af37;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    margin: 0 10px;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.product-price {
    font-size: 18px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-card .btn {
    width: 100%;
    text-align: center;
}

/* Features Section */
.features-section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d4af37;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.testimonial-text {
    margin-bottom: 20px;
    color: #666;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #000;
}

.testimonial-position {
    color: #999;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Footer Styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

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

/* Single Product Page 
.product-hero-full {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: center;
}
*/
.product-hero-full h1 {
    font-size: 30px;
    color: #fff;
}
.intro-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    padding: 10px 0;
}


.bg-left-section {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    padding: 150px 0;
    position: relative;
}

.emboss-box {
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    padding: 40px;
    max-width: 450px;
    margin-left: auto;
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 0;
}

.split-content {
    position: relative;
    margin-top: 40px;
}

.split-content.emboss-box {
    transform: translateY(40px);
}
.our-brews {
    padding: 10px 0;
}
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-highlights {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
}

.highlight-item h4 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #d4af37;
}

.highlight-item p {
    font-size: 12px;
    color: #aaa;
}
.related-recipes {
    padding: 120px 0;
    background: #000;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.recipe-card {
    text-align: center;
}

.recipe-type {
    font-size: 12px;
    letter-spacing: 2px;
    color: #d4af37;
}

.recipe-card h4 {
    font-size: 20px;
    margin: 10px 0;
}

.recipe-card p {
    font-size: 13px;
    color: #cfcfcf;
}

@media (max-width: 1024px) {

    .intro-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .bg-left-section {
        background-position: center top;
    }

    .product-hero-full h1 {
        font-size: 40px;
    }
.hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 20px;
    }

    .recipes-grid {
        grid-template-columns: 1fr;
    }
}
/* Hero Section */
.blog-hero-section {
    position: relative;
    padding-top: 50px;
    padding-bottom: 10px;
    background-color: #000;
}

.blog-hero-wrapper {
    position: relative;
    width: 100%;
}

.blog-hero-text-overlay {
    position: relative;
    z-index: 10;
    padding-top: 2rem;
}

.blog-hero-title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.blog-hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: none;
    border-radius: 0;
}

/* Content Sections */
.blog-content-section {
    padding: 10px 0;
    position: relative;
}

.blog-content-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(229, 193, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.content-text-wrapper {
    position: relative;
    z-index: 2;
}

/* Desktop Styles for Overlap and Hero */
@media (min-width: 992px) {
    .blog-hero-text-overlay {
        position: absolute;
        top: 20px;
        left: 0;
        width: 100%;
        padding-top: 0;
        pointer-events: none;
        /* Let clicks pass through if needed */
    }

    .blog-hero-title {
        font-size: 3.5rem;
    }

    /* New Desktop Text Overlay Implementation */
    .desktop-text-overlay-right {
        position: absolute;
        top: 50%;
        right: 0;
        width: 60%;
        transform: translateY(-50%);
        z-index: 10;
        padding-left: 40px;
        /* Spacing from the "edge" although it overlaps */
    }

    /* Split Layout Styles (Custom User Request) */
    .split-layout-section {
        position: relative;
        width: 100%;
        /* Ensure content stacks properly on mobile */
        overflow: hidden;
    }

    /* Mobile Default Styles */
    .row-top-content {
        display: flex;
        flex-direction: column-reverse;
        /* Title on top, Image below */
        width: 100%;
    }

    .split-image {
        width: 100%;
        height: auto;
        min-height: 400px;
        /* Ensure some height on mobile */
    }

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

    .blog-split-title {
        width: 100%;
        padding: 2rem 1rem;
        background-color: #000;
    }

    .blog-split-description {
        width: 100%;
        padding: 2rem 1rem;
    }

    /* Desktop Styles */
    @media (min-width: 992px) {
        .split-layout-section {
            display: block;
            padding-bottom: 4rem;
        }

        .row-top-content {
            display: flex;
            flex-direction: row;
            /* Image Left, Title Right */
            align-items: center;
            /* Vertically center title next to image */
            width: 100%;
        }

        .split-image {
            position: relative;
            /* Changing from absolute to relative/static flow */
            width: 40%;
            height: auto;
        }

        .blog-split-title {
            width: 60%;
            padding: 4rem;
            /* Standard comfortable padding */
            background: transparent;
            text-align: left;
        }

        .blog-split-description {
            width: 100%;
            padding: 2rem 5rem;
            /* Padding to ensure readability across full width */
            text-align: left;
            /* Keep text left aligned */
        }

        /* Optional: Limit description width for readability if it creates very long lines */
        .blog-split-description>* {
            max-width: 1000px;
        }
    }


    .blog-section-title {
        font-size: 3rem;
        margin-bottom: 30px;
        position: relative;
    }

    .feature-list {
        list-style: none;
        padding-left: 0;
        margin-top: 2rem;
    }

    .feature-list li {
        margin-bottom: 15px;
        padding-left: 25px;
        position: relative;
        font-size: 1.1rem;
        color: #ddd;
    }

    .feature-list li::before {
        content: "➢";
        color: #e5c100;
        position: absolute;
        left: 0;
        font-size: 1.2rem;
        /* Adjusted size */
        top: -2px;
        /* Slight adjustment for alignment */
    }

    /* Images */
    .content-image {
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        transition: all 0.4s ease;
        opacity: 0.9;
    }

    .content-image:hover {
        transform: scale(1.03);
        opacity: 1;
        box-shadow: 0 20px 50px rgba(229, 193, 0, 0.1);
    }

    /* Footer */
    footer {
        background-color: #080808;
        padding: 80px 0 40px;
        border-top: 1px solid #1a1a1a;
    }

    .footer-links h5 {
        font-size: 1rem;
        color: #666;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .footer-links a {
        color: #aaa;
        text-decoration: none;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #e5c100;
        padding-left: 5px;
    }

    /* Utilities */
    .text-gold {
        color: #e5c100 !important;
    }

    .btn-primary {
        background-color: transparent;
        border: 2px solid #e5c100;
        color: #e5c100;
        font-weight: 700;
        text-transform: uppercase;
        padding: 12px 35px;
        letter-spacing: 2px;
        transition: all 0.3s ease;
        border-radius: 0;
    }

    .btn-primary:hover {
        background-color: #e5c100;
        color: #000;
        box-shadow: 0 0 20px rgba(229, 193, 0, 0.4);
    }
}

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .blog-hero-title {
            font-size: 3rem;
        }

        .blog-section-title {
            font-size: 2.2rem;
        }

        .blog-content-section {
            padding: 60px 0;
        }

        .ps-lg-5,
        .pe-lg-5 {
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-top: 30px;
        }
    }
.page-body p strong
 {
    color: #b28b34;
}
ul#menu-terms {
    display: inline-flex;
    font-size: 14px;
}
ul#menu-terms li
 {
    margin-right: 12px;
}
.intro-right .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px; /* space between image and text */
    margin-bottom: 20px;
}

.intro-right .highlight-item img {
    width: 75px;  /* adjust if needed */
    height: auto;
}

.intro-right .highlight-item h4 {
    margin: 0;
	font-size:12px;
}
section.product-intro h1{
	font-size:30px;
}
.our-brews-section {
    background: #000;
}

.brew-card {
    position: relative;
    background: #000;
}

.brew-card img {
    width: 100%;
    height: auto;
    display: block;
}

.brew-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 40%, rgba(0,0,0,0));
}

.brew-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.brew-desc {
    font-size: 12px;
    margin-bottom: 5px;
    color: #ddd;
	 display: -webkit-box;
    -webkit-line-clamp: 2;   /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
	background:#000000;
	padding:5px 20px;
	width: 90%;
}

.brew-btn {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
	font-size:12px;
}

.brew-btn:hover {
    color: #fff;
}
.related-recipes {
    background: #000;
    color: #fff;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.recipes-intro {
    font-size: 14px;
    color: #bbb;
}

.recipe-card {
    overflow: hidden;
}

.recipe-card img {
    width: 100%;
    height: auto;
    display: block;
}

.recipe-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.recipe-text h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.recipe-text p {
    font-size: 14px;
    color: #ccc;
}

.large-card img {
    min-height: 450px;
    object-fit: cover;
}

.small-card img {
    min-height: 250px;
    object-fit: cover;
}

/* Dropdown parent */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Remove arrow spacing issue */
.navbar-nav .dropdown-menu {
    background-color: #000;
    border: none;
}

/* Dropdown links */
.navbar-nav .dropdown-menu .dropdown-item {
    color: #fff;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #111;
    color: #fff;
}
/* ===== AGE POPUP ===== */

.age-popup {
    position: fixed;
    inset: 0;
    background: #000;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.age-popup.active {
    display: flex;
    opacity: 1;
}

.age-box {
    width: 100%;
    max-width: 520px;
    text-align: center;
    color: #fff;
    padding: 50px 40px;
}

.age-box img {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin: 0 auto 25px;
    display: block;
}

.age-box h2 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.age-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.small-text {
    font-size: 12px;
    color: #aaa;
}

.remember {
    margin: 20px 0;
    font-size: 12px;
}

.remember input {
    margin-right: 8px;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.age-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.btn-gold {
    background: #c8a95e;
    color: #000;
    border: none;
}

.btn-gold:hover {
    background: #d6b96d;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

body.age-locked {
    overflow: hidden;
}

/* ===== MOBILE ===== */

@media (max-width: 576px) {

    .age-box {
        padding: 40px 20px;
    }

    .age-box h2 {
        font-size: 22px;
    }

    .age-text {
        font-size: 15px;
    }

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

    .age-buttons .btn {
        width: 100%;
        min-width: unset;
    }
}

.lionberg-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.lionberg-story-card {
    background: #111;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.5s ease;
    position: relative;
}

.story-image-wrap {
    display: block;
    position: relative;
    overflow: hidden;
}

.story-image-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: 0.4s ease;
}

.lionberg-story-card:hover img {
    transform: scale(1.12);
}

.lionberg-story-card:hover .story-overlay {
    opacity: 1;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.story-content h3 a {
    color: #fff;
    text-decoration: none;
}

.story-excerpt {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-readmore {
    border-bottom: 1px solid #c8a95e;
    color: #c8a95e;
    text-decoration: none;
    padding-bottom: 3px;
    transition: 0.3s ease;
}

.story-readmore:hover {
    color: #fff;
    border-color: #fff;
}

.lionberg-story-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
@media (max-width: 992px) {
    .lionberg-story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .lionberg-story-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   CONTACT PAGE 2026 STYLE
========================= */

.lionberg-contact-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.lionberg-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT SIDE */
.contact-heading {
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-subtext {
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: #c8a95e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    color: #ddd;
}

/* RIGHT SIDE FORM CARD */
.lionberg-contact-form {
    background: #111;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* CF7 INPUT STYLING */
.lionberg-contact-form input,
.lionberg-contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 12px 0;
    margin-bottom: 30px;
    color: #fff;
    font-size: 15px;
}

.lionberg-contact-form input:focus,
.lionberg-contact-form textarea:focus {
    outline: none;
    border-color: #c8a95e;
}

/* Button */
.lionberg-contact-form input[type="submit"] {
    background: #c8a95e;
    color: #000;
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.lionberg-contact-form input[type="submit"]:hover {
    background: #d6b96d;
    transform: translateY(-2px);
}

/* Remove default CF7 spacing */
.wpcf7-form p {
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .lionberg-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-heading {
        font-size: 30px;
    }

    .lionberg-contact-form {
        padding: 30px;
    }
}
