*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(wallpapers/blur1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 100px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #EEEDE7;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #EEEDE7;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #EEEDE7;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box h8{
    padding-bottom: 100px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #EEEDE7;
}
nav .fa{
    display: none;
    color: #EEEDE7;
}
.hero-btn-white{
    display: inline-block;
    text-decoration: none;
    color: #EEEDE7;
    border: 1px solid #EEEDE7;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn-white:hover{
    border: 1px solid #E7D2CC;
    background: #E7D2CC;
    transition: 1s;
    opacity: 0.7;
}

/*------ About -------*/

.about, .about1{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.about h1{
    font-size: 36px;
    font-weight: 600;
}
.about p{
    color: #868B8E;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.profile_pic{
    border-radius: 50%;
    width: 200px;
}

.about1{
    padding-top: 5px;
}
.column {
    padding-left: 5px;
}


/*------ about-sections -------*/

.about-sections{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #868B8E;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

/* The actual timeline (the vertical ruler) */
.timeline{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #868B8E;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  /* Container around content */
.container{
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color:#EEEDE7;
  border: 4px solid #868B8E;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #868B8E;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #868B8E;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #868B8E;
  border-width: 10px 10px 10px 0;
  border-color: transparent #868B8E transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 10px 30px;
  /* background-color: white; */
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 700px wide */
@media screen and (max-width: 700px){
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid #868B8E;
    border-width: 10px 10px 10px 0;
    border-color: transparent #868B8E transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }

  .profile_pic{
    width: 150px;
}
}


/*------ footer -------*/

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.icons{
    color: #868B8E;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.icons a{
    color: #868B8E;
    text-decoration: none;
}

.footer p{
    font-size: 10px;
}


@media(max-width: 700px){
    .text-box h1{
        font-size: 25px;
    }
    .text-box h8{
        font-size: 13px;
    }
    .text-box p{
        font-size: 10px;
    }
    .hero-btn{
        font-size: 9px;
    }
    .hero-btn-black{
        font-size: 9px;
        padding: 6px 17px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #868B8E;
        opacity: 0.8;
        height: 100vh;
        width: 150px;
        top: 0;
        right: -150px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa-regular{
        display: block;
        color: #EEEDE7;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    nav .fa{
        display: block;
    }
    .nav-links ul{
        padding: 20px;
    }
    .about h1{
        font-size: 20px;
    }
    .about p{
        font-size: 14px;
    }
    .about-sections h1{
        font-size: 20px;
    }
    .about-sections h3{
        font-size: 15px;
    }
    .about-sections h5{
        font-size: 10px;
    }
    .about-sections p{
        font-size: 12px;
    }
    .footer p{
        font-size: 8px;
    }
    .column {
        padding-top: 5px;
    }
}


/*--------------- Sub Pages ----------------*/

.sub-header{
    height: 30vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(wallpapers/blur1.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #EEEDE7;
}

.sub-header h1{
    margin-top: 50px;
}

/* ------------- Blogs ----------------- */
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.blog-column{
    flex-basis: 31%;
    background-color: #EEEDE7;
    border-radius: 10px;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 1%;
    margin-bottom: 1%;
    padding: 10px 10px;
    box-sizing: border-box;
    transition: 0.5s;
    text-decoration: none;
}
.blog-column a{
    text-decoration: none;
}
.blog-column h3 {
    text-align: center;
    font-weight: 600;
    padding: 0 0;
    text-decoration: none;
    color: black;
}
p{
    text-align: center;
    padding-bottom: 3px;
}
p.blog-pDate{
    text-align: right;
    padding: 0 0 0 0;
    font-size: 12px;
}
p.blog-tags{
    text-align: center;
    padding: 0 0 0 0;
    font-size: 12px;
}
.blog-column:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}


@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .sub-header h1{
        font-size: 25px;  
    }
    .blog-column h3{
        font-size: 15px;
    }
    .blog-column p{
        font-size: 12px;
    }
    .blog-column p.blog-pDate{
        font-size: 10px;
    }
    .blog-column p.blog-tags{
        font-size: 10px;
    }
}


/* --------------Photography------------- */
.gallery{
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}
.gallery img{
    width: 100%;
    cursor: pointer;
}
.gallery img:hover{
    transform: scale(0.95);
    border-radius: 5px;
}
.full-img{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.full-img img{
    width: 90%;
    max-width: 500px;
}
.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

/* --------------Individual Blogs---------------- */

.blog-header{
    height: 15vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(wallpapers/blur1.jpg);
    background-position: center;
    background-size: cover;
}
p.blog-Date{
    text-align: left;
    padding: 0 0 0 0;
    font-size: 12px;
}
ul.blog-modifications{
    font-size: 10px;
}
.blog-content{
    width: 90%;
    margin: auto;
    padding: 10px 0;
}
.blog-left{
    flex-basis: 75%;
}
.blog-left img{
    width: 70%;
}
.blog-left iframe{
    width: 100%;
}
.blog-left h1{
    text-align: left;
}
.blog-left h3{
    text-align: left;
}
.blog-left p.indent{
    text-align: left;
    text-indent: 30px;
    font-size: 18px;
    font-weight: 400;
    /* font-style: italic; */
}
.blog-right{
    flex-basis: 20%;
}
.blog-right h3{
    background: #B9B7BD;
    color: black;
    padding: 7px 0;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 0;
    opacity: 0.8;
    text-align: center;
}
.blog-right p{
    padding:0 0;
    margin-bottom: 0px;
}

.contents a{
    padding: 10px 0;
    font-size: 12px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #868B8E;
}
.img_src{
    font-size: 9px;
    padding-top: 0px;
}
.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}
.comment-box h3{
    text-align: left;
}
.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button{
    margin: 10px 0;
}
.hero-btn-black{
    display: inline-block;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 12px 34px;
    font-size: 13px;
    background: #E7D2CC;
    opacity: 0.5;
    position: relative;
    cursor: pointer;
}
.hero-btn-black:hover{
    border: 1px solid #E7D2CC;
    background: #E7D2CC;
    transition: 1s;
    opacity: 0.8;
}


@media(max-width: 700px){
    .blog-left p.blog-Date{
        font-size: 10px;
    }
    ul.blog-modifications{
        font-size: 8px;
    }
    .blog-left h1{
        margin-top: 0px;
        font-size: 25px;
    }
    .blog-left h3{
        font-size: 17px;
    }
    .blog-left p.indent{
        font-size: 15px;
    }
    .img_src{
        font-size: 6px;
        padding-top: 0px;
    }
}

/* -------------- Contact Me -------------- */
.contact{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 20px;
}
.contact-col div{
    display: flex;
    align-items: left;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #868B8E;
    margin: 10px;
    margin-right: 25px;
    margin-left: 10px;
}
.contact-col div p{
    padding: 0;
    font-size: 12px;
    text-align: left;
}
.contact-col div h5{
    font-size: 15px;
    margin-bottom: 0px;
    color: #868B8E;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}
.contact-col div h5::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #868B8E;
    display: block;
    margin: auto;
    transition: 0.5s;
    opacity: 0.5;
}
.contact-col div h5:hover::after{
    width: 100%;
}
.contact-col div a{
    text-decoration: none;
    color: #868B8E;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
@media(max-width: 700px){
    .contact-col{
        margin-top: 20px;
    }
    .contact-col div .fa{
        font-size: 20px;
    }
    .contact-col div p{
        font-size: 12px;
    }
    .contact-col div h5{
        font-size: 14px;
    }

}



#ScrollToTop {
      display: none; /* Hidden by default */
      position: fixed; /* Fixed/sticky position */
      bottom: 20px; /* Place the button at the bottom of the page */
      right: 30px; /* Place the button 30px from the right */
      z-index: 99; /* Make sure it does not overlap */
      border: none; /* Remove borders */
      outline: none; /* Remove outline */
      background-color: #E7D2CC; /* Set a background color */
      color: 868B8E; /* Text color */
      cursor: pointer; /* Add a mouse pointer on hover */
      padding: 15px; /* Some padding */
      border-radius: 10px; /* Rounded corners */
      font-size: 18px; /* Increase font size */
      opacity: 0.5;
}
#ScrollToTop:hover {
    background-color: #E7D2CC; /* Add a dark-grey background on hover */
    opacity: 0.8;
}



/* https://www.canva.com/colors/color-palettes/room-for-comfort/ */