 /* Georgia Font Faces */
@font-face {
  font-family: 'Georgia';
  src: url('assets/georgia/georgia.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Georgia';
  src: url('assets/georgia/georgiab.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Georgia';
  src: url('assets/georgia/georgiai.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Georgia';
  src: url('assets/georgia/georgiaz.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

/* Segoe UI Font Faces */
@font-face {
  font-family: 'Segoe UI';
  src: url('assets/segoe/Segoe UI.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Segoe UI';
  src: url('assets/segoe/Segoe UI Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Segoe UI';
  src: url('assets/segoe/Segoe UI Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Segoe UI';
  src: url('assets/segoe/Segoe UI Bold Italic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

h1{
  font-family: 'Georgia';
  font-size: 64px !important;
}
h2{
  font-family: 'Georgia';
  font-size: 42px !important;
}
h3{
  font-family: 'Georgia';
  font-size: 32px !important;
}
h4{
  font-family: 'Georgia';
  font-size: 28px !important;
}
a:visited {
    color: #220826  !important;
}
/*header*/

.site-header {
    height: 80px;
    align-items: center;
    display: flex;
    background: #FBF7F0;
}
     .nav-list {
            position: absolute;
            top: -200px;
            left: 0;
            width: 100%;
            background: #fbf7f0;
            overflow: hidden;
            height: 0;
            transition: all 1s ease-in-out;
            z-index:1;
        }
.navcrros {
    display: none;
}
.inner-head {
    display: flex;
    justify-content: space-between;
}

.navline.active {
    display: none;
}

.custom-logo {
    width: 202px;
    height: 42px;
}
.navcrros, .navline {
    cursor: pointer;
}
.navcrros.active {
    display: flex;
}
        .nav-list.active {
            height: auto;
            top: 80px;
        }
.nav-list.active ul {
    display: grid;
    text-align: center;
    width: max-content;
    margin: auto;
    justify-content: center;
}
.nav-list.active ul li a {
    position: relative;
    color: #220826;
    font-size: 32px;
    font-family: 'Georgia';
    margin-bottom: 20px;
    padding: 0 !important;
    z-index: 3;
    display: flex;
    justify-content: center;
    width: fit-content;
    transition: font-size 0.4s ease, color 0.4s ease;
}

.main-navigation li {
    position: relative;
    justify-content: center;
    display: flex;
}

/*.nav-list.active ul li a:hover:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    height: 17px;*/
/*    background: #E7E5E5;*/
/*    width: 100%;*/
/*    top: 24px;*/
/*    z-index: -1;*/
/*    transition: width 0.4s ease;*/
/*}*/
.nav-list.active ul li a:hover {
    font-size: 42px;
}
.contact-li span{
    font-size: 16px;
    font-family: 'Segoe UI';
}
.current-menu-item a {
    text-decoration: underline !important;
}


/*hero*/
.hero {
    align-items: center;
    height: 720px;
    background: #220826;
    display: flex;
    flex-wrap: wrap;
}
.regular-text {
    font-size: 24px;
    color: #FBF7F0;
    font-family: 'Segoe UI';
}
.hmtitle {
    color: #FBF7F0;
}
.hmtitle span{
    color: #CEAB26;
}

/*An*/
/* Fade-in text animation */
.fade-in-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in-text {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /* Add cursor pointer if you want a hover effect */
  cursor: pointer;
}

.zoom-in-text.visible {
  opacity: 1;
  transform: scale(2);
}

/* Zoom bigger on hover */
.zoom-in-text.visible:hover {
  transform: scale(2.2);
}


/* Feed-in text animation (Top to Bottom) */
.feed-in-text-top-bottom {
  opacity: 0;
  transform: translateY(-100px); /* Start above */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feed-in-text-top-bottom.visible {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
}

/* Smoothly Grow Image (Popup Effect) */
.grow-image {
  transform: scale(0);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  display: inline-block;
  opacity: 0;
}

.grow-image.visible {
  transform: scale(1);
  opacity: 1;
}

/* Smoothly Grow Line (Width Animation) */
.grow-line {
  width: 10px;
  height: 4px;
  background-color: #333;
  transition: width 0.6s ease-out, opacity 0.6s ease-out;
  opacity: 0;
}

.grow-line.visible {
  width: 400px;
  opacity: 1;
}

/* Delay Classes (0.5s to 2s) */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }
.delay-900 { transition-delay: 0.9s; }
.delay-1000 { transition-delay: 1s; }


/* Counter Styling */
.counter {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  display: inline-block;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.counter.visible {
  opacity: 1;
}

