html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    transition: all 0.5s ease-in-out;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 50px;
    border-radius:25px;
    /* background: rgb(30,32,30);
    background: linear-gradient(90deg, rgba(30,32,30,1) 0%, rgba(60,61,55,1) 30%, rgba(105,117,101,1) 69%, rgba(236,223,204,1) 100%); */
    /* background-color: transparent; */
}

.navbar-blogs {
    background: black !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.navbar-scrolled {
    background: black !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.navbar-mobile {
    background: black !important;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand{
    color: white;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.navbar-brand:hover{
    color: white;
    font-weight: bolder;
}

.nav-link{
    color: white !important;
}

/* .navbar-nav{
    color: black;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 50px;
    border-radius:25px;
    background-color: #000;
} */

.nav-link:hover{
    color: black;
    font-weight: bolder;
}

.navbar-toggler:focus{
    color: transparent;
}

section > div {
    padding-top: 100px;
    padding-bottom: 30px;
    scale: .8; opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: 250px 500px;
}

.active {
    margin-left: 10px;
    margin-right: 10px;
    font-weight: bold;
    transition: all 0.5s;
}

@keyframes fade-in {
    to {scale: 1; opacity: 1;}
}

.blogpages {
    /* background-color:rgba(0, 0, 0, 0.5); */
    color: black;
    height: 56vh;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-bottom: 150px;
    padding-right: 50px;
    animation: fade-out linear;
    animation-timeline: view();
    animation-range: exit 200px;
}

.header {
    background: url('../images/header-bg.png') no-repeat center center/cover;
    background-color:rgba(0, 0, 0, 0.5);
    color: black;
    height: 100vh;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-bottom: 150px;
    padding-right: 50px;
    animation: fade-out linear;
    animation-timeline: view();
    animation-range: exit 200px;
}
.header h1 {
    font-weight: bolder;
    font-size: 60px;
    margin-bottom: 20px;
    margin-top: 60px;
    text-shadow: 1px 3px gray;

}
.header p {
    font-weight: lighter;
    font-size: 24px;
    letter-spacing: 0.20em;
}

@keyframes fade-out {
    to {opacity: 0;}
}

.footer {
    /* position: fixed;
    bottom: 0; */
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* custom shapes */

.inner-curve {
  --r: 20px;  /* control the rounded part */
  --s: 40px;  /* control the size of the cut */
  --a: 20deg; /* control the depth of the curvature */

  aspect-ratio: 1;

  width: 350px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: url('../images/header-bg.png');

  border-radius: var(--r);
  --_m:0/calc(2*var(--r)) var(--r) no-repeat
    radial-gradient(50% 100% at bottom,#000 calc(100% - 1px),#0000);
  --_d:(var(--s) + var(--r))*cos(var(--a));
  mask:
    calc(50% + var(--_d)) var(--_m),calc(50% - var(--_d)) var(--_m),
    radial-gradient(var(--s) at 50% calc(-1*sin(var(--a))*var(--s)),
      #0000 100%,#000 calc(100% + 1px)) 0 calc(var(--r)*(1 - sin(var(--a)))) no-repeat,
    linear-gradient(90deg,#000 calc(50% - var(--_d)),#0000 0 calc(50% + var(--_d)),#000 0);
}

.parallelogram {
  --p: 25px; /* control the shape (can be percentage) */
  aspect-ratio: 1;
  clip-path: polygon(0 var(--p),0 100%,100% calc(100% - var(--p)),100% 0);
  border-radius: 30px;
  width: 350px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: black;
}

.parallelogram-left {
  --p: 50px; /* control the shape (can be percentage) */
  max-width: 350px;
  height: auto;
  aspect-ratio: 1;
  clip-path: polygon(0 0,calc(100% - var(--p)) 0,100% 100%,var(--p) 100%);
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: #D95B43;
}

.parallelogram-right {
  --p: 50px; /* control the shape (can be percentage) */
  max-width: 350px;
  height: auto;
  aspect-ratio: 1;
  clip-path: polygon(var(--p) 0,100% 0,calc(100% - var(--p)) 100%,0 100%);
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: #D95B43;
}

.top {
  clip-path: polygon(0 0,100% 0,100% 100%,0 calc(100% - 50px));
}
.top2 {
  clip-path: polygon(0 0,100% 0,100% calc(100% - 50px),0 100%);
}
.bottom {
  clip-path: polygon(0 0,100% 50px,100% 100%,0 100%);
  margin-top: -40px;
}
.bottom2 {
  clip-path: polygon(0 50px,100% 0,100% 100%,0 100%);
  margin-top: -40px;
}
.edgeinsets{
    padding: 5px;
}
.fixed-height{
    min-height: 200px;
    max-height: 200px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.corner-radius-top{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.container > h2 {
    letter-spacing: 0.2em;
    font-weight: bold;
    padding-bottom: 10px;
}