/* Font Imports */
@font-face {
    font-family: 'Photograph Signature';
    src: url(assets/fonts/photograph_signature-webfont.woff2) format('woff2'),
         url(assets/fonts/photograph_signature-webfont.woff) format('woff');
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Futura", sans-serif;
    src: url(assets/fonts/futura-condensedlight-webfont.woff2) format('woff2'),
         url(assets/fonts/futura-condensedlight-webfont.woff) format('woff');
    font-style: normal;
    font-weight: 300;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
html, body {
    font-family: "Futura", sans-serif;
    line-height: 1.5;
}

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 70px;
}


.page-container{
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main h1,h5{
    background: linear-gradient(180deg, hsl(151, 75%, 54%) 19%, #4F94D9 82%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: bold;
    font-size: 57px;
    line-height: 115%;
}
.page-container h5{
    font-weight: 700;
    font-size: 37px;
    -webkit-text-fill-color:#4F94D9;
}

.page-container h2{
    font-weight: 900;
    color:#4E544D;
    font-size: 25px;
}

.page-container h4{
    font-weight: 900;
    color:#000000;
    font-size: 20px;
}
.header-text-container p{
    font-weight: lighter;
    color:#000000;
    font-size: 25px;
    text-align: center;
}
.text-package li{
    list-style-type: none;
    font-weight: lighter;
    color:#000000;
    font-size: 18px;
}

.header-text-container{
    display:flex;
    flex-direction: column;
    align-items: center;
    width: 900px;
    margin-top: 100px;
    margin-bottom: 50px;
}

.header-text-container h2,h1{
    margin-bottom: 10px;
}

.tour-inclusion{
    display: flex;
    flex-direction: column;
    background-color: #e7eeef;
    padding: 20px 50px 20px 50px;
    border-radius: 10px;
}
.tour-inclusion h4{
    margin-bottom: 10px;
}
.tour-inclusion h3{
    color: red;
    font-size: 18px;
}
.tour-inclusion ul{
    padding: 40px;
}
.text-package{
    display: flex;
}
.inquire{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid black;
    border-radius: 5px;
    padding: 15px 100px 15px 100px;
    margin-top: 50px;
}
.inquire h5{
    margin-bottom: 10px;
}
.email a{
    text-decoration: none;
    color: black;
}
/* Gallery Section */
.gallery-section {
    margin: 50px 0;
    text-align: center;
}

/* Flexbox Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of items to the next row */
    gap: 15px; /* Adds space between items */
    justify-content: center; /* Centers the items in the container */
}

.gallery-item {
    flex: 1 1 calc(33.333% - 15px); /* Each item takes 1/3 of the row, minus the gap */
    box-sizing: border-box; /* Ensures padding and border are included in width/height */
    max-width: calc(33.333% - 15px); /* Prevents items from growing beyond 1/3 */
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Responsive Design */
@media (max-width: 768px) {
    .header-text-container{
        width: auto;
    }
    .header-text-container p{
        font-size: 20px;
    }
    .main h1{
        font-size: 50px;
    }
    .tour-inclusion ul {
        padding: 0px;
    }
    .page-container h4 {
        font-size: 23px;
        padding-bottom: 10px;
    }
    .page-container h2 {
        font-size: 23px;
        margin-bottom: 0px;
    }
    .page-container h5 {
        font-size: 40px;
        text-align: center;
    }
    .tour-inclusion h3{
        font-size: 16px;
    }
}

@media (max-width: 425px) {
    .gallery-item {
        flex: 1 1 100%; /* One item per row on small screens */
        max-width: 100%;
    }
    .header-text-container{
        width: auto;
    }
    .header-text-container p{
        font-size: 11px;
    }
    .main h1{
        font-size: 30px;
    }
    .tour-inclusion ul {
        padding: 10px;
    }
    .page-container h4 {
        font-size: 19px;
        padding-bottom: 10px;
    }
    .page-container h2 {
        font-size: 16px;
        margin-bottom: 0px;
    }
    .page-container h5 {
        font-size: 34px;
        text-align: center;
    }
    .text-package {
        flex-direction: column;
    }
    .email{
        font-size: 16px;
        display: flex;
    }
    .inquire {
        padding: 15px 70px 15px 70px;
    }
}

@media (max-width: 375px) {
    .inquire {
        padding: 15px 50px 15px 50px;
    }
}