/**
 * Theme Name:     Genesis Block Theme Child
 * Author:         StudioPress
 * Template:       genesis-block-theme
 * Text Domain:	   genesis-block-theme-child
 * Description:    A beautifully-simple yet powerful WordPress theme that integrates perfectly with the block editor and the Genesis Blocks plugin. Start building amazing websites with blocks today! Install the Genesis Blocks plugin to add even more page-building blocks such as testimonials, sharing icons, notices, call to actions, buttons and more.
 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 32px;
  --fs-3xl: 42px;
  --fs-4xl: 56px;
  --fs-5xl: 72px;
  --lh-tight: 1.1;
  --lh-heading: 1.2;
  --lh-body: 1.6;
  --ls-tight: -0.02em;
  --ls-wide: 0.05em;
  --ls-extra-wide: 0.12em;
  --color-primary: #0f2347;
  --color-secondary:#fd8e54;
  --text-heading: #14213d;
  --text-body: #5f6b7a;
  --text-light: #8d99ae;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f8f9fb;
  --bg-soft: #f3f5f7;
  --bg-dark: #0f2347;
  --border-light: #e5e8ed;
  --border-medium: #d6dbe2;
  --btn-primary-bg: var(--color-primary);
  --btn-primary-text: var(--text-white);
  --btn-secondary-bg: transparent;
  --btn-secondary-text: var(--color-primary);
  --btn-secondary-border: var(--color-primary);
  --shadow-card: 0 10px 30px rgba(15, 35, 71, 0.06);

  --gradient-primary: linear-gradient(
    135deg,
    #0f2347 0%,
    #183463 100%
  );

  --gradient-light: linear-gradient(
    180deg,
    #f8f9fb 0%,
    #eef2f5 100%
  );
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.3s ease;
  --container-width: 1280px;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--lh-heading);
}

h1, .h1 {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

h2, .h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-tight);
}

h3, .h3 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-medium);
}

h4, .h4 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-medium);
}

h5, .h5,
h6, .h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
}

h5, .h5 {
  font-size: var(--fs-xl);
}

h6, .h6 {
  font-size: var(--fs-lg);
}
p {
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text-body);
}
.text-large {
  font-size: var(--fs-md);
}

.text-small {
  font-size: var(--fs-sm);
}

.text-xs {
  font-size: var(--fs-xs);
}
.label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-extra-wide);
  color: var(--color-secondary);
}
button,
.btn,
.nav-link {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

body{
    font-size:16px;
    padding-top:0;
}

.container{
    padding:0 60px;
}

.site-content,
#primary{
    padding:0;
}

#primary{
    max-width:1600px;
    width:100%;
}

header.entry-header,
.footer-bottom{
    display:none;
}
/* =========================================
       TOP BAR
    ========================================= */

    .top-bar {
      background: var(--bg-light);
      border-bottom: 1px solid var(--border-light);
      padding: 14px 0;
    }

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    .top-bar-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .top-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--color-primary);
      font-size: var(--fs-sm);
      font-weight: var(--fw-medium);
      white-space: nowrap;
      transition: var(--transition-fast);
    }

    .top-item:hover {
      color: var(--color-secondary);
    }

    .top-item svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: currentColor;
    }
/* ==========================================
   Header
========================================== */

.site-header{
    background:#fff;
}

.site-identity{
    padding:10px 0;
    display:flex;
    align-items:center;
}

.site-header .site-title-wrap{
    flex:0 0 auto;
    max-width:20%;
}

.site-header .top-navigation-right{
    flex:1;
    max-width:80%;
    display:flex;
    justify-content:flex-end;
}

/* Logo */

.custom-logo-link img{
    display:block;
    max-width:150px;
    transition:all 0.3s ease-in-out;
}

/* Sticky Header */

#masthead{
    position:relative;
    width:100%;
    z-index:9999;
    transition:all 0.4s ease-in-out;
}

#masthead.sticky-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    animation:smoothSticky 0.4s ease-in-out;
}

#masthead.sticky-header .custom-logo-link img{
    max-width:100px;
}

#masthead.sticky-header .main-navigation ul li{
    font-size:16px;
}

body.header-space{
    padding-top:110px;
}

@keyframes smoothSticky{
    from{
        transform:translateY(-100%);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}
#page {
    padding-top: 0;
}
/* ==========================================
   Navigation
========================================== */

.main-navigation .menu-item a{
    position:relative;
}

.site-header .main-navigation .menu-item a{
    margin-bottom:0;
}

.main-navigation .menu-item a:before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:var(--color-secondary);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.4s ease;
}

.main-navigation .menu-item a:hover:before,
.main-navigation .menu-item .current_page_item.current-menu-item a:before{
    transform:scaleX(1);
}
.site-header .main-navigation .menu-item a:hover{
	color:var(--color-secondary);
}

/* Book Button */

li.book-btn.menu-item{
    padding:0;
}

.site-header .main-navigation li.book-btn.menu-item a{
    padding:7px 15px;
    background:var(--primary-color);
    border-radius:10px;
    color:#fff;
    transition:0.3s ease-in-out;
}

.site-header .main-navigation li.book-btn.menu-item a:hover{
    background:var(--secondary-color);
    border-color:var(--secondary-color);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(1,30,63,0.15);
}

/** banner css **/
.banner-home{
  position: relative;
  overflow: hidden;
}
.banner-home::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(248, 249, 251, 0.98) 0%,
    rgba(248, 249, 251, 0.92) 22%,
    rgba(248, 249, 251, 0.75) 40%,
    rgba(248, 249, 251, 0.35) 60%,
    rgba(248, 249, 251, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.banner-home > * {
  position: relative;
  z-index: 2;
}
.banner-home {
    background-position: 100% 15%!important;
}


/** banner bottom bar **/
.col-with-icon>.vc_column-inner>.wpb_wrapper {
    display: flex;
	gap:10px;
}
.col-with-icon>.vc_column-inner>.wpb_wrapper svg {
	width:30px;
	height:30px;
}
.cstm-btn-outline a.vc_general.vc_btn3 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary)!important;
  transition: color 0.4s ease, border-color 0.4s ease;
  text-transform:uppercase;
}

.cstm-btn-outline a.vc_general.vc_btn3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: -1;
}

.cstm-btn-outline a.vc_general.vc_btn3:hover::before {
  transform: scaleX(1);
}

.cstm-btn-outline a.vc_general.vc_btn3:hover {
  color: var(--text-white)!important;
}
.cstm-btn a.vc_general.vc_btn3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  min-width: 140px;
  text-transform:uppercase;
}

.cstm-btn a.vc_general.vc_btn3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: -1;
}

.cstm-btn a.vc_general.vc_btn3:hover::before {
  transform: scaleX(1);
}

.cstm-btn a.vc_general.vc_btn3:hover {
  color: var(--text-white);
  border:1px solid var(--color-secondary);
}
.subheading-top p {
    color: var(--color-secondary);
}
.brands-col.vc_column_container>.vc_column-inner {
    padding-left: 10px;
    padding-right: 10px;
}
.brands-col.vc_column_container>.vc_column-inner>.wpb_wrapper {
    background: var(--bg-light);
    padding: 15px;
}
.brands-col.vc_column_container>.vc_column-inner>.wpb_wrapper .wpb_text_column {
    min-height: 110px;
}
.text-btn a.vc_general.vc_btn3 {
    background-image: none!important;
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 40px!important;
}
.text-btn a.vc_general.vc_btn3:hover{
	color:var(--color-secondary)!important;
}
.cstm-btn-outline.orange-btn a.vc_general.vc_btn3 {
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary)!important;
}
.cstm-btn-outline.orange-btn a.vc_general.vc_btn3::before {
  background:var(--color-secondary);
}
.cstm-btn-outline.orange-btn a.vc_general.vc_btn3:hover {
  color: var(--text-white)!important;
}








@media (max-width: 991px) {

  h1,
  .h1 {
    font-size: 56px;
  }

  h2,
  .h2 {
    font-size: 44px;
  }

  h3,
  .h3 {
    font-size: 34px;
  }
	.top-bar-wrapper {
        justify-content: center;
      }
}

@media (max-width: 767px) {

  h1,
  .h1 {
    font-size: 42px;
  }

  h2,
  .h2 {
    font-size: 34px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  body {
    font-size: 15px;
  }

.top-bar {
        padding: 12px 0;
      }

      .top-bar-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }

      .top-item {
        flex-direction: column;
        text-align: center;
        font-size: var(--fs-xs);
        gap: 6px;
      }

      .top-item svg {
        width: 18px;
        height: 18px;
      }

}

@media (max-width: 480px) {

      .top-bar-wrapper {
        grid-template-columns: 1fr;
      }

    }