

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* ==========================================
   RESET
========================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ==========================================
   DESIGN TOKENS
========================================== */
:root {
    /* Colors */
    --primary-clr: #123B63;
    --secondary-clr: #676F76;
    --tertiary-clr: #DBDEE5;
    --background-clr: #F7F9FC;
    --orange: #F76B4A;
    --yellow: #FFB133;
    --green: #0B815A;
    --success: #10B981;
    --accent-clr: #2563EB;
    --accent-hover-clr: #0b3aba;
    --focus-clr: #93c5fd;
}

body { 
    margin: 0;
    /* TYPOGRAPHY */
    font-family: "Inter", sans-serif;
    color: var(--primary-clr);
    line-height: 1.6;
    background: var(--background-clr);
}

/* ==========================================
   TYPOGRAPHY
========================================== */
h1, h2, h3, h4, h5, h6, p { margin: 0; padding: 0; }

.card-body p, .card-body h3 { color: var(--primary-clr); }

.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    margin: 0; padding: 0;
}
/*
.h4, .h5, .h6 {
    font-family: "Quattrocento Sans", sans-serif;
    font-style: normal;
    text-transform: uppercase; 
} */

span.hdr_accent {
    color: var(--orange);
}

.h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
}

.h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
}

.h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
}

.h4 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 400;
}

.h5 {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 300;
}

.h6 {
  font-size: clamp(1rem, 1vw, 1.25rem);
  font-weight: 300;
}

.eyebrow {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.25rem);
    line-height: 1.5;
}
a { text-decoration: none; }

/* =====================================
   HEADER && MENU for Mobile & Desktop
===================================== */
.site_header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(247, 249, 252, .8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--tertiary-clr);
    transition: box-shadow 250ms ease;

    padding: 1rem 0;
}
.site_header.is_scrolled {
    box-shadow:
        0 4px 15px rgba(0,0,0,.28);
}

/*
.site_header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.logo img {
    max-width: 90px;
    height: auto;
} /* END Header && Menu */

.my_lead {
    font-family: "Roboto Condensed", sans-serif;
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ==========================================
           GLOBAL Buttons
========================================== */
.btn_font {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: normal;
    box-shadow: inset 0 0 10px var(--secondary-clr);
}
.btn-primary-custom,
.btn-secondary-custom, .btn_arrow {
    text-decoration: none;
    transition: 250ms ease;
    padding: .9rem 1.5rem;
    border-radius: 16px;
}

.btn-primary-custom {
    background: var(--accent-clr);
    color: white;
}

.btn-primary-custom:hover {
    background: var(--accent-hover-clr);
}

.btn-secondary-custom {
    background: var(--success);
    color: #FFFFFF;
}
.btn-secondary-custom:hover {
    background: var(--green);
}

.btn_arrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--accent-clr);
    border: 1px solid var(--accent-clr);
}
.btn_arrow  i {
    font-size: 1.25rem;
    transition: transform 0.35s ease, opacity 0.35s ease;
    /*opacity: 0;
    transform: translateX(-12px);
    transition:
        transform .3s ease,
        opacity .3s ease; */
}

.btn_arrow:hover i,
.btn_arrow:focus-visible i {
    transform: translateX(20px);
    opacity: 0;
}

/* ==========================================
              BODY Layout
========================================== */
.section_space { padding-block: 4rem; }
.container_space { padding-block: 3rem; }
.block_space { padding-block: 1.5rem; }
.element_space { padding-block: 1rem; }

/* To be worked with FLEX-display from Bootsrapt */
.gap_5 { gap: 5rem; }
.gap_4 { gap: 4rem; }
.gap_3 { gap: 3rem; }
.gap_2 { gap: 2rem; }
.gap_1 { gap: 1.25rem; }

.btn_section {
    display: flex;
    flex-wrap: wrap;
}

.ribbon i.bi-stars { color: #FFFFFF; }
.ribbon {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 12px;
}

.drk_ribbon, .ribbon_txt {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
}
.drk_ribbon {
    font-weight: 400;
    background-color: var(--primary-clr);
    color: #FFFFFF;
}


/* ==========================================
   TAGS
========================================== */
.ribbon_txt {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    color: var(--orange);
    font-weight: 500;
    text-transform: uppercase;
}


/* =====================================
   MENU BUTTONS
===================================== */
.menu_toggle,
.menu_close {
    border: 0;
    background: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
}
.menu_toggle { color: var(--primary-clr); }
.menu_toggle:hover { color: var(--secondary-clr); }
.menu_close { color: #ffffff; }

/* =====================================
   NAV for MOBILE MENU
===================================== */
.mobile_menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-clr);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.mobile_menu.is_open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* =====================================
   MOBILE MENU HEADER
===================================== */
.mobile_menu_header {
    display: flex;
    justify-content: flex-end;
    padding: 2rem;
}

/* =====================================
   MOBILE MENU CONTENT
===================================== */
.mobile_menu_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

/* =====================================
   NAVIGATION
===================================== */
.nav_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.nav_list a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: .4rem;
    transition:
        color 300ms ease;
}

/* === Underline DOTs === */
.nav_list a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: .35rem;
    height: .35rem;
    background: var(--success);
    border-radius: 999px;
    transform: translateX(-50%);
    transition:
        width 300ms ease,
        height 300ms ease,
        border-radius 300ms ease;
}

/* === Hover === */
.nav_list a:hover,
.nav_list a:focus-visible,
.nav_list a[aria-current="page"] {
    color: var(--accent-clr);
}

.nav_list a:hover::after,
.nav_list a:focus-visible::after,
.nav_list a[aria-current="page"]::after {
    width: 100%;
    height: 3px;
    border-radius: 0;
}

/* =====================================
   SOCIAL LINKS
===================================== */
.social_links {
    display: flex;
    gap: 1.25rem;
}

.social_links a i {
    color: #FFFFFF;
    font-size: 1.25rem;
    transition:
        color 350ms ease,
        transform 350ms ease;
}
.social_links a:hover {
    transform: translateY(-2px);
}
i.bi-linkedin:hover { color: #0077B5; }
i.bi-instagram:hover { color: #C13584; }
i.bi-facebook:hover { color:#1877F2; }

/* =========== FOOTER =========== 
=============================== */
footer {
    background: var(--primary-clr);
}
.ftr_nav_list a, .ftr_social_links a {
    color: var(--focus-clr);
    font-size: 1rem;
}
.ftr_nav_list a:hover { color: var(--accent-clr);}


/* =========== ABOUT page and ON =========== 
========================================== */
.feature_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 450px;
}
.scnd_tag {
    color: #FFFFFF;
    font-size: .9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--orange);
    padding: 4px 10px;
    border-radius: 6px;
}
/* =========== CONTACT page and ON =========== 
========================================== */
#contactForm {
    border: 1px solid var(--tertiary-clr);
    border-radius: 16px;
    padding: 16px;
}
.form-label {
    font-size: 1.1rem;
}
 /*social media blocks */
.social_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3 ease;
    color: #FFFFFF;
}

.social_block:hover, .social_block:focus-visible {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}
.social_content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.social_i {
    font-size: 1.5rem;
    line-height: 1;
}
.social_name {
    font-size: 1rem;
    font-weight: 600;
}
.social_arrow {
    font-size: 1.25rem;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Arrow flies out to the right */
  .social_block:hover .social_arrow,
  .social_block:focus-visible .social_arrow {
    transform: translateX(20px);
    opacity: 0;
  }
  .social_block:focus-visible {
  /*  outline: 3px solid var(--accent-hover-clr); */
    outline-offset: 3px;
  }

.linkedin { background: #007bb6; }
.facebook { background: #3b5998; }
.instagram { background: #C13584;}


/* ========================================
        MODAL STYLING STARTS HERE
======================================== */

.hdr_btn {
    width: 46px;
    height: 46px;
    color: var(--primary-clr);
    font-size: 1.25rem;
    font-weight: 600;

    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}
.hdr_btn:hover {
    color: #FFFFFF;
    background: var(--primary-clr);
}

.modal_h1 {
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-family: "Quattrocento Sans", sans-serif;

    font-style: normal;
    font-weight: 400;
}


/* =====================
    for ACCORDION   
    =================== */
.accordion_header_btn {

    color: var(--primary-clr);
    font-size: 1.1rem;
    font-weight: 600;
}
.accordion_header_btn:hover { color: var(--accent-clr); }

.table_wrapper { width: 100%; }

.my_table, .my_tbody, .my_tr, .my_td {
    display: block;
    width: 100%;
}

.my_thead { 
    display: none; 
    background: var(--primary-clr);
    color: #FFFFFF; 
}


.my_td {
    position: relative;
    padding: 16px 16px 16px 35%;
}
.my_td:last-child { border-bottom: none; }

.my_td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 16px;
    width: 33%;
    font-weight: bold;
    color: var(--primary-clr);
}
.list_inside { list-style: inside; }

/*     For slideshows in MODALS  
    MOBILE FIRST GALLERY
    GALLERY GRID
======================================== */
.dynamic_gallery .gallery_grid { align-items: stretch; }

/* -------------------------
   GALLERY ITEMS
------------------------- */
/* hidden by default */
.dynamic_gallery .gallery_item {
    display: none;
    animation: galleryFade 0.35s ease;
}
/* -------- ANIMATION ----------- */
@keyframes galleryFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* visible items */
.dynamic_gallery .gallery_item.active {
    display: flex;
    flex-direction: column;
}

/* MOBILE DEFAULT */
.dynamic_gallery .dynamic_gal_img {
    width: 100%;
    border-radius: 12px;
}


.dynamic_gallery .gal_controls_wrap {
    gap: 16px;
}
.dynamic_gallery .gal_controls_wrap > * {
    width: 100%;
}
.dynamic_gallery .gal_controls_wrap .btn {
    width: 100%;
}

/* CUSTOMED for tall IMGS for Roamio & Pause. */
.tall_img {
    width: 200px;
    margin: auto;
}

/* -------------------------
    BUTTONS
    Button Base
------------------------- */
.dynamic_gallery .gallery_prev,
.dynamic_gallery .gallery_next,
.dynamic_gallery .gallery_toggle,
.accordion_btn {
    border-width: 1px;
    border-style: solid;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        opacity 0.25s ease;
}
/* -------------------------
     Next/Prev States
------------------------- */
.dynamic_gallery .gallery_prev:not(:disabled),
.dynamic_gallery .gallery_next:not(:disabled) {
    background-color: var(--primary-clr);
    border-color: var(--primary-clr);
    color: #fff;
}

.dynamic_gallery .gallery_prev:not(:disabled):hover,
.dynamic_gallery .gallery_next:not(:disabled):hover,
.dynamic_gallery .gallery_prev:disabled,
.dynamic_gallery .gallery_next:disabled {
    background-color: var(--secondary-clr);
    border-color: var(--secondary-clr);
    color: #fff;
    opacity: 1;
}

/* -------------------------
   Toggle Button
------------------------- */
.dynamic_gallery .gallery_toggle {
    background-color: var(--accent-clr);
    border-color: var(--accent-clr);
    color: #fff;
}

.dynamic_gallery .gallery_toggle:hover,
.dynamic_gallery .gallery_toggle[aria-expanded="true"] {
    background-color: var(--accent-hover-clr);
    border-color: var(--accent-hover-clr);
}


.orange_bg {
    background: var(--orange);
    color: #FFFFFF;
}

/* ======================
     BACK To TOP BUTTON 
======================= */
.main-container {
    position: relative;
    min-height: 100vh;
}
/* Back To Top */
.back_to_top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 1000;

    background: rgba(0,0,0, .7);
    color: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Visible State */
.back_to_top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
.back_to_top:hover {
    transform: translateY(-3px);
    background: var(--primary-clr);
}

/* Focus */
.back_to_top:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}


/* =====================================
           TABLET
===================================== */
@media (min-width: 768px) {
    .menu_toggle,
    .menu_close { display: none; }

    .mobile_menu {
        position: static;
        width: auto;
        height: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        /* display: block; */
        display: flex;
        justify-content: space-between;
    }

    .mobile_menu_header { display: none; }

    .mobile_menu_content {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 6rem;
    }

    .nav_list {
        flex-direction: row;
        gap: 2rem;
    }

    .nav_list a {
        font-size: 1.05rem;
        color: var(--secondary-clr);
    }

    .social_links a i { color: var(--secondary-clr); }

    .section_space { padding-block: 4.5rem; }
    .container_space { padding-block: 3.5rem; }
    .block_space { padding-block: 2rem; }
    .element_space { padding-block: 1.5rem; }

    .gap_5 { gap: 6rem; }
    .gap_4 { gap: 5rem; }
    .gap_3 { gap: 4rem; }
    .gap_2 { gap: 3rem; }
    .gap_1 { gap: 2.25rem; }

    /* --------- CONTROLS--------- */
    .dynamic_gallery .gal_controls_wrap > * {
        width: auto;
    }
    .dynamic_gallery .gal_controls_wrap .btn {
        width: auto;
    }
    
    .dynamic_gallery .gal_controls_wrap {
        gap: 30px;
    }

    /* ===== for ACCORDION's TABLE ======= */
    .my_table {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .my_thead { display: table-header-group; }

    .my_tbody { display: table-row-group; }

    .my_tr { display: table-row; }

    .my_th, .my_td {
        display: table-cell;
        width: 50%;
        padding: 16px;
        border: 1px solid var(--tertiary-clr);
        text-align: left;
    }

    .my_td::before { display: none; }
}

/* ==========================================
               DESKTOP
========================================== */
@media (min-width: 992px) {
    .section_space { padding-block: 5rem; }
    .container_space { padding-block: 4rem; }
    .block_space { padding-block: 2.5rem; }
    .element_space { padding-block: 2rem; }

    .gap_5 { gap: 7rem; }
    .gap_4 { gap: 6rem; }
    .gap_3 { gap: 5rem; }
    .gap_2 { gap: 4rem; }
    .gap_1 { gap: 3.25rem; }
}

@media (min-width: 1200px) {
    .gap_4 { gap: 7rem; }
    .gap_3 { gap: 6rem; }
}