﻿/* Main Code */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter',Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: #303030;
  color: #2d2d2d;
  text-align: center;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}
.page {
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.container {
  width: min(1100px, 100%);
  margin: 2em auto;
  padding: 0 20px;
}

.section {
  padding: 80px 20px;
}

.text-center { 
	text-align: center; 
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 16px 20px;
}

.logo {
  width: 300px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
/* END REPSONSIVE */
.hero-cinematic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  background: black;
  color: white;
  min-height: 70vh;
  padding:0 5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 420px;
}
.hero-cinematic .hero-image {
  display: flex;
  justify-content: center;
}

.hero-cinematic .hero-image img {
  width: 85%;
  max-width: 6000px;
  height: auto;
  object-fit: cover;
}
.hero-cinematic .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-cinematic {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 .5rem;
 }

  .hero-subtitle {
    margin: 0 auto;
  }
  .hero-cinematic .hero-content {
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
  }
  .hero-cinematic .hero-image img {
    width: 70%;
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .hero-cinematic {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cinematic .hero-content {
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
  }
  .hero-cinematic .hero-image img {
    width: 70%;
    max-width: 420px;
    margin: 0 auto;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  margin-top:1rem;
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
 }
.btn:active {
  transform: translateY(0px) scale(0.98);
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
.grid {
  display: grid;
  gap: 30px;
}
.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.card {
  box-shadow: none;
  transition: all 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card img {
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.03);
}

/* TITLES */
.section-title,
h1, h2 {
  font-family: 'Cormorant Garamond', serif;
}
.hero-content strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75em;
  margin-top: 1rem;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}
/* GRID */
.how-it-works {
  padding: 80px 20px;
  background: #ffffff;
}

.how-it-works .container {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.step img {
  width: 150px;
  margin: 0 auto 15px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.step p {
  font-size: 15px;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.contact {
  background: #f4f1f3;
  padding: 60px 20px;
}
.contact .container {
	max-width: 600px;
	margin: 0 auto;
}
.contact h2 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #1a1a1a;
	padding:5px 0 0 0;
}
.contact p {
	font-size: 16px;
	color: #1a1a1a;
	margin-bottom: 15px;
}
.contact-links p {
	margin-bottom: 10px;
}
.contact a {
	color: #1a1a1a;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s ease;
}
.contact a:hover {
	border-bottom: 1px solid #1a1a1a;
}

.contact-social {
	margin-top: 25px;
}
.contact-social a {
	color: #1a1a1a;
	display: inline-block;
	transition: transform 0.2s ease, color 0.2s ease;
}
.contact-social a:hover {
	transform: translateY(-2px);
	color: #555555;
}
/* Store */
.storeblock {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  background: #fefdff;
}

.store-intro {
  text-align: center;
  margin: 20px auto 10px;
  max-width: 700px;
}

.store-intro h2 {
  margin-bottom: 10px;
}

.mission-line {
  margin: 6px 0;
  font-size: 1rem;
}

.mission-line.subtle {
  opacity: 0.75;
  font-size: 0.95rem;
  margin-bottom:1em;
}
.mission-copy {
  text-align: center;
  margin-bottom: 30px;
}

.mission-copy p {
  margin: 6px 0;
}
.mission-copy .subtle {
  color: #666;
  font-size: 0.95rem;
}
/* CART becomes a “badge module,” not a section */
.cartdiv {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.cart-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cart-label {
  font-size: 0.75rem;
  opacity: 0.8;
}
/* MOBILE */
@media (max-width: 768px) {
  .storeblock {
    grid-template-columns: 1fr;
    text-align: center;
  }

}
.storeblock .storefrontblock {
	width:95%;
	padding:0;
	margin:0 auto;
}
.storeblock .storefrontblock p.storetitle {	
	text-align:center;
	margin:0 1em;
	padding:0;
	color:#1a1a1a;
}
.storeblock .storepolicies {
	width:70%;
	padding:0;
	margin:0 auto;
}
.storeblock .storepolicies p.storeblockinfo {
	width:55%;
	text-align:left;
	margin:0 auto;
	padding:0;
	font-size:1em;
	color:#1a1a1a;
}
@media (max-width: 768px) {
	.storeblock .storeintro {
		width:95%;
		padding:0;
		margin:1em auto;
		}
	.storeblock .storefrontblock {
		width:95%;
		padding:0;
		margin:1em auto;
		}
	.storeblock .storepolicies p.storeblockinfo {
		width:95%;
  }
}
/* TABLET */
@media (min-width:768px) and (max-width:1279px) and (orientation:portrait) {
	.storeblock .storeintro {
		width:95%;
		padding:0;
		margin:1em auto;
		}
	.storeblock .storefrontblock {
		width:95%;
		padding:0;
		margin:1em auto;
		}
	.storeblock .storepolicies p.storeblockinfo {
		width:95%;
  }
}
.storeblock .storepolicies p.storeblockinfo em {
	text-align:center;
	display:block;
	font-size:1.4em;
	margin-top:2em;
	color:#1a1a1a;
}
.storeblock .storepolicies p.storeblockinfo img, .storeblock .storepolicies img.storeheaderlogo {	
	width:100%;
	display:block;
	padding:1em 0;
	margin:1em 0;
}
.storeblock .storepolicies h4 a, .storeblock .storepolicies h4 a:visited, .storeblock .storepolicies h4 a:hover, .storeblock .storepolicies h4 a:active, .storeblock .storepolicies h4 a:focus {
	text-align:center;
	margin:0;
	padding:1em 0;
	font-size:1em;
	display:block;
	color: #1a1a1a !important;
	transition: transform 0.2s ease, color 0.2s ease;
}
.termsblock {
  padding: 1em 0;
  background: #fff;
  text-align: left;
}

.termsblock h1,
.termsblock ul.termslist,
.termsblock .termssection {
  width: min(70%, 1000px);
  margin: 1em auto 0;
}

.termsblock ul.termslist {
  list-style: none;
  padding: 0;
}

.termsblock ul.termslist li {
  padding: .5em 0;
}

.termsblock ul.termslist li a {
  font-weight: 500;
}

.termsblock .termssection p {
  width: 95%;
  margin: 1em auto;
}

/* Mobile only */
@media (max-width: 768px) {
  .termsblock h1,
  .termsblock ul.termslist,
  .termsblock .termssection {
    width: 95%;
  }
}
/* Footer */
.footer {
  padding: 40px 20px;
  background: black;
  color: white;
}
.footer img {
 margin: 0 auto;
}
.footer-links {
	margin-bottom: 15px;
}

.footer-links a {
	margin: 0 10px;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
}

.footer-note {
	font-size: 13px;
	color: #e6e0e3;
	max-width: 600px;
	margin: 0 auto;
}
.footer-logo {
	width: 175px;
	margin-bottom: 20px;
	opacity: 0.8;
}
