/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
    font-family: var(--primary-font);
}

:root{
    --primary_color: #2C5F2D;
    --background-color: #FAF3E0;
    --text-color:  #4A4A4A;
    --accent-color: #E4C988;
    --black-color: black;

    --primary-font: "Montserrat Alternates"
}
html,body{
    overflow-x: hidden;
}
/* texts */
a{
    text-decoration: none;
}
h1{
    font-size: 5vw;
}
h2{
    font-size: 2.7vw;
}
h3{
    font-size: 2vw;
}
h4{
    font-size: 1.1vw;
}
h5{
    font-size: 0.8vw;
}

.social_icons {
    transition: color 0.3s, transform 0.3s;
    font-size: 2vw;
}
.no_wrap{
    white-space: nowrap;
}

/* widths */
.w_fc{
    width: fit-content;
}
.w_40 {
    width: 40%;
}
.w_50{
    width: 50%;
}
.w_75{
    width: 75%;
}
.w_85{
    width: 85%;
}
.w_100{
    width: 100%;
}

/* heights */
.h_10vh{
    height: 10vh;
}
.h_85vh{
    height: 85vh;
}
.h_100vh{
    height: 100vh;
}
.h_50{
    height: 50%;
}
.h_75{
    height: 75%;
}
.h_85{
    height: 85%;
}
.h_100{
    height: 100%;
}
.h_fc{
    height: fit-content;
}

/* paddings */
.padding_s10{
    padding-right: 15vw;
    padding-left: 15vw;
}
.padding_ts{
    padding-top: 2.5vh;
}
.padding_sxxs{
    padding-right: 1.2vw;
    padding-left: 1.2vw;
}
.padding_sxs{
    padding-right: 2.5vw;
    padding-left: 2.5vw;
}
.padding_vxxs{
    padding-top: 1.2vh;
    padding-bottom: 1.2vh;
}
.padding_vxs{
    padding-top: 2.5vh;
    padding-bottom: 2.5vh;
}
.padding_vxm{
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.padding_vs{
    padding-top: 10vh;
    padding-bottom: 10vh;
}

/* flex */
.flex{
    display: flex;
}
.flex_cl{
    display: flex;
    flex-direction: column;
}
.flex_c{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* justifications */
.justify_sb{
    justify-content: space-between;
}
.justify_fe{
    justify-content: flex-end;
}
.justify_fs{
    justify-content: flex-start;
}
.justify_sa{
    justify-content: space-around;
}
.justify_c{
    justify-content: center;
}

/* alignments*/
.align_c{
    align-items: center;
}
.align_fe{
    align-items: flex-end;
}

/* gaps */
.gap_xxs{
    gap: 0.5vw;
}
.gap_xs{
    gap: 1.5vw;
}
.gap_xvh{
    gap: 1vh;
}
/* objects */
.object_fc{
    object-fit: cover;
}
.object_fct{
    object-fit: contain;
}
.object_ps{
    object-position: 0% 10%;
}
.object_pc{
    object-position: center;
}
.object_pb{
    object-position: 0% 100%;
}

/* margins */
.mtop_s{
    margin-top: 2.5vh;
}
.mbottom_s{
    margin-bottom: 2.5vh;
}
.mtop_m{
    margin-top: 5vh;
}
.mtop_1{
    margin-top: 1vh;
}
.mleft_1{
    margin-left: 1vw;
}
.mleft_s{
    margin-left: 2.5vw;
}

/* colors */
.black_cl{
    color: var(--black-color);
}
.background_cl{
    color: var(--background-color);
}
.primary_cl{
    color: var(--primary_color);
}
.accent_cl{
    color: var(--accent-color);
}

/* font_weights */
.font_w400{
    font-weight: 400;
}
.font_w500{
    font-weight: 500;
}

/* text_alignments */
.text_ac{
    text-align: center;
}
.text_aj{
    text-align: justify;
}

/* overflow */
.overflow_hidden {
    overflow: hidden !important;
}
/* border-radius */
.bradius_s{
    border-radius: 0.7vw;
}
/* Flex wrap */
.flex_wrap {
    flex-wrap: wrap;
}

/* Gap utilities */
.gap_s {
    gap: 2vw;
}

.gap_m {
    gap: 3vw;
}

.gap_l {
    gap: 5vw;
}

/* Hover utilities */
.hover_scale {
    transition: transform 0.3s ease;
}

.hover_scale:hover {
    transform: scale(1.05);
}

.hover_up {
    transition: transform 0.3s ease;
}

.hover_up:hover {
    transform: translateY(-0.5vh);
}

/* Border utilities */
.border_top {
    border-top: 0.2vh solid var(--primary_color);
}

.border_bottom {
    border-bottom: 0.2vh solid var(--primary_color);
}

/* Shadow utilities */
.shadow_s {
    box-shadow: 0 0.5vh 1vh rgba(0, 0, 0, 0.05);
}

.shadow_m {
    box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.1);
}

/* Background colors */
.bg_primary {
    background-color: var(--primary_color);
}

.bg_accent {
    background-color: var(--accent-color);
}

.bg_light {
    background-color: var(--background-color);
}

.bg_white {
    background-color: white;
}

/* Position utilities */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/* Z-index utilities */
.z_1 {
    z-index: 1;
}

.z_10 {
    z-index: 10;
}

.z_100 {
    z-index: 100;
}
.bg_light {
    background-color: #f8f9fa;
  }
  
  .opacity_7 {
    opacity: 0.7;
  }
  
  .opacity_8 {
    opacity: 0.8;
  }
  
  .transform_y_n50 {
    transform: translateY(-50%);
  }
  
  .right_1 {
    right: 1vw;
  }
  
  .right_4 {
    right: 4vw;
  }
  
  .top_50p {
    top: 50%;
  }
  
  .border_none {
    border: none;
  }
  
  .border_1 {
    border-width: 0.1vw;
  }
  
  .border_light {
    border-color: rgba(0, 0, 0, 0.1);
  }
  
  .hover_bg_light:hover {
    background-color: rgba(44, 95, 45, 0.1);
    transition: background-color 0.3s ease;
  }
@media (max-width: 999px) {
    h1{
        font-size: 10vw;
    }
    h2{
        font-size: 6vw;
    }
    h3{
        font-size: 4vw;
    }
    h4{
        font-size: 2.5vw;
    }
    h5{
        font-size: 2vw;
    }
    .padding_s10{
        padding-right: 5vw;
        padding-left: 5vw;
    }
    .padding_vs {
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
}
@media(max-width:699px){s
    h1{
        font-size: 13vw;
    }
    h2{
        font-size: 7vw;
    }
    h3{
        font-size: 6vw;
    }
    h4{
        font-size: 3.5vw;
    }
    h5{
        font-size: 3vw;
    }
}

