* {
    margin: 0;
}

body {
    background-color: #011126;
   
}

/* Navbar Styles */

.navbar {
    position: fixed;
    background-color: #011126;
    width: 100%;
    height: 45px;
    z-index: 100;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    list-style: none;
    margin-top: 13px;
}

.navbar a {
    position: relative;
    text-decoration: none;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar ul li a:hover {
    color: #F2C166;
    padding: 3px 0px;
    border-bottom: rgba(242, 193, 102,0.8) 2px solid;
    border-top: rgba(245, 204, 129, 0.8) 2px solid;
    transition: 0.3s;
}

/* Main Content Styles */
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
    background-image: url(imgs/mountains-6403935_1920.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-content h2 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 50px;
    padding: 5px;
    letter-spacing: 2px;
    color: aliceblue;
}

.main-content h4 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 25px;
    color: rgba(204, 216, 226,0.8);
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 5px;
}
.btn-main-content {
  position: relative;
  background-color: #011126;
  border-radius: 4em;
  margin-top: 10px;
  font-size: 16px;
  color: white;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  padding: 0.8em 1.8em;
  cursor:pointer;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-main-content:hover {
  transition-duration: 0.1s;
  background-color: #011126;
  border: aliceblue 2px solid;
}

.btn-main-content:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 4em;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
  box-shadow: 0 0 10px 40px white;
}

.btn-main-content:active:after {
  box-shadow: 0 0 0 0 white;
  position: absolute;
  border-radius: 4em;
  left: 0;
  top:0;
  opacity: 1;
  transition: 0s;
}

.btn-main-content:active {
  top: 1px;
}


/* Introduction Section Styles */
.introduction {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #011126;
}

.intro {
    font-family: "Ubuntu", sans-serif;
    line-height: 120%;
    word-spacing: 2px;
    font-size: 14px;
    width: 50%;
    color: rgba(255, 255, 255, 0.6);
    border: rgba(255, 255, 255, 0.6) 2px solid;
    border-radius: 8px;
    height: auto;
    margin: 30px;
}

.introduction p {
    display: flex;
    background-color: rgba(3, 13, 100, 0.8);
    align-items: center;
    padding: 15px 15px;
    font-style: italic;
    font-weight: 500;
}
.profile-pic {
    display: flex;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: rgba(255, 255, 255, 0.6) 4px solid;
}
/* Footer Styles */
.footer {
    background-color: #011126;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    bottom: 0;
    color: rgba(204, 216, 226,0.8);
}

.footer i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

.footer i:hover {
    color: white;
    cursor: pointer;
    text-shadow: white 0px 0px 10px;
    transition: 0.3s;
}

.footer a {
    color: inherit;
}

.footer a:visited {
    text-decoration: none;
    color: rgba(204, 216, 226,0.8);
}

.footer a:clicked {
    text-decoration: none;
    color: rgba(204, 216, 226,0.8);
}

.attribution {
    font-size: 13px;
    margin-top: 10px;
}
.attribution a {
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
    color: rgba(204, 216, 226,0.8)
}

@media (max-width: 700px) {
    .navbar ul {
        gap: 10px;
    }

    .main-content h2 {
        font-size: 30px;
    }

    .main-content h4 {
        font-size: 18px;
    }

    .intro {
        width: 80%;
        font-size: 12px;
    }

    .introduction {
        height: auto;
    }
}

/* Gallery Section Styles */


.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}

.gallery-main-content {
    background-color: #011126;
    
}

.gallery-main-content h2 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 40px;
    padding: 5px;
    letter-spacing: 2px;
    color: aliceblue;
    text-align: center;
    background-color: #011126;
    padding-top: 50px;
}

figure {
    background-color: #011126;
    display: grid;
    width: 80vw;
    grid-template-columns: 1fr 1fr;
    position: absolute;
}

.gallery-item {
    border: aliceblue 2px solid;
    position: relative;
    border-radius: 15px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
figcaption {
    position: relative;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 10px 0;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    border-bottom-right-radius: 15px;
   border-top-right-radius: 15px;
}


@media (max-width: 700px) {
    figure {
        grid-template-columns: 1fr;
        width: 90vw;
    }

    figcaption {
    border-bottom-left-radius: 15px;
    }
}

/*contact section styles*/

.contact-main-content {
    background-color: #011126;
    height: 84vh;
    display: flex;
    justify-content: center;
}

.contact-main-content h2 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 40px;
    letter-spacing: 2px;
    color: aliceblue;
    margin-top: 30px;
    padding: 20px 0;
}

.contact-container {
   width: 50vw;
   position: relative;
   padding: 20px;
   border-radius: 20px;
    }

.form-group {
    display: grid;
    grid-template-columns: auto;
    color: aliceblue;
    margin-bottom: 15px;
    gap: 5px;
}

.contact-container form input, .contact-container form textarea {
    background-color: aliceblue;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 8px;
}

.send-button {
    position: relative;
    background-color: #011126;
    border-radius: 4em;
    margin-top: 4px;
    font-size: 14px;
    color: white;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    padding: 0.6em 1.6em;
    cursor:pointer;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.send-button:hover {
    transition-duration: 0.1s;
    background-color: #011126;
    border: aliceblue 2px solid;
}

@media (max-width: 720px) {
    .contact-container {
       width: 80vw;
    }
}

@media (max-height: 550px) {
    .contact-main-content {
        min-height: 200px;
    }
}


/* About me section styles */

.aboutme-header {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 40px;
    padding-top: 50px;
    letter-spacing: 2px;
    color: aliceblue;
    text-align: center;
    background-color: #011126;
}

.aboutme {
    background-color: #011126;
    color: aliceblue;
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 30px 50px;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    border: aliceblue 2px solid;
    border-radius: 15px;
    margin: 20px;
}

.section-aboutme p {
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    line-height: 150%;
    width: 100%;
    text-align: center;
}

.section-aboutme img {
    display: flex;
    flex-direction: right;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: rgba(255, 255, 255, 0.6) 4px solid;
    margin-top: 20px;
}

.section-cta {
    background-color: #011126;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    color: aliceblue;
    text-align: center;
}

.cta-button {
    display: inline-block;
    margin-top: 10px    ;
}

.section-cta a {
    background-color: #011126;
    border: rgba(240,248,255,0.6) 2px solid;
    border-radius: 4em;
    font-size: 14px;
    color: white;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    padding: 0.6em 0.6em;
    cursor:pointer;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.section-cta a:hover {
    transition-duration: 0.1s;
    background-color: #011126;
    border: white 2px solid;
    box-shadow: #f1f1f1 0px 0px 2px;    
}