y

/* Fonts */
@font-face {
  font-family: "RopaMix";
  src: url("../fonts/Ropa Mix Pro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Synthemesc";
  src: url("../fonts/Synthemesc W00 Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "RopaMix";
  src: url("../fonts/Ropa\ Mix\ Pro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* Colors */
:root {
  --black: #000000;
  --teal: #92dce5;
  --pink: #eee5e9;
  --gray: #7c7c7c;
  --coral: #d64933;
  --white: #ffffff;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "RopaMix", Arial, sans-serif;
  background-color: var(--teal);
  color: var(--black);
  line-height: 1.4;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* Navigation */
header {
  position: relative;
  padding: 3px;
  padding-bottom: 20px;
  /* Space for melting ice */
  overflow: visible;
  z-index: 10;
  background-color: var(--teal);
}

/* Melting ice using tiled background */
header::after {
  content: "";
  position: absolute;
  bottom: -441px;
  left: 0;
  right: 0;
  width: 100%;
  height: 400%;
  background: url("../assets/melting.svg") repeat-x;
  background-size: auto 100%;
  background-position: bottom left;
  z-index: 100;
  pointer-events: none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 60;
}

.logo img {
  height: 100px;
  width: auto;
  margin-left: 5px;
  margin-right: 5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--gray);
  font-family: "Synthemesc", Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--black);
}

/* Melting ice now handled by header::after pseudo-element above */

/* Main Content */
main {
  position: relative;
  z-index: 1;
  background-color: var(--pink);
  padding: 60px 20px 40px 20px;
  margin-top: 0;
}

/* Do Better Section */
.do-better {
  max-width: 1200px;
  margin: 0 auto;
}

.do-better-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 600px;
}

.message-section h1 {
  font-family: "RopaMix", Arial, sans-serif;
  font-size: 48px;
  color: var(--coral);
  margin-bottom: 20px;
  line-height: 1.2;
}

.message-section .emphasis {
  font-weight: bold;
}

.message-section h2 {
  font-family: "RopaMix", Arial, sans-serif;
  font-size: 32px;
  color: var(--coral);
  margin-bottom: 20px;
}

.message-section em {
  font-style: italic;
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.bear-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bear-illustration img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

/* Product Details - now inside grid */
.product-details {
  text-align: left;
}

.product-details h3 {
  font-family: "Synthemesc", Arial, sans-serif;
  font-size: 36px;
  color: var(--coral);
  margin-bottom: 30px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--gray);
}

.features li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Buy Page Styles */
.buy-do-better {
  padding: 2rem;
}

.buy-do-better h1 {
  font-family: "Synthemesc", Arial, sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.availability {
  font-size: 2.5rem;
  font-weight: 900;
  color: #666;
  margin-bottom: 2rem;
}

.location-info {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.map-placeholder {
  flex: 1;
  max-width: 500px;
}

.map-placeholder iframe {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-details {
  flex: 1;
  padding-left: 2rem;
}

.address {
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 0.5rem;
}

.form {
  font-family: "RopaMix", Arial, sans-serif;
  margin-top: 15px;
  color: #666;

}

strong {
  color: #e74c3c;
}

.dates {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

/* Product Page Styles */
.product-do-better {
  max-width: 1200px;
  margin: 0 auto;
}

.product-do-better h1 {
  font-family: "Synthemesc", Arial, sans-serif;
  font-size: 48px;
  color: var(--black);
  text-align: left;
  margin-bottom: 40px;
}

.product-do-better-title {
  width: fit-content;
  margin: 0 auto;
}

.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.bear-image {
  display: flex;
  justify-content: center;
}

.bear-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.intro-text {
  font-family: "RopaMix", Arial, sans-serif;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.5;
  font-style: italic;
  text-align: left;
  align-self: start;
  padding-top: 0;
}

.how-its-made {
  max-width: 1200px;
  margin: 0 auto;
}

.how-its-made h2 {
  font-family: "RopaMix", Arial, sans-serif;
  font-size: 32px;
  color: var(--coral);
  margin-bottom: 40px;
  text-align: left;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.process-row.reverse {
  direction: ltr;
}

.process-text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-text-section p {
  font-family: "RopaMix", Arial, sans-serif;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.process-image-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.process-image-section img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

/* Template Page Styles */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.content-row.reverse {
  direction: ltr;
}

.content-text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-text-section h1 {
  font-family: "Synthemesc", Arial, sans-serif;
  font-size: 48px;
  color: var(--black);
  margin: 0;
}

.content-text-section h2 {
  font-family: "RopaMix", Arial, sans-serif;
  font-size: 32px;
  color: var(--coral);
  margin: 0;
}

.content-text-section p {
  font-family: "RopaMix", Arial, sans-serif;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.content-image-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.content-image-section img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.upcycle {
  color:#92dce5;
  font-size: xx-large;
  font-weight: bolder;
  padding-bottom: 40px;
}

.progimg {
  max-width: 1000px;
  display: block;
  margin: auto;
}

/* Footer */
footer {
  background-color: var(--coral);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.designer-credit p {
  color: var(--white);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a img {
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}

.social-links a:hover img {
  opacity: 0.8;
}

/* Responsive CSS */
@media only screen and (max-width: 768px) {

  /* Navigation */
  nav {
    flex-direction: row;
    gap: 20px;
  }

  .logo {
    justify-content: left;
  }

  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
    justify-content:right;
  }

  .nav-menu li a {
    font-size: 1.5rem;
  }

  /* Melting Ice Mobile - adjust pseudo-element */
  header::after {
    bottom: -350px;
    height: 316%;
  }

  /* Main Content Mobile */
  main {
    padding: 40px 20px 40px 20px;
  }

  /* Do Better Section Mobile */
  .do-better-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
    text-align: center;
    min-height: auto;
  }

  .message-section h1 {
    font-size: 32px;
  }

  .message-section h2 {
    font-size: 24px;
  }

  .product-details {
    text-align: center;
  }

  .product-details h3 {
    font-size: 28px;
  }

  /* Buy Page Mobile */
  .location-info {
    flex-direction: column;
  }

  .location-details {
    padding-left: 0;
    margin-top: 1rem;
  }

  /* Product Page Mobile */
  .product-do-better h1 {
    font-size: 36px;
    text-align: left;
  }

  .product-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .product-do-better-title {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-text {
    text-align: center;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .process-row.reverse {
    direction: ltr;
  }

  .process-image-section {
    order: -1;
    text-align: center;
  }

  .process-image-section img {
    max-width: 250px;
  }

  .process-text-section {
    text-align: left;
  }

  /* Template Page Mobile */
  .content-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .content-row.reverse {
    direction: ltr;
  }

  .content-image-section {
    order: 1;
    text-align: center;
  }

  .content-image-section img {
    max-width: 250px;
  }

  .content-text-section {
    text-align: left;
  }

  .content-text-section h1 {
    font-size: 36px;
  }

  .content-text-section h2 {
    font-size: 24px;
  }

  .progimg {
    max-width: 500px;
  }

  /* Footer Mobile */
  footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media only screen and (max-width: 560px) {

  /* Extra small screens */
  /* Melting Ice Extra Small - adjust pseudo-element */
  header::after {
    bottom: -330px;
    height: 300%;
  }
}

@media only screen and (max-width: 530px) {

  /* Extra small screens */
  /* Melting Ice Extra Small - adjust pseudo-element */
  header::after {
    bottom: -330px;
    height: 300%;
  }
}

@media only screen and (max-width: 480px) {

  /* Extra small screens */
  /* Melting Ice Extra Small - adjust pseudo-element */
  header::after {
    bottom: -275px;
    height: 250%;
  }

  main {
    padding: 20px 15px;
  }

  .message-section h1 {
    font-size: 24px;
  }

  .message-section h2 {
    font-size: 20px;
  }

  .buy-do-better h1 {
    font-size: 36px;
    text-align: left;
  }

  .nav-menu li a {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 408px) {

  /* Extra small screens */
  /* Melting Ice Extra Small - adjust pseudo-element */
  header::after {
    bottom: -275px;
    height: 250%;
  }
    .nav-menu li a {
    font-size: 1.2rem;
  }
}