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

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.content {
	max-width: 1400px;
	margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5em 1em 0em 1em;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 4em;
  letter-spacing: 20px;
  line-height: 4rem;
}

.hero-content p {
  font-size: 1.2em;
  margin-top: 0.5em;
}

h2 {
  font-weight: 400;
  font-size: 2em;
  letter-spacing: 10px;	
}

h3 {
	margin: 1rem;
	font-size: 39px;
	/*letter-spacing: 5px;*/
	font-weight: 700;
}

/* Waves */
.yellow-to-white,
.white-to-yellow,
.yellow-to-orange {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.yellow-to-white svg,
.white-to-yellow svg,
.yellow-to-orange svg {
  display: block;
  margin-bottom: -5px; /* eliminates visible gap */
}

/* Background colors */
.white-bg {
  background-color: #ffffff;
}

.yellow-bg {
  background-color: #feca2f;
}

.orange-bg {
  background-color: #ff7043;
}

.black-bg {
  background-color: #000000;
}

/* Links Section */
.links {
  text-align: center;
  padding: 0em 1em 2em;
  margin-top: -7vw;
  position: relative;
}

.links-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
}

.cta-button {
  display: inline-block;
  padding: 1em 2em;
  border: 2px solid black;
  border-radius: 10px;
  font-weight: bold;
  background: white;
  color: black;
  transition: 0.3s;
}

.cta-button:hover {
  background: black;
  color: white;
}

/* bio */

.bio {
	position: relative;
	margin: -80px 0px;
	z-index: 99999;
}

.bio p {
	font-size: 24px;
	margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
  padding: 4em 1em;
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1400px;
  margin: auto;
}

.product {
  background: white;
  border: 2px solid black;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1rem;
}

.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product h3 {
  margin: 0.5em 0;
  font-size: 1.4em;
}

.product p {
  padding: 0 1em;
  font-size: 1em;
}

.model-link, .purchase-link {
  display: inline-block;
  margin: 0.5em;
  font-size: 0.9em;
  text-decoration: underline;
  font-weight: bold;
}

/* Instagram Section */
.instagram {
  text-align: center;
  padding: 1em 0em 0em;
}

.instagram-content h2 {
  font-size: 2em;
  margin-bottom: 1em;
}

.instagram-content a {
  font-weight: bold;
  font-size: 1.2em;
}

/* Footer */
footer {
  padding: 2em 1em 4em;
  color: white;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
  align-items: start;
}

.footer-logo {
  width: 180px;
  margin-top: 20px;
}

footer nav ul {
  list-style: none;
  padding: 0;
}

footer nav a {
  display: block;
  margin-bottom: 0.5em;
  color: white;
}

.newsletter input {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 0.5em;
  border-radius: 8px;
  border: none;
}

.newsletter button {
  width: 100%;
  border: 2px solid white;
  background: black;
  color: white;
  padding: 0.75em;
  font-weight: bold;
  transition: background 0.3s;
}

.newsletter button:hover {
  background: white;
  color: black;
}

.social-icons a img {
  width: 30px;
  margin-right: 1em;
}

footer p {
  text-align: center;
  margin-top: 2em;
  font-size: 1em;
  color: black;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .links-content {
	flex-direction: column;
	align-items: center;
  }

  .footer-content {
	grid-template-columns: 1fr;
  }
  
  h3 {font-size: 20px;}
  
.links {
	margin-top: -5vw;
  }  
  
  .bio {
	  margin: -40px 0px;
  }
  
}

/* Waves */
.yellow-to-white,
.white-to-yellow,
.yellow-to-orange {
  position: relative;
  width: 100%;
  overflow: hidden;
  /*max-height: 200px;*/
  line-height: 0;
  margin: 0; /* remove any unwanted margins */
  padding: 0;
}

.yellow-to-white svg,
.white-to-yellow svg,
.yellow-to-orange svg {
  display: block;
}

/* Remove extra margins from sections */
section {
  margin: 0;
  padding: 0em 1em;
  position: relative;
}
