@charset "utf-8";
/* CSS Document */

html, body {
  overflow-x: hidden;
  width: 100%;
}

a {
  color: #004D40;
}

a:hover {
  color: #000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #004D40;
  padding: 10px 30px;
  font-family: Arial, sans-serif;
  position: relative; 
    overflow: visible;
}

.logo img {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;   
  left: 50%;             
  transform: translateX(-50%); 
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-links li a:hover {
  text-decoration: underline;
}

#mobile-menu {
  display: none;
  flex-direction: column;
  list-style: none;
  padding: 10px 20px;
  margin: 0;
  width: 100%;
  background-color: #004D40;
  position: relative; 
  top: 0;
  left: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#mobile-menu li {
  margin-bottom: 0px;
}

#mobile-menu li:last-child {
  margin-bottom: 0;
}

#mobile-menu a {
  color: white;
  font-size: 9px;
  text-decoration: none;
  font-weight: bold;
}

#hamburger-toggle {
  display: none;
  font-size: 32px;
  color: white !important;
  cursor: pointer;
  z-index: 3000;
  position: absolute; 
  left: 20px;        
  top: 28px;
}

.search-form {
  margin-left: auto;
  margin-right: 20px;
}

.search-form input[type="search"] {
  padding: 6px 10px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
}

.account-icon img {
  height: 50px;
  width: 50px;
  border-radius: 60%;
}

body {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

#hero {
  position: relative;
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 92%;
  height: 400px;
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;     
  padding: 40px 20px;        
  margin: 40px auto 0 auto; 
}

.home-hero {
  background-image: url("traverse-urbex-article-homepage-photo-1.jpg");
}

.article-hero {
  background-image: url("traverse-urbex-article-photo-29.jpg");
}

.about-hero {
  background-image: url("traverse-urbex-article-photo-38.jpg");
}

.hero-overlay {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px 40px;
  max-width: 60%;
}


.hero-overlay h1 {
  margin: 0;
  font-size: 2.0em;
  font-weight: bold;
  color: #004D40;              
  line-height: 1.4;
}


.value-prop {
  font-size: 1.8em;
  line-height: 1.4;
  color: #004D40;
  font-weight: bold;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #f5f5f5;
}

.intro-text {
  flex: 2;
  color: #004D40;
  margin-top: -20px;
}

.intro-text h1 {
  font-family: Arial, sans-serif;
  font-size: 2em;
  color: #004D40;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.intro-text p {
  font-size: 1.5em;
  line-height: 1.6;
  color: #333;
}

.article-intro-text {
  flex: 1;
  color: #004D40;
}

.article-intro-text h4 {
  font-family: Arial, sans-serif;
  font-size: 1em;
  color: #004D40;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.article-intro-text p {
  font-size: 1.5em;
  line-height: 1.6;
  color: #333;
}

.about-box {
  flex: 1;
  max-width: none;
  background-color: #004D40;
  color: white;
  padding: 10px 20px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.about-box h3 {
  color: #FFFB00;
  margin-bottom: 12px;
  font-size: 1.2em;
}

.about-box p {
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #eaeaea;
}

.learn-more-button {
  display: inline-block;
  background-color: #FFFB00;
  color: #000;
  font-weight: bold;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 0.9em;
  margin-bottom: 0px;
}

.learn-more-button:hover {
  background-color: #e6e200;
}

.about-box .social-icons img {
  width: 170px;
  height: auto;
  margin-left: 15px !important;
}

.section-header {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
  padding-bottom: 5px;
  margin: 0px auto 20px auto;
  max-width: 1500px;
	flex-wrap: nowrap; 
}

.submissions-header,
.submissions-header--inline {
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  gap: 15px;
  margin: 60px auto 20px auto;
  max-width: 1570px;
  padding: 0 40px; 
  box-sizing: border-box;
}

.section-header a {
  position: relative;
  top: 5px; 
}

.section-header h2 {
  color: #004D40;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px; 
  margin: 0;
}

.submissions-header a {
  position: relative;
  top: 5px; 
}

.submissions-header h2,
.submissions-header--inline h2  {
  color: #004D40;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px; 
  margin: 0;
}


.submissions-header .explore-all-btn,
.submissions-header--inline .explore-all-btn {
  margin-left: 0;
  position: relative;
  top: 5px;
}

.articles-header {
  display: flex;
  justify-content: center;  
  align-items: center;
  padding-bottom: 5px;
  margin: 60px auto 20px auto;
  max-width: 1366px;
}

.articles-header h2 {
  color: black;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.explore-all-btn,
.explore-all-button {
  display: inline-block;
  background-color: #FFFB00;
  color: #000;
  font-weight: bold;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 0.9em;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.explore-all-btn:hover,
.explore-all-button:hover {
  background-color: #e6e200;
}

.featured-posts {
  max-width: 1500px;
  margin: 20px auto 60px;
  padding: 0 40px;
}

.submissions-section {
  display: flex;
  gap: 20px;
  max-width: 1500px;
  margin: 20px auto 60px auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.featured-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.featured-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0px;
}

.article-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 40px;
  background-color: #f5f5f5;
  max-width: 1500px;
  margin: 0 auto;
}

.article-left {
  flex: 2;
}

.article-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.view-article-link {
  font-weight: bold;
  color: #004D40;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.view-article-link:hover {
  color: #000;
}

.featured-left {
  flex: 2;
  position: relative;
}


.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
}

.feature-article-image {
  position: relative;
}

.feature-article-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
}

.feature-article-image-second {
  position: relative;
}

.feature-article-image-second img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
}

.feature-overlay {
  position: absolute;
  bottom: 10px;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 18px;
  max-width: 70%;
  text-align: left;
}

.feature-overlay h3 {
  color: #004D40;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
}

.article-heading h3 {
  color: #004D40;
  font-size: 1.7em;
  font-weight: bold;
  margin: 30px 0px;
}


.feature-description {
  margin-top: 15px;
  line-height: 1.5;
  font-size: 1.5em;
}

.feature-article-description {
  margin-top: 15px;
  line-height: 1.5;
  font-size: 1.5em;
}

.side-post {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.side-post img {
  width: 140px;
  height: 140px;
  object-fit: cover;
}

.side-post-text h3 {
  font-size: 1em;
  color: #004D40;
  margin: 0 0 6px 0; 
}

.side-post-text p {
  font-size: 0.8em;
  color: #333;
  margin: 20px 0 20px 0;
}

.view-article-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFB00;
  color: #000;
  font-weight: bold;
  padding: 8px 16px;
  font-size: 0.9em;
  text-decoration: none;
  border: none;
  transition: background-color 0.3s ease;
  z-index: 2; 
}

.view-article-button:hover {
  background-color: #e6e200;
}

.view-article-link {
  font-size: 0.8em;
  font-weight: bold;
  color: #004D40;
  text-decoration: underline;
}

.view-article-link:hover {
  color: #000;
}

.comment-section {
  max-width: 700px;
  padding: 0px 40px;
  margin: 30px 0;
}

.comment-section h3 {
  font-size: 1.5em;
  color: #004D40;
  margin-bottom: 40px;
  font-weight: bold;
}

.comment-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #004D40;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  margin-bottom: 20px;
  font-size: 1em;
  border-radius: 4px;
  padding: 12px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #004D40;
  outline: none;
}

.comment-form textarea {
  height: 150px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #004D40;
  outline: none;
}

.submit-comment {
  background-color: #FFFB00;
  color: black;
  font-weight: bold;
  border: none;
  font-size: 0.9em;
  cursor: pointer;
  padding: 8px 16px;
  display: inline-block; 
  text-align: center;
  width: 20%;           
  margin: 0;              
}

.submit-comment:hover {
  background-color: #e6e200;
}


.submissions-section {
  max-width: 1570px;
  margin: 0 auto;
  padding: 0 40px; 
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.submission-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  padding: 20px;
  flex: 1 1 340px;
  max-width: 450px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.submission-box img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  margin-bottom: 10px;
}

.submission-box h3 {
  font-size: 1.5em;
  color: #004D40;
  margin-bottom: 8px;
}

.submission-box p {
  font-size: 0.9em;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #333;
}

.view-button {
  font-weight: bold;
  color: #004D40;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9em;
  cursor: pointer;
  transition: color 0.3s ease;
	
}

.view-button:hover {
  color: #000;
}

.about-content {
  max-width: 1500px;
  margin: 60px auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;  
  gap: 40px;
}

.about-text, 
.about-image {
	flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;           
}

.about-text h2 {
  color: #004D40;
  font-size: 1.7em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.5em;
  line-height: 1.6;
  color: #333;
}

.about-image img {
  width: 100%;
  height: 92%;      
  object-fit: cover;  
  display: block;
  border: 1px solid #ccc;
}

.contact-hero {
  background-image: url("traverse-urbex-article-photo-39.jpg");
}

.contact-container {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 40px;
}

.contact-intro {
  font-size: 1.4em;
  color: black;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}


.contact-row {
  display: flex;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.contact-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 1em;
  min-width: 0;  
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  width: 100% !important;
  height: 150px;
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.contact-submit {
  background-color: #FFFB00;
  color: black;
  font-weight: bold;
  border: none;
  font-size: 0.9em;
  cursor: pointer;
  padding: 8px 16px;     
  display: inline-block; 
  text-align: center;
  width: 20%;           
  margin: 0;             
}

.contact-submit:hover {
  background-color: #e6e200;
}

.contact-submissions {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 40px;
	  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-submissions h2 {
	color: #004D40;
}

.contact-submission-box {
  width: 100%;
	 margin-bottom: 40px;
  max-width: 450px;
  text-align: left;
}

.submission-meta {
  font-size: 0.9em;
  color: #333;
  margin-bottom: 10px;
}

.contact-submission-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 12px;
  border: 1px solid #ccc;
}

.submission-text {
  font-size: 1em;
  color: #333;
  line-height: 1.5;
}

.load-more-btn {
  display: inline-block;
  background: none;
  padding: 0;
  border: none;
  font-weight: bold;
  color: #004D40;
  text-decoration: underline;
  font-size: 0.9em;
  cursor: pointer;
}


.load-more-btn:hover {
  color: #000;
  text-decoration: underline;
}

.subscribe-section {
  background-color: #004D40;
  color: white;
  padding: 80px 0;
  margin-top: 60px;
  margin-bottom: 60px;
  width: 100%;
  display: flex;
  justify-content: center; 
}

.subscribe-content {
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-section h2 {
  font-size: 1.85em;
  margin-bottom: 10px;
  font-weight: bold;
}

.subscribe-section p {
  font-size: 1em;
  margin-bottom: 25px;
  line-height: 1.5;
  color: #eaeaea;
}

.email-signup {
  display: flex;
  flex-direction: column;   
  align-items: flex-start;  
  gap: 10px;              
  margin: 0 auto;          
  width: fit-content;   
}

.email-signup input[type="email"] {
  padding: 10px 14px;
  width: 400px;
  border: none;
  font-size: 0.9em;
}

.email-signup .submit-button {
  background-color: #FFFB00;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9em;
  margin-top: 20px;
}

.email-signup .submit-btn:hover {
  background-color: #e6e200;
}

#mc-embedded-subscribe-form {
  width: 100%;
}

#mce-EMAIL {
  padding: 10px 14px;
  border: none;
  font-size: 0.9em;
  width: 400px;
  max-width: 100%;
  box-sizing: border-box;
}

#mc-embedded-subscribe {
  background-color: #FFFB00;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9em;
  margin-top: 20px;
}

#mc-embedded-subscribe:hover {
  background-color: #e6e200;
}

#mce-error-response, 
#mce-success-response {
  color: white;
  padding-top: 10px;
  font-size: 0.9em;
}

.site-footer {
  background-color: #004D40;
  color: white;
  width: 100%;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 40px 60px;
}

.footer-left {
  flex: 1 1 250px;
  padding-left: 60px 40px;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.footer-left h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.social-icons img {
  width: 150px;
  height: auto;
  margin-right: 10px;
}

.footer-logo,
.social-icons img {
  margin-left: 0;
}

.footer-top {
  padding: 40px 40px;  
}


.footer-right {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 40px;
  flex: 3;
  overflow-x: auto; 
}

.footer-column h4 {
  font-size: 1em;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #FFFB00;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8em;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: #F3F3F3;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  font-size: 0.8em;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  flex-wrap: nowrap;
  gap: 10px; 
}

.footer-bottom p,
.footer-links-bottom {
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-bottom a {
  color: black;
  text-decoration: none;
  margin-left: 15px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-logo,
.social-icons img {
    margin-left: -12px !important;
}

.overlay {
  height: 100%;
  width: 0;                      
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #004D40;
  overflow-x: hidden;
  transition: width 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}

.overlay-content a {
  display: block;
  font-size: 2rem;
  color: white;
  padding: 15px;
  text-decoration: none;
}

.overlay-content a:hover {
  color: #A7FFF1;
}

.overlay-close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

#hamburger-toggle {
  display: none;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

@media (min-width: 1600px) {

  .section-header,
  .featured-posts,
  .featured-content,
  .article-content,
  .submissions-header,
  .submissions-section,
  .about-content,
  .contact-container,
  .contact-submissions,
  .subscribe-content {
      max-width: 1500px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 40px;
      padding-right: 40px;
  }

 .hero-content {
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-top {
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .submissions-section {
    gap: 30px;
  }

  .submission-box {
    flex: 1 1 450px;
    max-width: none;
  }

  .footer-column h4 {
    font-size: 1.1em;
  }

  .footer-column ul li a {
    font-size: 0.9em;
  }
}

@media (max-width: 1200px) {
.submissions-header,
  .submissions-header--inline {
    padding-left: 25px;
    padding-right: 20px;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .account-icon {
    position: absolute;
    right: 20px;
    top: 25px;
  }
	
	#hamburger-toggle {
    display: block;
  }
	
  .nav-links,
  .search-form {
    display: none !important;
  }

  .navbar { height: 90px;
	  position: relative;
	}

  #mobile-menu {
    position: relative;
    top: 0;
    left: 0;
  }

  .nav-links {
    display: none;
  }

  .search-form {
    display: none;
  }

  .navbar {
    position: relative;
    height: 90px; 
    padding: 0 20px;
  }
	
	
  .footer-top {
    flex-direction: column;    
    align-items: flex-start;    
    text-align: left;         
    padding: 40px 60px;
    gap: 25px;                
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;    
    gap: 25px;
    align-items: flex-start;
  }

  .footer-logo {
    margin: 0 0 10px 0;
  }

  .social-icons img {
    margin: 10px 0;
  }

  .footer-column h4 {
    font-size: 0.95em;
  }

  .footer-column ul li a {
    font-size: 0.8em;
  }
	
	 .footer-top {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .footer-left {
    padding-left: 0 !important;
  }

  .footer-right {
    padding-left: 0 !important;
    align-items: flex-start;
  }
	.article-content {
    flex-direction: column;
    gap: 40px;
    padding: 40px 40px;
  }

  .article-left,
  .article-sidebar {
    width: 100%;
  }

  .article-sidebar {
    margin-top: 0;
  }
.navbar {
  overflow-x: hidden;
}
	 .submit-comment {
    width: 20%; 
  }
	.footer-logo,
.social-icons img {
    margin-left: -12px !important;
}

  .nav-links,
  .search-form {
    display: none;
  }
		 .submissions-section {
    max-width: 98%;    
    padding: 0 15px;    
    margin: 0 auto;
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 1080px) {
	 .hero-content {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
   padding: 40px 40px;
  }

  .intro-text p {
    width: 100%;
	 font-size: 1.1em;
  }

  .about-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .about-box .social-icons {
    display: flex;
    justify-content: center;
  }
	
  .article-content {
    padding: 30px 30px;
    gap: 30px;
  }

	 .nav-links {
    display: none;
  }

  #mobile-menu {
    display: none;
    width: 100%;
  }
	
	#hamburger-toggle {
  display: block;
}
	
  .article-intro-text p,
  .feature-description {
    font-size: 1.1em;
  }

 .side-post {
    display: flex;
    align-items: stretch;  
  }

  .side-post img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;        
  }

  .side-post-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
  }

  .side-post-text p {
    margin: 10px 0;
  }
	
	.about-row {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }
 .submissions-header {
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: left;
  }

  .submissions-header h2 {
    margin: 0;
    text-align: left;
  }

    .submissions-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
  }

	

	.submissions-section,
.featured-posts,
.hero-content,
.article-content,
.submissions-header {
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box;
}
	.submissions-header {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
	.about-text p,
.about-text h2,
.about-row p {
  text-align: left !important;
}
	.footer-top {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
	.footer-logo,
  .social-icons img {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
	 .submissions-section {
    flex-direction: column;
    align-items: center;
  }

  .submission-box {
    width: 100%;
    max-width: 600px; 
  }
}

	@media (max-width: 1080px) {
  .featured-content {
    flex-direction: column;
    gap: 40px;
  }

  .featured-left,
  .featured-right {
    width: 100%;
  }


  .section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .explore-all-btn,
	.explore-all-button {
    align-self: flex-start;
  }
  .submissions-section {
    flex-direction: column; 
    align-items: center;
  }

  .submission-box {
    width: 100% !important;  
    max-width: none !important;
    margin-bottom: 30px;      
  }

		
  .submission-box img {
    width: 100%;
    height: auto;
    display: block;
  }

  .footer-top {
    padding: 30px 50px;
  }
	  .section-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    gap: 10px;
    flex-wrap: nowrap !important;
  }

  .section-header h2 {
    white-space: nowrap;
  }

  .explore-all-btn,
		.explore-all-button {
    margin-left: auto;
    white-space: nowrap;
  }
		.about-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .about-image img {
    height: auto; 
  }

  .about-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .about-text p {
    font-size: 1.3em;
  }
		.about-text p,
.about-text h2,
.about-row p {
  text-align: left !important;
}
			.about-box .social-icons img {
  margin-left: 0px !important;
}
		.footer-logo,
.social-icons img {
    margin-left: 0 !important;
}
		.comment-section {
    box-sizing: border-box;
	margin: 40px 0;
    padding-left: 20px;      
    padding-right: 20px;
    text-align: left;
  }

  .comment-form input,
  .comment-form textarea {
    font-size: 1em;
    padding: 12px;
  }

  .submit-comment {
    width: 20%; 
  }
		.footer-logo,
.social-icons img {
    margin-left: -12px !important;
}
		.submissions-header {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
  }

  .submissions-header h2 {
    margin: 0;
    padding: 0;
    text-align: left;
  }
		 .submissions-section {
    max-width: 95%;    
    padding: 0 15px;    
    margin: 0 auto;
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 900px) {
	 
  .nav-links {
    display: none;
  }
  #hamburger-toggle {
    display: block;
  }
		 .submissions-section {
    max-width: 95%;    
    padding: 0 15px;    
    margin: 0 auto;
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 400px;
	width: 88%;  
    background-position: center top;
    padding: 20px;
  }

  .hero-overlay {
    max-width: 80%;
    padding: 20px;
  }

  .value-prop {
    font-size: 1.2em;
  }
	
	.intro-text p {
  font-size: 1.1em;
	}
	
	 .footer-top {
    flex-direction: column;
    align-items: flex-start; 
    text-align: left;       
    padding: 30px 20px;
    gap: 25px;            
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }

  .footer-right {
    display: flex;
    flex-direction: column; 
    gap: 25px;
    align-items: flex-start; 
  }

  .footer-logo {
    margin: 0 0 10px 0; 
  }

  .social-icons img {
    margin: 10px 0;
  }
	  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.7em;
  }
  .article-content {
    padding: 20px;
  }

  .article-heading h3 {
    font-size: 1.4em;
  }

  .feature-description {
    font-size: 1.1em;
  }

  .side-post {
    display: flex;
    align-items: stretch;  
  }

  .side-post img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;      
  }

  .side-post-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .side-post-text p {
    margin: 10px 0;
  }
	
 .subscribe-section {
    padding: 60px 20px;
  }

  .subscribe-content {
    width: 100%;
    max-width: 100%;
  }

  .email-signup {
    width: 100%;
    align-items: flex-start; 
    gap: 12px;
  }

  .email-signup input[type="email"] {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    box-sizing: border-box;
  }

  .email-signup .submit-button {
    width: auto;  
    padding: 10px 16px;
    align-self: flex-start;
  }
	 .subscribe-section,
  .subscribe-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
  }
	.submissions-header {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
	  .section-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    gap: 10px;
    flex-wrap: nowrap !important;
  }

  .section-header h2 {
    white-space: nowrap;
  }

  .explore-all-btn,
	.explore-all-button{
    margin-left: auto;
    white-space: nowrap;
  }
		.contact-intro br {
		display: none;
	}
	.about-text h2 {
    font-size: 1.4em;
  }

  .about-text p {
    font-size: 1.15em;
    line-height: 1.5;
  }

  .about-image img {
    width: 100%;
    height: auto;
  }

  .about-content {
    gap: 40px;
  }
	.footer-top {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
	.footer-logo,
.social-icons img {
    margin-left: 0 !important;
}
	 .comment-section {
    margin: 30px 0;
    padding: 0 20px;
    text-align: left;
  }
	.submit-comment {
    width: 25%;
    padding: 10px 16px;
    text-align: center;
  }
	.footer-logo,
.social-icons img {
    margin-left: -12px !important;
}
	 .submissions-section {
    max-width: 93%;    
    padding: 0 15px;    
    margin: 0 auto;
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 600px) {
	  #hero {
    width: 85%;          
    padding: 30px 15px;
    height: 300px;      
  }
  .contact-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-row input {
    width: 100%;
  }

  .contact-submit {
    width: 30%;            
    padding: 12px 30px;
	text-align: center;
  }
	 .comment-section {
    margin: 20px 0;
    padding: 0 20px;
    text-align: left;
  }

  .comment-form input,
  .comment-form textarea {
    margin-bottom: 15px;
    font-size: 1em;
  }

  .submit-comment {
    width: 25%;
    padding: 12px 16px;
    text-align: center;
  }
	.subscribe-section br {
    display: none;
  }
	.value-prop br{
		display: none;
	}
		.footer-logo,
.social-icons img {
    margin-left: 0 !important;
}
	.footer-logo,
.social-icons img {
    margin-left: -12px !important;
}
	 .submissions-section {
    max-width: 91%;    
    padding: 0 15px;    
    margin: 0 auto;
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 480px) {
	  #hero {
    width: 80%;          
    padding: 30px 15px;
    height: 300px;      
  }
	
	 .hero-overlay .value-prop {
    font-size: 1.4em;  
    line-height: 1.2;
  }
  .intro-text p {
  font-size: 1em;
	}
	
	 .feature-overlay h3 {
    font-size: 1.1em;    
    line-height: 1.3;
  }

  .feature-overlay {
    max-width: 85%;      
    padding: 10px 14px;
  }
	
	.footer-top {
    padding: 20px;
    gap: 20px;
  }

  .footer-column h4 {
    font-size: 0.9em;
  }

  .footer-column ul li a {
    font-size: 0.75em;
  }

  .footer-bottom {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.6em;
  }

  .footer-bottom a {
    margin-left: 10px;
  }
	
  .article-content {
    padding: 15px;
    gap: 20px;
  }

  .article-heading h3 {
    font-size: 1.2em;
  }

  .article-intro-text h4 {
    font-size: 0.9em;
  }

  .feature-description {
    font-size: 1em;
  }

.side-post {
    display: flex;
    align-items: stretch;  
  }

  .side-post img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;        
  }

  .side-post-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .side-post-text p {
    margin: 10px 0;
  }
	
  .subscribe-section h2 {
    font-size: 1.5em;
    text-align: left;
  }

  .subscribe-section p {
    text-align: left;
    padding: 0;
  }

  .email-signup input[type="email"] {
    font-size: 0.9em;
  }

  .email-signup .submit-button {
    font-size: 0.9em;
  }
	 .subscribe-section,
  .subscribe-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
  }
	  .footer-left .footer-logo,
  .footer-left .social-icons img {
    margin-left: -12px !important;  
  }
	.logo img {
  height: 80px;
  width: auto;
}
	  .section-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    gap: 10px;
    flex-wrap: nowrap !important;
  }

  .section-header h2 {
    white-space: nowrap;
  }

  .explore-all-btn,
	.explore-all-button {
    margin-left: auto;
    white-space: nowrap;
  }
	 .about-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    gap: 35px;
  }

  .about-row {
    gap: 15px;
  }

  .about-text h2 {
    font-size: 1.2em;
  }

  .about-text p {
    font-size: 1em;
    line-height: 1.45;
  }

  .about-image img {
    border: 1px solid #ccc;
    width: 100%;
    height: auto;
  }
	.about-text p,
.about-text h2,
.about-row p {
  text-align: left !important;
}
	
	.about-box .social-icons img {
  margin-left: 5px !important;
}
	
	.footer-top {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
	.footer-logo,
.social-icons img {
    margin-left: 0 !important;
}
		 .contact-intro {
    font-size: 1.2em !important;
  }
	.contact-intro br {
		display: none;
	}

	
	.contact-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-row input {
    width: 100%;
  }

  .contact-submit {
    width: 40%;            
    padding: 12px 30px;
	text-align: center;
  }
	
	.comment-section {
    margin: 20px 0;
    padding: 0 20px;
    text-align: left;
  }
	
  .submit-comment {
    width: 40%;  
    padding: 12px 16px;
  }
	.subscribe-section br {
    display: none;
  }
	.value-prop br {
		display: none;
	}
	  .submissions-header {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
  }

  .submissions-header h2 {
    margin: 0;
    padding: 0;
    text-align: left;
  }
	 .submissions-section {
    max-width: 87%;    
    padding: 0 15px;    
    margin: 0 auto;
    flex-direction: column;
    gap: 25px;
  }
}