body, html {
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
    cursor: url(''),auto;

}
 body h1 {
    font-family: "Averia Serif Libre", serif;
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 20px; 
 }

 body h2 {
    font-family: "Averia Serif Libre", serif;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px; 
 }

 body h3 {
    font-family: "Averia Serif Libre", serif;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px; 
 }

 body p {
    font-family: alata;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px; 
 }

:root {
    --primary-color: #FFFEF5;
    --secondary-color: #2D2D2D;
    --third-color: #F7DAE1;
    --fourth-color: #235A57;
}

/* header nav */
header nav.mobile {
    display: block;
    text-align: right;    


}
header nav.mobile .active {
    background-color: transparent;
}

header nav.mobile .hamburger {
    display: inline-block;
    cursor: pointer;
    z-index: 110;

}

header nav.mobile .hamburger.active {
    display: inline-block;
    cursor: pointer;
    z-index: 110;
    position: relative;
}

header nav.mobile .hamburger.active span:nth-child(1) {
    display: none;
}

header nav.mobile .hamburger.active span:nth-child(2) {
    transform: rotate(180deg) ;
}

header nav.mobile .hamburger.active span:nth-child(3) {
    display: none;
}

header nav.mobile .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    border-radius: 2.5px;
    transition: 1s;
}
header nav.mobile .hamburger.active span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px 0;
    border-radius: 2.5px;
}



header nav.mobile ul {
    display: none;
    list-style-type: none;
    line-height: 2rem;

    
    
}




header nav.mobile ul.show {
    display: block;
    position: absolute;
    background: var(--fourth-color);
    box-sizing: border-box;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 385vh;
    border-radius: 10px;
    text-align: center;
    padding-top: 20vh; 
    margin: 0;
    z-index: 100;
    animation: mymove 1s forwards;
    width: 100%; 
    padding-left: 0; 
    padding-right: 0; 
    }
    



@keyframes mymove {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
    
}

header nav.mobile ul.show li {

display: grid;
grid-template-rows: 1fr 1fr 1fr;
text-align: center;
font-size: 18px;
font-family: alata;

}   

header nav.mobile ul.show li a {
    text-decoration: none;
    color: var(--primary-color);

}

    /* top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f7f2e3ce;
    display: flex
;
    flex-direction: column;
} */



header nav.desktop {
    display: none;
}




/* main section */
.section1 {
    background-color: var(--third-color);
    border-top-right-radius:10px;
    border-top-left-radius: 10px;
    padding: 20px;
    margin: 10px;
    padding-bottom: 200px;
    position: relative;
    
}


 /* scalloped borders */
.section1::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at top, var(--third-color) 50%, transparent 50%) 0 / 37px 40px repeat-x;
    z-index: 1;
}



.cylinder {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    margin-left: 100px;
    width: 250px;
    height: 150px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    background-color: var(--primary-color);
    box-shadow: 2px 9px 8px -8px darkgray;  

}
#box,
#c {
  height: 120px;  /* Circle height */
  width: 120px;   /* Circle width */
  position: relative;
  color: var(--secondary-color);
}

#c {
  border-radius: 50%; /* Circle shape */
  position: absolute;
  margin-left: 12px;
  margin-top: 12px;
  clip: rect(-10px, 140px, 140px, -10px); /* Expanded clip size to ensure visibility */
  transform: rotate(-35deg); /* Rotate slightly left */
}

#text {
  position: absolute;
  top: 50%; /* Start positioning from the middle of the circle */
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the text perfectly */
  font-size: 9px;  /* Slightly smaller text size for better fit */
  white-space: nowrap; /* Prevents text from wrapping */
}

#text span {
  position: absolute;
  font-size: 8px;  /* Adjusted text size */
  left: 50%;
  transform-origin: center;
  top: 0;
}

/* Adjusted translateY() to move letters further out */
#t1 {
  transform: rotate(-180deg) translateY(-65px); /* First letter at -180deg */
}
#t2 {
  transform: rotate(-164deg) translateY(-65px); 
}
#t3 {
  transform: rotate(-148deg) translateY(-65px); 
}
#t4 {
  transform: rotate(-132deg) translateY(-65px); 
}
#t5 {
  transform: rotate(-116deg) translateY(-65px); 
}
#t6 {
  transform: rotate(-100deg) translateY(-65px); 
}
#t7 {
  transform: rotate(-84deg) translateY(-65px); 
}
#t8 {
  transform: rotate(-68deg) translateY(-65px); 
}
#t9 {
  transform: rotate(-52deg) translateY(-65px); 
}
#t10 {
  transform: rotate(-36deg) translateY(-65px); 
}
#t11 {
  transform: rotate(-20deg) translateY(-65px); 
}
#t12 {
  transform: rotate(-4deg) translateY(-65px); 
}
#t13 {
  transform: rotate(12deg) translateY(-65px); 
}
#t14 {
  transform: rotate(28deg) translateY(-65px); 
}
#t15 {
  transform: rotate(44deg) translateY(-65px); 
}
#t16 {
  transform: rotate(60deg) translateY(-65px); 
}
#t17 {
  transform: rotate(76deg) translateY(-65px); 
}


.circleheader {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0px; 
    margin-top: -75px; 
    justify-content: center;
    align-items: center; 
}

.circle {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%; 
    box-shadow: 2px 2px 5px darkgrey; 
}


#headerimg {
    width: auto;
    height: 90px;
    border-radius: 50%;
    margin-left: 110px;
    margin-top: -56px;
}


.spacer1 {
    height: 15px;

}

/* scetion 2 */

.section2 {
    display: block;
    padding: 20px;
    background-color: var(--fourth-color);
    margin: 10px;
    position: relative;
    padding-bottom: 40px;

}

.section2::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at bottom, var(--fourth-color) 50%, transparent 50%) 0 / 37px 40px repeat space;
    z-index: 1;
}

.section2 h1 {
    color: var(--primary-color);
}

.section2 h2 {
    color: var(--primary-color);
}

.section2 h3 {
    color: var(--primary-color);
}

.section2 p {
    color: var(--primary-color);
}

/* Scalloped border for the bottom */
.section2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at top, var(--fourth-color) 50%, transparent 50%) 0 / 37px 40px repeat-x;
    z-index: 1;
}

#section2 img {
    border-radius: 5px;
}

.spacer2 {
    height: 15px;

}

/* section 3 */


.section3 {
    display: block;
    padding: 20px;
    background-color: var(--secondary-color);
    margin: 10px;
    position: relative;
    padding-bottom: 40px;
    text-align: right;

}

.section3::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at bottom, var(--secondary-color) 50%, transparent 50%) 0 / 37px 40px repeat space;
    z-index: 1;
}

/* Scalloped border for the bottom */
.section3::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at top, var(--secondary-color) 50%, transparent 50%) 0 / 37px 40px repeat-x;
    z-index: 1;
    
}

.section3 h1 {
    color: var(--third-color);
}


.section3 p {
    color: var(--third-color);
}

#section3 img {
    border-radius: 5px;
}

.spacer3 {
    height: 15px;

}
/* section4 */

.section4 {
    display: block;
    padding: 20px;
    background-color: var(--secondary-color);
    margin: 10px;
    position: relative;
    padding-bottom: 40px;

}

.section4::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at bottom, var(--secondary-color) 50%, transparent 50%) 0 / 37px 40px repeat space;
    z-index: 1;
}

/* Scalloped border for the bottom */
.section4::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at top, var(--secondary-color) 50%, transparent 50%) 0 / 37px 40px repeat-x;
    z-index: 1;
}
.section4 h1 {
    color: var(--third-color);
}
.section4 p {
    color: var(--third-color);
}

.spacer4 {
    height: 15px;

}

#section4 img {
    border-radius: 5px;
}

/* section 5 */


.section5 {
    display: block;
    padding: 20px;
    background-color: var(--fourth-color);
    margin: 10px;
    position: relative;
    padding-bottom: 40px;
    text-align: right;

}

.section5::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at bottom, var(--fourth-color) 50%, transparent 50%) 0 / 37px 40px repeat space;
    z-index: 1;
}


/* Scalloped border for the bottom */
.section5::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at top, var(--fourth-color) 50%, transparent 50%) 0 / 37px 40px repeat-x;
    z-index: 1;
}

.section5 h1 {
    color: var(--primary-color);
}
.section5 p {
    color: var(--primary-color);
}



.spacer5 {
    height: 15px;

}
#section5 img {
    border-radius: 5px;
}

/* section 6 */


.section6 {
    display: block;
    padding: 20px;
    background-color: var(--third-color);
    margin: 10px;
    position: relative;
    padding-bottom: 40px;

}

.section6::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at bottom, var(--third-color) 50%, transparent 50%) 0 / 37px 40px repeat space;
    z-index: 1;
}

/* Scalloped border for the bottom */
.section6::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at top, var(--third-color) 50%, transparent 50%) 0 / 37px 40px repeat-x;
    z-index: 1;
}

.section6 h1 {
    color: var(--secondary-color);
}
.section6 p {
    color: var(--secondary-color);
}


.spacer6 {
    height: 15px;

}

#section6 img {
    border-radius: 5px;
}


/* get in touch */
.section7 {
    display: block;
    padding: 20px;
    background-color: var(--secondary-color);
    margin: 10px;
    position: relative;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px ;
}

h4 {
    text-align: center;
    font-size: 36px;
    font-family: "Averia Serif Libre", serif;
    color: var(--third-color);
}

.section7::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%; 
    height: 20px; 
    background: radial-gradient(circle at bottom, var(--secondary-color) 50%, transparent 50%) 0 / 37px 40px repeat space;
    z-index: 1;
}


.groupsocials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.groupsocials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;  /* Allows the items to wrap to the next row */
    gap: 10px;
}

.squareone, .squaretwo, .squarethree, .squarefour {
    display: flex;
    justify-content: center;  
    align-items: center;  
    width: 100px; 
    height: 100px; 
    border-radius: 8px; 
    padding: 10px;  
}

.squareone img, .squaretwo img, .squarethree img, .squarefour img {
    max-width: 100%;  
    max-height: 100%;
    object-fit: contain; 
}



.groupsocials > * {

    max-width: calc(50% - 20px);
}

.squareone {
    height: 100px;
    border-radius: 15px;
}
.squaretwo {
    height: 100px;
    border-radius: 15px;
}
.squarethree {
    height: 100px;
    border-radius: 15px;
}
.squarefour {
    height: 100px;
    border-radius: 15px;
}



/* footer */
h5{
    text-align: center;
    font-size: 12px;
    margin-top: 40px;
    margin-bottom: 0px;
}
h5 a {
    text-decoration: none;
    color: var(--third-color);
    font-family: alata;
}
.footer {
    margin-top: 40px;

}
#footercopywrite {
    text-align: center;

}

#footercopywrite p {
    font-size: 12px;
    font-family: alata;
    color: var(--third-color);
}

































/* media screen for desktop */
@media screen and (min-width: 1440px) {

    section:nth-of-type(n + 2):nth-of-type(-n + 6) {
        display: grid;
        grid-template-columns: 4fr 6fr  ; /* Two equal columns */
        align-items: center; /* Vertically align items */
        gap: 40px; /* Adjust spacing between items */
      }
      
  
  
      /* Additional style for each section if needed */
      section:nth-of-type(2) .text {
      /* Specific styles for the second section */
      grid-column: 2;
      text-align: left;
      }
  
      section:nth-of-type(2) img {
      /* Specific styles for the second section */
      grid-column: 1;
      justify-self: end;
      height: auto;
      width: 600px;
      }
    
  
        /* Additional style for each section if needed */
        section:nth-of-type(3) .text {
          /* Specific styles for the second section */
          grid-column: 1;
          text-align: right;
          }
      
          section:nth-of-type(3) img {
          /* Specific styles for the second section */
          grid-column: 2;
          justify-self: end;
          height: auto;
          width: 400px;
          margin-right: 200px;
          }
  
                /* Additional style for each section if needed */
        section:nth-of-type(4) .text {
          /* Specific styles for the second section */
          grid-column: 1;
          text-align: left;
          }
      
          section:nth-of-type(4) img {
          /* Specific styles for the second section */
          grid-column: 2;
          justify-self: end;
          height: auto;
          width: 400px;
          }
                /* Additional style for each section if needed */
        section:nth-of-type(5) .text {
          /* Specific styles for the second section */
          grid-column: 1;
          text-align: right;
          }
      
          section:nth-of-type(5) img {
          /* Specific styles for the second section */
          grid-column: 2;
          justify-self: end;
          height: auto;
          width: 400px;
          margin-right: 300px;
          }
  
                /* Additional style for each section if needed */
        section:nth-of-type(6) .text {
          /* Specific styles for the second section */
          grid-column: 2;
          text-align: left;
          }
      
          section:nth-of-type(6) img {
          /* Specific styles for the second section */
          grid-column: 1;
          justify-self: end;
          height: auto;
          width: 300px;
          margin-left: 200px;
          }
        
    body {
        margin: 0.5vw;
    }
    header nav.desktop {
        display: flex;
    }

    header nav.mobile {
        display: none;
    }
    header nav.desktop .active {
        background-color: transparent;

    }

    header nav.desktop ul {
        display: flex;
        justify-content: flex-end;
        list-style-type: none;
        padding: 0;
        margin: 0;
        gap: 30px;
        color: var(--secondary-color);
        font-family: alata;
        font-size: large;
        width: 100%;
    }


    header nav.desktop ul li a {
        text-decoration: none;
        color: var(--secondary-color);
    }
    header nav.desktop ul li:first-child {
        margin-left: auto;
      
    }

    .desktop button {
        background-color: var(--secondary-color);
        border: none;
        border-radius: 10px;
        padding: 10px 40px 10px 20px;
        font-size: 16px;
        font-family: alata;
        cursor: pointer;
        width: 200px;
    }


    header nav.desktop ul li a {
        color: var(--primary-color);
    }

    .section1, .section2, .section3, .section4 {
        margin: 1vw ;
        max-width: 100%;
    }





    .circleheader {
        margin-left: 40px;
    }

    
    .cylinder {
        display: absolute;
        margin: 0 auto;
        margin-top: 70px;
        margin-right: -20px;
        width: 800px;
        height: 200px;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        background-color: var(--primary-color);
        box-shadow: 2px 9px 8px -8px darkgrey;
    }

    #headerimg {
        margin-top: -130px;
        margin-left: 655px;
        width: auto;
        height: 175px;
    }
    #c {
        margin-left: 60px;
        margin-top: 30px;
    }
    



    #circleheader {
        font-size: 50px;
        letter-spacing: 50px;
    }

    h1 {
        font-size: 36px;
    }


    .groupsocials {
        gap: 80px;
    }


}