html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body{
    margin: 0px;
    padding: 0px;
    background: linear-gradient(90deg, rgb(3, 16, 38), rgb(18, 37, 63));
    color: rgb(241,239,216);
}

button{
    cursor: pointer;
}

.navAligner{
    width: 100%;
    height: 80px;
    position: fixed;
    background: linear-gradient(90deg, rgb(3, 16, 38), rgb(18, 37, 63));
    z-index: 5;
    background-color: pink;
}

.navLogo{
    max-height: 70px; 
    max-width: 4%; 
    position: absolute; 
    z-index: 6; 
    top: 50%;
    left:5px;
    transform: translatey(-50%);
}

#navSpaceForHeader{
    height: 80px;
    width:100%;
}

#nav{
    height:80px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
    margin-left: 5%;
    /* background: linear-gradient(135deg, rgb(3, 16, 38), rgb(18, 37, 63));; */
}

#nav ul{
    height:80px;
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 0px;
    padding: 0px;
}

#nav li{
    display: inline-block;
    margin-right:20px;
}

#nav a:link, #nav a:visited {
    text-decoration: none;
    color: rgb(241,239,216);
}

#nav a:hover {
    background: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    );

    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
            text-fill-color: transparent;
}

.navSpacer{
    font-size: 25px;
}

#nav img{
    height: 40px;
    margin-left: 15px;
    border-radius: 10px;
}

.navAligner .socials{
    height: 40px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 15px;
}

.navAligner .socials img{
    height: 100%;
    width: auto;
    margin-left: 15px;
    border-radius: 10px;
}


#burger {
    position: absolute;
    z-index: 100; /* Ensure it sits above the nav */
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    /* background-color: rgb(241, 239, 216); */
    margin-right: 5px;
    border-radius: 5px;
    
    /* NEW: Turn the container into a flexbox column to align the bars */
    display: none; /* Hidden by default, shown in mobile view */
    flex-direction: column;
    justify-content: space-between; /* Spaces the three lines perfectly */
    align-items: center;
    
    /* Padding keeps the bars from touching the very edge of the box */
    padding: 6px; 
    box-sizing: border-box;
    cursor: pointer;
}

#burger span {
    display: block;
    width: 100%;
    height: 3px; 
    /* background-color: #4a4a4a;  */
    background: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    );
    border-radius: 2px;
    transition: all 0.3s ease-in-out; /* Smooth transition for animations later */
}

/* Rotate the top bar down */
#burger.open span:nth-child(1) {
    transform: translateY(15px) rotate(45deg) translateX(-2px);
}

/* Hide the middle bar */
#burger.open span:nth-child(2) {
    opacity: 0;
}

/* Rotate the bottom bar up */
#burger.open span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg) translateX(-2px);;
}

header{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    min-height: 25vh;
    margin: 0px;
    /* background: linear-gradient(135deg, rgb(3, 16, 38), rgb(18, 37, 63));; */
}

header img{
    max-width: 170px;
    /* max-width: 20%; */
    max-height: 90%;
    margin: 0px;
    margin-right: 20px;
    margin-left: 50px;
}

header h1{
    font-size: 50px;
    margin-top: 0px;
    margin-bottom: 0px;
}

header h3{
    margin-top: 2px;
    margin-bottom: 2px;
    float: right;
}

.gold-text {
    /* 1. Apply your metallic gold gradient */
    background: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    );

    /* 2. Clip the background to the text shapes */
    -webkit-background-clip: text;
            background-clip: text;

    /* 3. Make the default text color transparent so the background shines through */
    -webkit-text-fill-color: transparent;
            text-fill-color: transparent;

    /* Optional but highly recommended: */
    font-weight: bold; /* Thicker fonts show off metallic gradients much better! */
}

section{
    margin: 0px;
    padding: 0px;
    width:100%;
    min-height: calc(100vh - (80px + 25vh + 80px + 140px)); /* Full viewport height minus header, title and footer */
}

section h2{
    /* text-align: center; */
    font-size: 35px;
}

.splitFlex{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0px;
    height: 100%;
}

#whoAreWe {
    width: 90%;
    height: auto;
    margin: 0px;
    margin-left: 5%;
    margin-top: 40px;
    margin-bottom: 70px;
}

#whoAreWe h2{
    margin-bottom: 60px;
}

#whoAreWe p{
    font-size: larger;
}

#whoAreWe .left{
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    align-items: stretch
}

#whoAreWe .left img{
    max-width: 80%;
    max-height: 100%;

}

#whoAreWe .right{
    width: 60%;
    height: 100%;
    background-color: rgb(241,239,216);
    color: rgb(18, 37, 63);
    margin-left:-8px;

    border: 4px solid; /* Adjust thickness as needed */
    border-image: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    ) 1;

    container-type: inline-size;
}

#whoAreWe .right p{
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    text-align: justify;
    /* font-size: 22px; */
    font-size: 2.8cqi
}

#whatWeDo{
    position: relative;
    width:90%;
    height: auto;
    margin-top: 70px;
    margin-bottom: 70px;
    margin-left: 5%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#whatWeDo p{
    font-size: larger;
}

#whatWeDo .left{
    width: 40%;
    background-color: rgb(241,239,216);
    color: rgb(18, 37, 63);

    border: 4px solid; /* Adjust thickness as needed */
    border-image: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    ) 1;
    
}

#whatWeDo .left p{
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    text-align: justify;
    font-size: 22px;
    /* font-size: 2.8cqi */

}

#whatWeDo .right{
    width: calc(60% - 8px);
    display: flex;
    justify-content: center;
}

#whatWeDo .right img {
    max-width: 80%;
    max-height: 200px;
}

#kinshipQuote{
    width: 90%;
    margin-left: 5%;
    margin-bottom: -50px;
    /* background-color: pink; */
}

#kinshipQuote h3{
    font-size: 50px;
    margin:5px;
}

#kinshipQuote h2 {
    font-weight: lighter;
    font-size: 25px;
}

#upcomingEvents{
    width: 90%;
    margin-left: 5%;
    margin-bottom: 70px;
    height: auto;
    /* background-color: pink; */
}

#events{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.event { 
    position: relative;
    width: 20%;
    min-width: 265px;
    min-height: 450px;
    text-align: center;
    
    border: 4px solid; /* Adjust thickness as needed */
    border-image: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    ) 1;
    /* padding: 30px; */
}

.event .innerBorder{
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: 6px;
    /* padding: 4px; */

    border: 4px solid; /* Adjust thickness as needed */
    border-image: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    ) 1;
}

.innerBorder .topSpace{
    width:100%;
    height:10px;
}

.event h2{
    margin:0px;
    font-size: 30px;
}

.event p{
    font-size: larger;
}

.line{
    display: inline-block;
    border-bottom: solid white 1px;
    height:1px;
    width: 30%;
    margin-top: 8px;
}

.bookingButton {
    position: absolute;
    background: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 15%,  
        #c99e32 50%,  
        /* #f7e399 75%,   */
        #916812 100%
    );
    width: 50%;
    height: 2em;
    left: 25%;
    bottom: 20px;
    display: flex;
    align-items: center;         
    justify-content: center;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    color: rgb(18, 37, 63);
    border: none;
    cursor: pointer;
}

#joinUs{
    width: 90%;
    height: auto;
    margin-left: 5%;
}

#joinUs a:hover{
    background: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    );

    -webkit-background-clip: text;
            background-clip: text;

    -webkit-text-fill-color: transparent;
            text-fill-color: transparent;
}

#joinUs .left{
    vertical-align: top;
    width: 35%;
    font-size: 60px;
    padding: 0px;
    text-align: center;

    display: flex;
    flex-direction: column;   /* Keeps content stacking vertically */
    justify-content: center; /* Centers content vertically */
    align-items: center;     /* Centers content horizontally (optional) */
}

#joinUs .left h3{
    margin: 0px;  
}

#joinUs .right{
    width: 65%;
    background-color: rgb(241,239,216);
    color: rgb(18, 37, 63);
    margin-left:-8px;

    border: 4px solid; /* Adjust thickness as needed */
    border-image: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    ) 1;
}


#joinUs p, #joinUs li{
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    text-align: justify;
    font-size: 22px;
}

#joinUs a:link, #joinUs a:visited{
    text-decoration: none;
    color: rgb(18, 37, 63);
    /* color: rgb(241,239,216); */
}

footer{
    height: 110px;
    width: 100%;
    margin-top: 70px;

    /* background-color: gray; */
    color: white;
    /* text-align: center; */
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding-top:30px;
    padding-bottom: 30px;
    border-top:solid 1px white;

    border-image: linear-gradient(
        135deg, 
        #a67c1e 0%,   
        #f2d479 25%,  
        #c99e32 50%,  
        #f7e399 75%,  
        #916812 100%
    ) 1;
}

footer div{
    margin-left: 12px;
    margin-right: 12px;
}

footer p{
    font-size: 15px;
    margin: 5px;
}

.footerRightGroup{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

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

footer img{
    height: 50px;
    margin-right: 15px;
    border-radius: 10px;
}

footer a:link, footer a:visited {
    text-decoration: none;
    color: rgb(241,239,216);
}

#octopod{
    height: 100%;
    /* width: 80px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#octopod a:link, #octopod a:visited {
    text-decoration: none;
    color: #f4511e;
    font-family: sans-serif;
}

#octopod img {
    height:40px;
    width: 40px;
    background-color: #f4511e;
    border-radius: 100%;
    padding: 5px;
}

.LargestText{
    font-size: 70px;
    margin-bottom: 5px;
}

.LargestText2{
    font-size: 50px;
    margin-bottom: 30px;
    text-align: center;
}

.subTitle{
    font-size: 25px;
    /* margin-top: -25px; */
}

.justified{
    text-align: justify;
}

.centered{
    text-align: center;
}