.Container {
	font-family: 'Mukta', serif;
    width: auto;
    font-size: 1.8rem;
    line-height: 3.1rem;
    color: #793200;
    font-weight: 550;
    background: antiquewhite;
    text-align: justify;
}
p {
	text-indent: 20px;
}

.IntroPage {
	margin: 12px;
}

.Ovee {
    height: auto;
    max-width: 100%;
    border-radius: 5px;
    width: calc(60rem + 1vw);
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 15px;
}

.Ovee:hover {
	box-shadow: 0 0 20px -8px #000000;
}

.Separator {
    height: auto;
    max-width: 100%;
    border-radius: 0px;
    margin-top: -10px;
}

.Container .Section1 {
	display: grid;
    grid-template-columns: 1fr;
    margin-top: 10px;
    align-items: center;
}

.Container .Section2 {
	display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
    margin-top: 10px;
    align-items: center;
    padding: 20px;
    background: whitesmoke;
    border-radius: 10px;
    box-shadow: 0 0 20px -8px #000000;
}

.Container .Section3 {
	display: grid;
    grid-template-columns: 60% 40%;
    margin-top: 10px;
    align-items: center;
}

.Section1-Top {
	padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Section1-Bottom {
 	padding: 20px;
    background: whitesmoke;
    border-radius: 10px;
    box-shadow: 0 0 20px -8px #000000;
    font-weight: 500;  
}

.Section1-Image {
	border-radius: 6px;
    box-shadow: 0 0 20px -8px #000000;
    width:70%
}

.Section1-Caption {
	margin-top: 10px;
    margin-left: 75px;
    margin-right: 75px;
    text-align: center;
    font-weight: bold;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 2rem;
    margin-top: 15px;
}

.Section2-Left {
	padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Section2-Right {
    font-weight: 500;  
}

.Section2-Image {
	border-radius: 6px;
    box-shadow: 0 0 20px -8px #000000;
    width:90%
}

.Section2-Caption {
	text-align: center;
    font-weight: bold;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 3rem;
    margin-top: 15px;
}

.Section2-Bottom {
	grid-column: 1 / 3;
  	grid-row: 2 / 3;
}

.Section3-Left {
	padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Section3-Right {
 	padding: 20px;
    background: whitesmoke;
    border-radius: 10px;
    box-shadow: 0 0 20px -8px #000000;
    font-weight: 500;  
}

.Section3-Image {
	border-radius: 6px;
    box-shadow: 0 0 20px -8px #000000;
    width:90%
}

.Section3-Caption {
	text-align: center;
    font-weight: bold;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 3rem;
    margin-top: 15px;
}

.faded-line {
	border: none;
    height: 2.5px; /* Adjust the height of the line */
    background: linear-gradient(to right, transparent, #990000, transparent);
    margin: 20px 0;
    width: 100%;
}

@media all and (max-width: 1430px) {

.Section1-Image {
    width:90%
}

.Container {
	margin: 0px;
}
}
@media all and (max-width: 1750px) {
.Container .Section2 {
	grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
}

  .Section2-Left, .Section2-Right, .Section2-Bottom {
    grid-column: 1 / 2; /* Each item spans the single column */
  }

  .Section2-Left {
    grid-row: 1 / 2; /* First item is in the first row */
  }

  .Section2-Right {
    grid-row: 2 / 3; /* Second item is in the second row */
  }

  .Section2-Bottom {
    grid-row: 3 / 4; /* Third item is in the third row */
  }

.Container .Section3 {
	grid-template-columns: 1fr;
    grid-auto-flow: dense;
}

.Container .Section3 > *:nth-child(1) {
        grid-row: 2;
    }

    .Container .Section3 > *:nth-child(2) {
        grid-row: 1;
    }
}

@media (min-width: 1000px) and (max-width: 1750px) {
	.Section2-Image {
    width:60%
}
	.Section3-Image {
    width:60%
}
}
/* Photo Gallery */

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photogallery-container {
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

button {
	width: 5%;
}
.arrow-button {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

#leftArrow {
    left: 10px;
}

#rightArrow {
    right: 10px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px -8px #000000;
}

.thumbnails-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.thumbnails {
    display: flex;
    flex-wrap: nowrap;
}

.thumbnail {
    width: 100px;
    height: 75px;
    margin: 0 10px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s;
    flex: 0 0 auto;
}

.thumbnail:hover,
.thumbnail.active {
    border: 2px solid #007BFF;
}

@media all and (max-width: 767px) {

.photogallery-container {
	max-width: 350px;
}
}