* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: linear-gradient(to right, #ff7896, #9872ff);
  padding: 0.5rem;
  font-family: 'orbitron', sans serif;
  height: 100%;
}
.content {
  margin: 0px auto;
  min-height: calc(100% - 80px);
  padding-bottom: 80px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
}

h1 {
  font-size: 3rem;
  text-align: center;
  padding: 1.3rem;
}

ul {
  display: flex;
  list-style-type: none;
}

a {
  text-decoration: none;
}

.header {
  max-width: 1200px;
  color: #fff;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  background: #ffffff;
  border-radius: 50%;
  object-fit: cover;
}
.logo > img {
  width: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* .nav-items {
  hover: underline
} */

.main__nav ul {
  list-style: none; /* Remove default list styles */
  padding: 0;
  margin: 0;
}

.main__nav li {
  display: inline-block;
  margin-left: 20px; /* Adjust spacing between navigation items */
}

.main__nav a {
  color: #fff; /* Change link color as needed */
  text-decoration: none; /* Remove underline from links */
  font-weight: bold;
  text-transform: uppercase;
}

.main__nav a:hover {
  color: #9872ff;
  text-decoration: underline;
}

.subheding {
  font-size: 1.2rem;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 2rem;
}

/*Gallery Styles */

.gallery > div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gallery > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: masonry;
}

.image img {
  width: 100%;
  cursor: pointer;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
}

#expanded-image {
  display: block;
  margin: 50px auto;
  max-width: 80%;
  max-height: 80%;
}

.close-btn {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
}

/*Image hover text */
/* CSS for displaying image information on hover */
.image-info {
  display: none;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8rem;
}

.image:hover .image-info {
  display: block;
  width: 100%;
}

/* CSS for displaying image information in lightbox */
#lightbox .image-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
  z-index: 1000;
}

.images__info-paragraph span {
  margin-top: 1.8rem;
}
/*About page Styles */
.about {
  max-width: 900px;
  margin: 0 auto;
}

.about__title {
  text-align: center;
  font-size: 2rem;
  font-family: 'Fira Sans', sans-serif;
  padding-top: 1.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1.6rem;
}

.about__paragraph {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  text-align: left;
  padding-bottom: 0.5rem;
}

.margin-bottom {
  font-family: 'Fira Sans', sans-serif;
  color:#9872ff
  font-weight: 700;
  font-style: bold;
  font-size: 1.6rem;
  text-align: left;
  margin-top: 1rem;
  padding: 1rem 0 0.5rem 0;
}

@media only screen and (max-width: 600px) {
  .about__title {
    font-size: 1.8rem;
  }
  .about__paragraph {
    font-size: 1rem;
  }
}
/*Thanks page Styles */

.thanks {
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
}

.thanks__title {
  text-align: center;
  font-size: 3rem;
  padding-top: 2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1.6rem;
}

.thanks__response {
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 0.5rem;
}

@media only screen and (max-width: 600px) {
  .thanks__title {
    font-size: 1.8rem;
  }
  .thanks__response {
    font-size: 1rem;
  }
}

/*General Info Styles */
.images__sizes{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8rem;
  text-align: left;
  padding: 2rem 0;
 
}
.images__sizes a {
  color:#b30054;
  margin-top: 1rem;
}
.images__sizes a:hover {
  color:#ffffff;
  text-decoration: underline;
}


/*Contact  Styles */

.email__paragraph{
  padding: 1.5rem 0;
  font-family: Arial, Helvetica, sans-serif;
}
/*Footer Styles */

.footer {
  position: fixed;
  width: 100%;
  height: auto;
  padding-top: 20px;
  bottom: 0;
  left: 0;
  background-color: #111010;
  color: #fff;
  text-align: center;
  line-height: 40px; /* Center vertically */
}

/*Contact Form */
.contact-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
}

input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#status {
  margin-top: 15px;
  font-weight: bold;
}
