/* 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;
}
.header-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px 0 100px 0;
}
.page-container h1{
    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: 48px;
    line-height: 115%;
    margin-bottom: 20px;
}
.header-text p{
    font-weight: lighter;
    color:#000000;
    font-size: 25px;
    text-align: center;
    width: 85%;
}

.image-container{
    position: relative;
    width: 600px ;
    height: 600px ;
}

.image-container img{
    object-fit: cover;
    width: 100% ;
    height: 100% ;
    z-index: 1;
    border-radius: 4px;
}

.event-container .rectangle{
    top: -5%; /* Position relative to parent height */
    left: -5%; /* Shift right by percentage */
    width: 95%; /* Responsive width */
    height: 550px;
    border: 3px solid #3EE090;
    margin: 0px;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    border-radius: 4px;
}

.event-text{
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    max-width: 500px;
}

.event-text h2{
    font-weight: 700;
    color:#4E544D;
    font-size: 25px;
}

.event-text h1{
    font-size: 57px;
}

.event-text p{
    font-weight: lighter;
    color:#000000;
    font-size: 19px;
    font-style: italic;
}

.corporate-container{
    padding-top: 100px;
    padding-bottom: 100px;
}
.corporate-container .rectangle{
    top: -5%; /* Position relative to parent height */
    right: -5%; /* Shift right by percentage */
    width: 95%; /* Responsive width */
    height: 550px;
    border: 3px solid #3EE090;
    margin: 0px;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    border-radius: 4px;
}

.corporate-text{
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    max-width: 500px;
}

.corporate-text h2{
    font-weight: 700;
    color:#4E544D;
    font-size: 25px;
}

.corporate-text h1{
    font-size: 45px;
}

.corporate-text p{
    font-weight: lighter;
    color:#000000;
    font-size: 19px;
    font-style: italic;
}

.government-container{
    padding-top: 100px;
    padding-bottom: 100px;
}
.government-container .rectangle{
    top: -5%; /* Position relative to parent height */
    left: -5%; /* Shift right by percentage */
    width: 95%; /* Responsive width */
    height: 550px;
    border: 3px solid #3EE090;
    margin: 0px;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    border-radius: 4px;
}

.government-text{
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    max-width: 500px;
}

.government-text h2{
    font-weight: 700;
    color:#4E544D;
    font-size: 25px;
}

.government-text h1{
    font-size: 53px;
}

.government-text p{
    font-weight: lighter;
    color:#000000;
    font-size: 19px;
    font-style: italic;
}
/* Responsive Design */
@media screen and (max-width:1024px){
    .page-container{
        width: auto;
    }
    .header-text{
        text-align: center;
    }
    .event-text h1 {
        font-size: 55px;
    }
    .event-text h2 {
        font-size: 23px;
    }
    .image-container {
        width: 550px;
        height: 550px;
    }
}
@media screen and (max-width: 768px) {
    .event-text, 
    .corporate-text,
    .government-text{
        text-align: center;
        padding-bottom: 20px;
        max-width: 90vw;
        padding-left: 0px;
    }
    .event-container .rectangle,
    .corporate-container .rectangle,
    .government-container .rectangle {
        display: none;
    }
    .image-container {
        width: 100vw;
        height: 50vh;
    }
    .page-container h1{
        font-size: 40px;
    }

    .header-text p {
        font-size: 19px;
    }
    .header-text {
        margin: 100px 0 50px 0;
    }
    .government-container {
        padding-top: 0px;
    }
    .event-text p,
    .corporate-text p,
    .government-text p {
        font-size: 17px;
    }

    .flex-layout-one,
    .flex-layout-two  {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        margin-top: 0px !important;
        text-align: left;
    }

    .room-book-one,
    .room-book-two {
        margin: 15px 0;
    }

    
}

@media (max-width: 425px) {
    .main{
        margin: 0px;
    }
    .page-container h1 {
        font-size: 27px;
    }
    .page-container{
        max-width: 425px;
    }
    .header-text p {
        font-size: 14px;
    }
    .event-text h2, 
    .corporate-text h2,
    .government-text h2  {
        font-size: 15px;
    }
    .event-text p, .corporate-text p, .government-text p {
        font-size: 12px;
    }
    .event-text h1,
    .corporate-text h1,
    .government-text h1 {
        font-size: 34px;
    }
    .flex-layout-two {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: right;
        margin-top: 40px;
        align-items: center;
    }
    .event-container .rectangle {
        display: none;
    }
    .image-container {
        width: 100%;
    }
}

@media screen and (max-width: 320px) {
    .event-text, .corporate-text, .government-text {
        max-width: 100vw;
    }
}