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

body {
  font-family: 'Geologica', sans-serif;
  background-color: #ffffff;
  overflow: hidden;
}

body.feed-page {
  overflow: auto;
}

/* the splash page code */
.splash-container {
  width: 1440px;
  max-width: 100%;
  min-height: 900px;
  display: flex;
  flex-direction: row;
  padding: 40px 60px;
}

.splash-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 20px;
  padding-top: 0px;
  gap: 80px;
}

.logo {
  width: 400px;
  height: 100px;
  object-fit: contain;
  object-position: left top;
}

.headline {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 70px;
  color: #000000;
}

.subheadline {
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 30px;
  color: #000000;
  line-height: 1.4;
  max-width: 650px;
  text-align: left;
  margin-top: 16px;
}

.splash-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 650px;
  height: auto;
  background-color: #FFF5F2;
  border-radius: 15px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: -100px;
  margin-left: 20px;
}

.welcome-text {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #000000;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-family: 'Geologica', sans-serif;
  font-size: 20px;
  color: #000000;
}

.form-group input {
  font-family: 'Geologica', sans-serif;
  font-size: 20px;
  color: #767676;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 6px;
  padding: 8px 10px;
  outline: none;
  width: 100%;
}

.form-group input:focus {
  border-color: #3A7D82;
}

.signup-link {
  font-size: 18px;
  margin-top: 4px;
  color: #6B6B6B;
}

.signup-link a {
  color: #6B6B6B;
  text-decoration: underline;
}

.login-btn {
  background-color: #FC5552;
  color: #ffffff;
  font-family: 'Geologica', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  width: 200px;
  margin-top: 6px;
  transition: background-color 0.2s ease;
  margin-left: 150px;
}

.login-btn:hover {
  background-color: #e03e3b;
}

/* nav code */
.navbar {
  width: 100%;
  height: 100px;
  background-color: #FFF5F2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 45px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  margin-right: 50px;
}

.nav-item:hover {
  text-decoration: none;
}

/* strips underlines from every <a> tag */
a {
  text-decoration: none;
}

.nav-logo {
  width: 225px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  margin-left: 50px;
 
}

.nav-search {
  flex: 1;
  max-width: 525px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #ffffff;
  border: 2px solid #FFD1C3;
  border-radius: 25px;
  padding: 0 14px;
  height: 44px;
  margin-left: 40px;
  margin-right: 10px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #000000;
  background: transparent;
}

.search-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-item:hover {
  background-color: #FFD1C3; 
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;

}

.nav-item span {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: #000000;
  margin-bottom: 10px;
}

.nav-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-top: 10px;
}

.search-mag {
  font-size: 24px;
  margin-right: 8px;
  flex-shrink: 0;
  color: #6B6B6B;
}

/* feed page */
.feed-content {
  margin-top: 20px;
  margin-right: 50px;
  margin-left: 50px;
}

.trending-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  margin-bottom: 20px;
}

.tag-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 5px;
}

.tag-btn {
  background-color: #3A7D82;
  color: #ffffff;
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  width: 270px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 20px 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.tag-btn:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.for-you-title {
font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  margin-bottom: 20px;
  margin-top: 20px;

}

/* masonry-style image grid from w3schools https://www.w3schools.com/howto/howto_js_image_grid.asp */
.row {
  display: flex;
}

.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 8px;
}

.column img {
  width: 100%;
  height: auto;
  margin-top: 12px;
  display: block;
  border-radius: 15px;
}

.img-card {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.img-card img {
  width: 100%;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(223, 246, 248, 0.9),
    rgba(223, 246, 248, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-radius: 15px;
  margin-top: 12px;
}

.img-card:hover .overlay {
  opacity: 1;
}

.overlay-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.title {
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
  font-size: 24px;
  color: #000;
  align-self: flex-end;
  margin-left: 5px;
}

.artist {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-end;
  margin-right: 40px;
  margin-top: -15px;
}

/* !important overrides here because .column img
   set broad styles that wont resize the avatars for some reaosn */
.artist-icon {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  min-height: 25px !important;
  max-width: 25px !important;
  max-height: 25px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  flex: 0 0 25px !important;
}

.artist span {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #000;
  line-height: 1.2;
}

.save-btn {
  align-self: flex-end;
  background-color: #FC5552;
  color: #fff;
  font-family: 'Geologica', sans-serif;
  font-size: 22px;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

/* create page */
body.create-page {
  overflow: auto;
}

.create-container {
  margin: 20px 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.create-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
}

.create-subtitle {
  font-family: 'Geologica', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin-top: 15px;
}

.upload-box {
  width: 100%;
  height: 467px;
  border: 2px dashed #aaaaaa;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.upload-icon {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.upload-text {
  font-family: 'Geologica', sans-serif;
  font-size: 32px;
  color: #B5B5B5;
  font-weight: 400;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #000000;
}

.field-input {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: #767676;
  border: 2px solid #3A7D82;
  border-radius: 15px;
  outline: none;
  padding: 20px 20px;
  background: #ffffff;
  width: 100%;
}

.field-input:focus {
  border-color: #3A7D82;
}

.field-textarea {
  height: 150px;
  resize: none;
}

.create-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.btn-cancel {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #AF2523;
  background: white;
  border: 2px solid #FFD1C3;
  border-radius: 8px;
  padding: 10px 30px;
  cursor: pointer;
}

.btn-upload {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #ffffff;
  background-color: #FC5552;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  cursor: pointer;
}

.btn-cancel:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.btn-upload:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* explore page note to self: dont forget to resize the images  */
.explore-page {
  overflow: auto;
}

.explore-content {
  margin-top: 20px;
  padding: 0 50px;
}

.explore-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #000000;
  margin-bottom: 30px;
}

.explore-subtitle {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: #000000;
  margin-bottom: 10px;
}

.keep-looking {
  margin-top: 40px;
  margin-bottom: 20px;
}

.explore-tag-buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.explore-tag-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.explore-tag-btn {
  background-color: #3A7D82;
  color: #ffffff;
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  width: 275px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 20px 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.explore-tag-btn:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.category-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 10px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.category-card {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.category-card:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* this is the gradient hover */
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(223, 246, 248, 1),
   rgba(100, 100, 100, 0.8),
    rgba(223, 246, 248, 0)
  );
  display: flex;
  align-items: flex-start;
  justify-content: left;
  border-radius: 15px;
}

.category-text {
  font-family: 'Geologica', sans-serif;
  font-size: 32px;
  color: #000000;
  font-weight: 500;
  margin-left: 20px;
  margin-top: 10px;
}

/* explore image grid with the same layout as feed page grid */
.explore-row {
  display: flex;
  padding: 0;
}

.explore-column {
  flex: 25%;
  max-width: 25%;
  padding: 0 8px;
}

.explore-column img {
  width: 100%;
  height: auto;
  margin-top: 12px;
  display: block;
  border-radius: 15px;
}

.explore-img-card {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.explore-img-card img {
  width: 100%;
  display: block;
}

.explore-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(223, 246, 248, 0.9),
    rgba(223, 246, 248, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-radius: 15px;
  margin-top: 12px;
}

.explore-img-card:hover .explore-overlay {
  opacity: 1;
}

.explore-overlay-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.explore-img-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
  font-size: 24px;
  color: #000;
  align-self: flex-end;
  margin-left: 5px;
}

.explore-artist {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-end;
  margin-right: 40px;
  margin-top: -10px;
}

.explore-artist-icon {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  min-height: 25px !important;
  max-width: 25px !important;
  max-height: 25px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  flex: 0 0 25px !important;
}

.explore-artist span {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #000;
  line-height: 1.2;
}

.explore-save-btn {
  align-self: flex-end;
  background-color: #FC5552;
  color: #fff;
  font-family: 'Geologica', sans-serif;
  font-size: 22px;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

/* profile page */
body.profile-page {
  overflow: auto;
}

.profile-container {
  margin: 70px 50px;
  display: flex;
  flex-direction: column;
}

.profile-header {
  width: 100%;
  background-color: #FFF5F2;
  height: 400px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 30px;
  gap: 24px;
}

.profile-pic {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.profile-name {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  line-height: 1;
}

.profile-handle {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #000000;
}

.profile-bio {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #000000;
}

.profile-location {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #000000;
}

.profile-stats {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.profile-stats span {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #000000;
}

.section-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 10px;
}

.post-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.post-thumb {
  width: 343px;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
}

/* alerts page */
body.alerts-page {
  overflow: auto;
}

.alerts-container {
  margin: 40px 50px;
  display: flex;
  flex-direction: column;
}

.alerts-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  margin-bottom: 60px;
}

.alert-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 70px;
}

.alert-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.alert-avatar {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.alert-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert-message {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #000000;
}

.alert-time {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #7D7D7D;
}

.alert-thumb {
  width: 125px;
  height: 125px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
}

.alert-divider {
  width: 100%;
  height: 1px;
  background-color: #B5B5B5;
  margin-top: 15px;
}

.view-more {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #000000;
  text-decoration: underline;
  margin-top: 20px;
  align-self: center;
}

.view-more:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
  display: inline-block;
}

/* settings page */
body.settings-page {
  overflow: auto;
}

.settings-container {
  margin: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 60px;
}

.settings-card {
  width: 100%;
  background-color: #FFF5F2;
  border-radius: 12px;
  padding: 20px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.settings-heading {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  margin-bottom: 20px;
}

.settings-photo-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.settings-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: 20px;
}

.change-photo-btn {
  background-color: #FC5552;
  color: #ffffff;
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  font-weight: 600;
  border: none;
  border-radius: 15px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  white-space: nowrap;
  padding: 12px 38px;
  width: auto;
  margin-left: 20px;
}

.settings-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 20px;
}

.btn-save {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #ffffff;
  background-color: #FC5552;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  cursor: pointer;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: auto;
}

.settings-notif-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  margin-bottom: 20px;
}

.notif-text-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notif-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
}

.notif-subtitle {
  font-family: 'Geologica', sans-serif;
  font-size: 20px;
  color: #000000;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 45px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FC5552;
  border-radius: 30px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 35px;
  width: 35px;
  left: 5px;
  bottom: 5px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle input:checked + .toggle-slider:before {
  transform: translateX(45px);
}

.settings-logout-card {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.logout-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logout-subtitle {
  font-family: 'Geologica', sans-serif;
  font-size: 20px;
  color: #000000;
  margin-bottom: 20px;
}

.btn-logout {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #ffffff;
  background-color: #FC5552;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  cursor: pointer;
  margin-top: 50px;
  align-self: flex-start;
  white-space: nowrap;
}

.settings-cancel {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #AF2523;
  background: white;
  border: 2px solid #FFD1C3;
  border-radius: 8px;
  padding: 10px 60px;
  cursor: pointer;
}

.change-photo-btn:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.settings-cancel:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.btn-save:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.btn-logout:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* photo full view page) */
.click-page {
  overflow: auto;
}

.click-content {
  margin: 40px 50px 0 50px;
}

.click-layout {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.click-left {
  position: relative;
  flex-shrink: 0;
}

.click-photo {
  width: 800px;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.click-artist-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.click-artist-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.click-artist-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.click-artist-name {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #000000;
}

.click-save-btn {
  background-color: #FC5552;
  color: #fff;
  font-family: 'Geologica', sans-serif;
  font-size: 28px;
  border: none;
  border-radius: 15px;
  padding: 12px 32px;
  cursor: pointer;
  font-weight: 400;
}

.click-save-btn:hover {
  background-color: #e03e3b;
}

.click-right {
  flex: 1;
  margin-left: 20px;
}

.click-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  margin-bottom: 10px;
}

.click-date {
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #7D7D7D;
  margin-bottom: 10px;
}

.click-description {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 35px;
  font-weight: 200;
}

.click-tags-title {
  font-family: 'Geologica', sans-serif;
  font-size: 32px;
  color: #000000;
  margin-bottom: 10px;
}

.click-tags {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.click-tag-row {
  display: flex;
  gap: 10px;
}

.click-tag-btn {
  background-color: #3A7D82;
  color: #ffffff;
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  font-weight: 500;
  border: none;
  border-radius: 20px;
  padding: 18px 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
  min-width: 275px;
  text-align: center;
  margin-top: 5px;
}

.click-tag-btn:hover {
  transform: scale(1.05);
}

/* comments section */
.comments-container {
  background-color: #FFF5F2;
  padding: 40px 40px;
  border-radius: 15px;
}

.comments-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  margin-bottom: 10px;
  margin-left: 20px;
}

.add-comment-section {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 30px;
}

.comment-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 20px;
}

.comment-input {
  flex: 1;
  font-family: 'Geologica', sans-serif;
  font-size: 20px;
  color: #000000;
  border: 2px solid #FFD1C3;
  border-bottom: none;
  border-radius: 10px;
  background: #ffffff;
  padding: 15px;
  outline: none;
  min-height: 85px;
}

.comment-input::placeholder {
  color: #B5B5B5;
}

.post-comment-btn {
  background-color: #FC5552;
  color: #fff;
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  border: none;
  border-radius: 10px;
  padding: 20px 40px;
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 30px;
  margin-left: 110px;
}

.post-comment-btn:hover {
  background-color: #e03e3b;
}

.comment-item {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.comment-content {
  flex: 1;
  background-color: #ffffff;
  border: 2px solid #FFD1C3;
  border-radius: 10px;
  padding: 30px;
  min-height: 120px;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-username {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #000000;
}

.comment-date {
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #7D7D7D;
}

.comment-text {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  color: #767676;
  line-height: 1.4;
  font-weight: 200;
}

.back-btn {
  background-color: #FC5552;
  color: #ffffff;
  font-size: 28px;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 4px;
  margin: 20px 0 0 30px;
  transition: transform 0.2s ease;
}

.back-btn:hover {
  transform: scale(1.1);
}

/* responsive splash page and keeps desktop stuff */
@media (max-width: 768px) {
  body {
    overflow: auto;
  }

  .splash-container {
    flex-direction: column;
    padding: 30px 24px;
    min-height: auto;
    width: 100%;
  }

  .splash-left {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    gap: 16px;
  }

  .logo {
    width: 200px;
    height: auto;
  }

  .headline {
    font-size: 36px;
    margin-top: 0;
    margin-left: 0;
  }

  .subheadline {
    font-size: 18px;
    margin-top: 10px;
    margin-left: 0;
    max-width: 100%;
  }

  .splash-right {
    width: 100%;
    margin-top: 30px;
    justify-content: flex-start;
  }

  .login-box {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 30px 24px;
  }

  .welcome-text {
    font-size: 36px;
  }

  .login-btn {
    width: 100%;
    margin-left: 0;
  }

  .navbar {
    height: auto;
    flex-wrap: wrap;
    padding: 10px 16px;
  }

  .nav-search {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .splash-left {
    gap: 80px;
    margin-left: 20px;
    margin-top: 0;
  }

  .logo {
    width: 400px;
    height: 100px;
  }

  .headline {
    font-size: 70px;
    margin-top: 0;
    margin-left: 0;
  }

  .subheadline {
    font-size: 30px;
    margin-left: 0;
  }

  .login-box {
    width: 650px;
    margin-right: -100px;
    margin-left: 20px;
  }

  .login-btn {
    width: 200px;
    margin-left: 150px;
  }
}

/* menu button for responsive nav */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

/* each span is one bar of the hamburger icon */
.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #FC5552;
  border-radius: 3px;
}

/* menu starts off screen at right and slides in */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background-color: #FFF5F2;
  z-index: 1000;
  flex-direction: column;
  padding: 30px 20px;
  gap: 10px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  color: #aaaaaa;
  cursor: pointer;
  margin-bottom: 20px;
  line-height: 1;
}

.mobile-menu-close:hover {
  color: #777777;
}

.mobile-nav-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.mobile-nav-item:hover {
  background-color: #FFD1C3;
}

.mobile-nav-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.mobile-nav-item span {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: #000000;
}

.alerts-search-mobile {
  display: none;
}

.explore-search-mobile {
  display: none;
}

/* responsive stuff a little meshed together it got confusing here */
@media (max-width: 768px) {
  .nav-item {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .nav-search {
    margin-left: auto;
    max-width: 100%;
    flex: 1;
  }

  .nav-logo {
    margin-left: 0;
  }

    .nav-search {
    display: none;
  }

  @media (max-width: 768px) {

  .tag-buttons {
    margin: 0;
  }

  .tag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .tag-btn {
    width: 100%;
    font-size: 18px;
    padding: 14px 10px;
  }

  .row {
    flex-wrap: wrap;
  }

  .column {
    flex: 50%;
    max-width: 50%;
  }

  .feed-content {
    padding: 0 12px;
    margin-right: 0;
    margin-left: 0;
  }

  .row {
    padding: 0;
  }

}
}

@media (max-width: 768px) {

  .explore-content {
    padding: 0 12px;
    margin-top: 0;
  }

  .explore-search-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #FFD1C3;
    border-radius: 25px;
    padding: 0 14px;
    height: 44px;
    margin: 40px 12px 20px 12px;
  }

  .explore-tag-buttons {
    margin: 0;
  }

  .explore-tag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .explore-tag-btn {
    width: 100%;
    font-size: 18px;
    padding: 14px 10px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-row {
    flex-wrap: wrap;
  }

  .explore-column {
    flex: 50%;
    max-width: 50%;
  }

  .explore-title {
    font-size: 48px;
  }

  .explore-subtitle {
    font-size: 36px;
  }

  .category-title {
    font-size: 36px;
  }

  .overlay {
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
  }

  .save-btn {
    font-size: 14px;
    padding: 8px 14px;
    align-self: flex-end;
  }

  .title {
    font-size: 14px;
  }

  .artist span {
    font-size: 13px;
  }

  .artist-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    flex: 0 0 18px !important;
  }

  .explore-overlay {
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
  }

  .explore-save-btn {
    font-size: 14px;
    padding: 8px 14px;
    align-self: flex-end;
  }

  .explore-img-title {
    font-size: 14px;
    align-self: flex-start;
    margin-left: 0;
  }

  .explore-artist span {
    font-size: 13px;
  }

  .explore-artist-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    flex: 0 0 18px !important;
  }

    .artist {
    margin-right: 0;
    align-self: flex-start;
  }

  .explore-artist {
    margin-right: 0;
    align-self: flex-start;
  }

  @media (max-width: 768px) {

  .create-container {
    margin: 20px 15px;
  }

  .upload-box {
    height: 300px;
  }

  .upload-icon {
    width: 80px;
    height: 80px;
  }

  .upload-text {
    font-size: 20px;
    text-align: center;
  }

  .create-buttons {
    justify-content: center;
  }

  .btn-cancel,
  .btn-upload {
    flex: 1;
    text-align: center;
  }

  .alerts-search-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #FFD1C3;
    border-radius: 25px;
    padding: 0 14px;
    height: 44px;
    margin: 40px 12px 0 12px;
  }

  .alerts-container {
    margin: 20px 12px;
  }

  .alerts-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .alert-item {
    padding: 10px 0;
    justify-content: center;
    gap: 10px;
  }

  .alert-avatar {
    width: 55px;
    height: 55px;
  }

  .alert-message {
    font-size: 14px;
  }

  .alert-time {
    font-size: 13px;
  }

  .alert-thumb {
    width: 55px;
    height: 55px;
  }

 .alert-item {
    padding: 10px 0;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }

  .alert-left {
    flex: 1;
    min-width: 0;
  }

  .alert-text {
    min-width: 0;
  }

  .alert-message {
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
  }

 .profile-container {
    margin: 20px 12px;
  }

  .profile-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: auto;
    padding: 30px 20px;
    gap: 16px;
  }

  .profile-pic {
    width: 150px;
    height: 150px;
  }

  .profile-name {
    font-size: 32px;
  }

  .profile-handle,
  .profile-bio,
  .profile-location {
    font-size: 16px;
  }

  .profile-stats {
    justify-content: flex-start;
    gap: 20px;
  }

  .profile-stats span {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .post-thumb {
    width: 100%;
    height: 250px;
  }

  .settings-container {
    margin: 20px 12px;
    gap: 20px;
  }

  .settings-card {
    padding: 20px;
  }

  .settings-heading {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .settings-photo-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .settings-avatar {
    width: 120px;
    height: 120px;
    margin-left: 0;
  }

  .change-photo-btn {
    margin-left: 0;
  }

  .settings-btns {
    flex-direction: row;
    gap: 10px;
  }

  .settings-cancel,
  .btn-save {
    flex: 1;
    text-align: center;
    padding: 10px;
  }

  .settings-notif-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-right: 0;
  }

  .settings-logout-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-logout {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .field-label {
    font-size: 18px;
  }

  .field-input {
    font-size: 16px;
    padding: 12px;
  }

    .settings-avatar {
    width: 180px;
    height: 180px; 
  }

  .change-photo-btn {
    font-size: 16px;
    padding: 8px 20px;
  }

  @media (max-width: 768px) {

  .click-content {
    margin: 20px 12px 0 12px;
  }

  .click-layout {
    flex-direction: column;
    gap: 16px;
  }

  .click-left {
    width: 100%;
  }

  .click-photo {
    width: 100%;
    height: 300px;
  }

  .click-right {
    margin-left: 0;
    width: 100%;
  }

  .click-title {
    font-size: 32px;
  }

  .click-date {
    font-size: 16px;
  }

  .click-description {
    font-size: 16px;
  }

  .click-tags-title {
    font-size: 22px;
  }

  .click-tag-btn {
    font-size: 16px;
    padding: 10px 16px;
    min-width: 0;
  }

  .comments-container {
    padding: 20px 12px;
  }

  .comments-title {
    font-size: 32px;
  }

  .comment-avatar {
    width: 50px;
    height: 50px;
  }

  .comment-username {
    font-size: 16px;
  }

  .comment-date {
    font-size: 14px;
  }

  .comment-text {
    font-size: 16px;
  }

  .post-comment-btn {
    margin-left: 0;
    width: 100%;
  }

  .click-artist-name {
    font-size: 16px;
  }

  .click-save-btn {
    font-size: 18px;
    padding: 10px 20px;
  }

  @media (max-width: 768px) {

  .click-tags {
    width: 100%;
  }

  .click-tag-row {
    width: 100%;
  }

  .click-tag-btn {
    flex: 1;
    text-align: center;
    min-width: 0;
    flex: none;
    width: 235px;
  }

  .click-artist-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .click-save-btn {
    width: auto;
  }

  .post-comment-btn {
    width: auto;
    font-size: 16px;
    padding: 10px 24px;
    margin-left: 80px;
  }

    .title {
    align-self: flex-start;
    margin-left: 0;
  }

}
}
}
}