/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Fonts */
@font-face {
    font-family: "AGG";
    src: url(./fonts/AGG/ITC\ Avant\ Garde\ Gothic\ Pro-Book.otf);
}

@font-face {
    font-family: "AON";
    src: url(/fonts/AON/AON.otf);
}

/* Root Variables */
:root {
    --bg-color-light: #fffff9;
    --bg-color-dark: #131313;
    --text-color-light: black;
    --text-color-dark: white;
    /* --main-color: #bd44fa; */
    --main-color: #e47239;
    --brand-color: #0BCE83;

}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100vw; /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport */
    overflow: hidden;
    width: 100%;
    overflow: hidden;

}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    overflow: hidden;
    object-position: bottom;

}

@media (max-width: 1000px) {
    .hero {
        height: auto; /* Let the height adjust based on the image's aspect ratio */
    }

    .hero img {
        position: static; /* Reset position */
        width: 100%; /* Full width of the viewport */
        height: auto; /* Maintain aspect ratio */
        object-fit: contain; /* Contain the image within the width */
    }
}


/* TEXT STLYING */
/* h1 {
    font-size: 24px;
    font-family: "AON";
    font-style:normal;
    text-transform: uppercase;
    padding-bottom: 20px;
    line-height: 1.4;
} */

h1 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    text-transform: uppercase;
}

p{
    font-family: "AGG";
    font-size: 18px;
    /* font-weight: 300; */
    font-style: normal;
    line-height: 1.7;
    /* color: rgb(46, 46, 46); */
    color: rgb(71, 71, 71);

}

h2 {
    font-family: "Mukta", sans-serif;
    margin-top: 30px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    font-style:normal;
}

.grid-caption {
    grid-column: 1 / span 4; 
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px!important;
    color: grey;
    text-align: center; /* Center the text horizontally */
    display: flex; /* Use flexbox for vertical centering */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    height: 100%; /* Ensure the container takes up the full height of the grid area */
    margin: 0; /* Ensure no extra margin affects alignment */
    padding: 0; /* Ensure no extra padding affects alignment */
    padding-top: -5px;

}


.footer {
    padding-left: 0;
    padding-right: 0;
}
/* GRID CONTENT */

.container {
    margin-top: 50px;
    margin-left: 70px;
    margin-right: 70px;
    margin-bottom: 50px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 02px 70px; 
    /* background-color: hsl(207, 90%, 54%); */
    padding: 10px;
    max-width: 1400px; 
    margin: 0 auto; 
    box-sizing: border-box;
}
.grid-container > div {
    background-color: rgba(255, 255, 255, 0.8);
    text-align:left;
    padding: 20px 0;
    position: relative;
}

/* GRID ITEMS */
.item1{
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    /* min-width: 50%; */
}

.item6{
    grid-column: 1 / span 4;
    margin-top: 20px;
}
.item6 img {
    width: 200px;
    float: left;
}
.item6 container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.item6 p {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.item7{
    grid-column: 1 / span 2;
}

.item8{
    grid-column: 3 / span 2;
}

.item9{
    grid-column: 1 / span 4;
    margin-top: 40px;
}
.item9 h2 {
    padding-bottom: 15px;
    font-size: 17px;
    font-weight: 700;
}

.item10{
    grid-column: 1 / span 4;
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 700;
}

.item11 {
    grid-column: 1 / span 4;
    height: calc(100vh - 30px); 
    max-width: 1500px;
    height: auto;
    /* margin-top: 30px; */
    box-sizing: border-box;
}

.item12 {
    grid-column: 1/ span 4;    
}
.item12 img {
    width: 100%;
    overflow: hidden;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item13, .item14 {
    grid-column: span 2; 
    grid-row: 10; 
    border-radius: 15px;
}

.item13 img, .item14 img {
    object-fit: cover; /* Ensures images cover the container without stretching */
    max-height: 100%; /* Limit height to the container height */
    display: block;
    padding-right: 0px; 
    margin: 0 auto;
    width: 100%;
    height: auto; 
}
.full-line {
    width: 100%; /* Full width */
    height: 2px; /* Line thickness */
    background-color: rgb(141, 141, 141); /* Line color */
    margin: 20px 0; /* Space around the line */
}

.item15 {
    grid-column: 1 / span 4;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    padding: 0;
    margin-top: 50px;
    margin-bottom: 20px;
}

.item15 h1 {
    font-size: 60px;
    padding: 0;
    margin: 5px 0; 
}


.item16 {
    grid-column: 1/ span 4;    
    padding: 0;
    margin: 0;
}
.item16 img {
    width: 100%;
    overflow: hidden;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 50px;
}
.item17 {
    grid-column: 1/ span 2;
}

.item18 {
    grid-column: 3/ span 2;
}



/* GIF SECTION */
.subtitle {
    padding-bottom: 10px;
}


/* GIF RIGHT CONTAINER  */
.gif-container {
    max-width:1000px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px; 
    align-items: center; 
    grid-column: 1/ span 4;
    margin: 0 auto;
}

.gif-textbox {
    grid-column: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
    /* background-color: lightgray;  */
    box-sizing: border-box; 
}

.gif img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.gif {
    display: flex;
    grid-column: 3 / span 2;
    justify-content: flex-end; 
    max-height: 80vh;
    object-fit: contain;
}

/* GIF LEFT CONTAINER  */
.gif-container2 {
    max-width:1000px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center; 
    grid-column: 1/ span 4;
    grid-gap: 30px; 
    margin: 0 auto;
}
.gif2 {
    display: flex;
    grid-column: 1/ span 2;
    justify-content: flex-start; 
    max-height: 80vh;
    object-fit: contain;
}

.gif2 img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.gif-textbox2 {
    grid-column: 3/span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media screen and (max-width: 800px) {
    .subtitle {
      display: none;
    }

    .subtitle1{
        margin-top: 20px;
        margin-bottom: 0px;
        padding: 0;
    }

}
@media screen and (min-width: 800px) {
    .subtitle1 {
      display: none;
    }
}
@media (max-width: 800px) {
    .hero {
        width: 100%;
        overflow: hidden;

    }
    .hero img {
        position:relative;
        width: 100vw;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    .container {
        margin-top: 10px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 50px;
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 02px; 
        max-width: 1400px; 
        margin: 0 auto; 
        box-sizing: border-box;
    }

    .grid-container > div {
        background-color: rgba(255, 255, 255, 0.8);
        text-align:left;
        padding: 15px 0;
        font-size: 30px;
    }
  
    .item2, 
    .item3,
    .item4,
    .item5{
        grid-column: span1;
    }
    .item2,
    .item4 {
        grid-column: 1;
    }
    
    .item3,
    .item5 {
        grid-column: 2;
    }

    .item9 {
        margin-top: 20px;
    }

    .item9 h2 {
        padding-bottom: 15px;
    }

    .item10 {
        padding: 0px;
        margin: 0px;
    }

    .item13,
    .item14 {
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        grid-column: 1 / span 2; /* Make sure the items span across two columns */
    }
    .item13 img,
    .item14 img {
        max-width: 100%; /* Ensure images scale within the container */
        height: auto; /* Maintain aspect ratio */
        padding: 0; 
        margin: 0 auto; 
    }
    .item15{
        margin-top: 8px;
    }
    .item15 h1{
        font-size: 40px;
    }
    
    .item1,
    .item6,
    .item7,
    .item8,
    .item9,
    .item10,
    .item11,
    .item12,
    .item13,
    .item14,
    .item15,
    .item16,
    .item17,
    .item18 {
      grid-column: 1 / span 4;
      grid-row: auto;
    }


/* RESPONSIVE GIF RIGHT CONTAINER */

    .gif-container {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto auto auto; /* Ensure rows are automatically sized */
        justify-items: center;
        grid-gap: 0;
    }

    .gif-textbox {
        grid-column: 1/ span 4;
        grid-row: 4;
        margin: 0;
        padding: 0;
    }
    .gif-textbox .subtitle {
        grid-column: 1/ span 4;
        grid-row: 1;
        margin: 0;
        padding: 0;
    }
    .gif-textbox .title {
        grid-column: 1/ span 4;
        grid-row: 3;
        margin-top: 25px;
        margin-bottom: 10px;
        padding: 0;
        font-size: 30px;
    }
    .gif-textbox .gif-text {
        grid-column: 1/ span 4;
        grid-row: 4;
        margin: 0;
        padding-bottom: 30px;
    }
    .gif {
        grid-row: 2;
        grid-column: 1/ span 4;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 80vh;
        object-fit: contain;        
        width: 40%; /* Set width to 50% of the parent container */
        height: auto; 
        margin-top: 6px;
        margin-bottom: 15px;
        padding: 0;
    }
    
    .gif img {
        width: 100%; /* Ensure the image inside the container fits within the container's width */
        height: auto; /* Maintain aspect ratio */
        object-fit: contain;
        margin: auto;
    }
    .subtitle1 {
        text-transform: uppercase;
        text-align: center;
        grid-column: 1/ span 4;
        margin-top: 20px;
        margin-bottom: 0px;
        padding: 0;
        font-size: 18px;
    }

/* RESPONSIVE GIF LEFT CONTAINER */
    .gif-container2 {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto auto auto; /* Ensure rows are automatically sized */
        justify-items: center;
        grid-gap: 0;
    }

    .gif-textbox2 {
        grid-column: 1/ span 4;
        grid-row: 4;
        margin: 0;
        padding: 0;
    }
    .gif-textbox2 .subtitle {
        grid-column: 1/ span 4;
        grid-row: 1;
        margin: 0;
        padding: 0;
    }
    .gif-textbox2 .title {
        grid-column: 1/ span 4;
        grid-row: 3;
        margin-top: 25px;
        margin-bottom: 10px;
        padding: 0;
        font-size: 30px;

    }
    .gif-textbox2 .gif-text {
        grid-column: 1/ span 4;
        grid-row: 4;
        margin: 0;
        padding-bottom: 30px;

    }
    .gif2 {
        grid-row: 2;
        grid-column: 1/ span 4;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 80vh;
        object-fit: contain;        
        width: 40%; /* Set width to 50% of the parent container */
        height: auto; 
        margin-top: 6px;
        margin-bottom: 15px;        
        padding: 0;
        
    }

    .gif2 img {
        width: 100%; /* Ensure the image inside the container fits within the container's width */
        height: auto; /* Maintain aspect ratio */
        object-fit: contain;
        margin: auto;
    }

    /* TEXT STYLING */
    h1 {
        font-size: 30px;
        font-style:normal;
        text-transform: uppercase;
        padding-bottom: 20px;
        line-height: 1.4;
    }

    p{
        font-size: 16px;
        /* font-weight: 300; */
        font-style: normal;
        line-height: 1.7;
    }

}


  
@media (max-width: 480px) {
    .hero img {
        position: relative;
        width: 100vw;
        overflow: hidden;
    }
    .container {
        margin-top: 10px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 50px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .grid-container {
        display: grid;
        grid-template-columns: 1fr; 
        grid-gap: 0px; 
        max-width: 1400px; 
        margin: 0 auto; 
        box-sizing: border-box;
    }
    .item2,
    .item4 {
        grid-column: 1;
        margin-right: 50px;
    }
    .item3,
    .item5 {
        grid-column: 2;
    }
    .item2, .item3 {
        margin-bottom: 10px;
    }
    .item4, .item5 {
        margin-bottom: 10px;
    }
    .item6 img {
        width: 30%;
    }
    .item6 p {
        padding-left: 8px;
    }
    .item6, .item7, .item9 {
        margin-bottom: 15px;
    }
    
    .gif img{
        width: 80%;
    }
    .gif2 img{
        width: 80%;
    }

    .full-line {
        margin: 10px;
    }


    /* .grid-container {
      grid-template-columns: 1fr;
    }
  
    .item1,
    .item2,
    .item3,
    .item4,
    .item5
    .item6,
    .item7,
    .item8,
    .item9,
    .item10,
    .item11,
    .item12,
    .item13,
    .item14,
    .item15,
    .item16,
    .item17,
    .item18,
    .item19,
    .item20 {
      grid-column: 1 / span 1;
    }
    .item6 img {
        grid-column: 1/ span 1;
    } */


}



/* FOOTER */

.footer-content {
    display: flex;
    justify-content: space-between; 
    align-items: flex-end; 
    margin-top: 150px;
    margin-bottom: 40px;
}

.footer-text {
    display: flex;
    flex-direction: column; 
}

.header-f {
    font-size: 15px; 
    padding-bottom: 10px;
    font-family: "AGG";
}

.logo2 {
    font-size: 28px; 
    font-family: "AON";
    font-weight: 200;

}

.footer-links {
    display: flex; 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    align-items: center; 
}

.footer-links li {
    margin-left: 40px; 
}

.footer-links a {
    font-family: "AGG";
    font-size: 22px;
}

.footer-content a {
    color: inherit; 
    text-decoration: none; 
}

.footer-content .logo-f {
    transition: color 0.3s; 
}

.footer-content a:hover,
.footer-content .logo-f:hover {
    color: var(--main-color); 
}

@media(max-width: 780px) {
    .footer-content {
        margin-top: 150px;
        margin-bottom: 40px;
        /* padding-left: 6%;
        padding-right: 6%; */
    }
    .header-f {
        font-size: 10px; 
        padding-bottom: 10px;
        font-family: "AGG";
    }
    
    .logo-f {
        font-size: 20px;
        font-family: "AON";
        font-weight: 200;
    }
    .footer-links li {
        margin-left: 20px; 
    }
    
    .footer-links a {
        font-family: "AGG";
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    footer {
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 0;
        margin-top: 90px;

    }

    .footer-links {
        display: flex;
        gap: 15px; /* Add a 10px gap between the links */
        justify-content: center;
        align-items: center;
    }

    .footer-links li {
        margin-left: 0px; 
        list-style: none;
        margin-top: 10px;
    }
    .footer-links a {
        font-family: "AGG";
        font-size: 15px;
    }
    

}
