/**
 * Block: Navbar with CTA - Styles
 */

/* Base Styles */
.acf-block {
    position: relative;
}

/* Universal Container */
.acf-block .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Google Fonts - Montserrat and Roboto */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700;900&family=Lexend:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* Font Family Classes */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-roboto {
    font-family: 'Roboto', sans-serif;
}

.font-lexend {
    font-family: 'Lexend', sans-serif;
}

.font-plus-jakarta-sans {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Navbar with CTA Block */
.navbar-cta {
    padding: 14px 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-cta.sticky-navbar {
    position: sticky;
    top: 0;
}

.navbar-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Area */
.navbar-logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar-logo-circle {
    width: 64px;
    height: 64px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.navbar-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-logo-text {
    line-height: 1.2;
}

.navbar-heading {
    font-weight: 800;
    text-transform: none;
    letter-spacing: 1px;
}

.navbar-tagline {
    display: block;
    font-weight: 400;
    letter-spacing: 2px;
}

/* CTA Area */
.navbar-cta-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-cta-button {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-cta-button-1 {
    /* Styled with inline styles */
}

.navbar-cta-button-1:hover {
    transform: translateY(-1px);
}

.navbar-cta-button-2 {
    display: none;
    /* Hidden by default on mobile */
}

/* Show second button on desktop */
@media (min-width: 768px) {
    .navbar-cta-button-2 {
        display: inline-flex;
    }
}