/* Consolidated CSS file for Demi Huizenga Website */

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Bertioga sans";
  color: #2b2b2b;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Font Definitions */
@font-face {
  font-family: "Bertioga sans header";
  src: url(/assets/fonts/Montserrat/static/Montserrat-Black.ttf) format("Truetype");
}

@font-face {
  font-family: "Bertioga sans fat";
  src: url(/assets/fonts/Roboto/Roboto-Bold.ttf) format("Truetype");
}

@font-face {
  font-family: "Bertioga sans";
  src: url(/assets/fonts/Roboto/Roboto-Light.ttf) format("Truetype");
}

@font-face {
  font-family: "Wildly sans";
  src: url(/assets/fonts/Wildy-Sans.ttf) format("Truetype");
}

/* Typography */
html {
  background-color: white;
  color: #2b2b2b;
  scroll-behavior: smooth;
  font-family: "Bertioga sans";
  font-size: 62.5%; /* 10px base for easier rem calculation */
}

.header {
  font-family: "Bertioga sans header";
  text-transform: uppercase;
}

.bold {
  font-family: "Bertioga sans fat";
}

a {
  color: #b8b6ec;
  font-weight: 700;
  font-family: "Bertioga sans fat";
  text-decoration: none;
}

/* Brand Colors */
:root {
  --primary-color: #b8b6ec;
  --text-color: #2b2b2b;
  --light-bg: #f9f9f9;
  --white: #ffffff;
}

/* Buttons */
.btn, 
.cta-button {
  background-color: #b8b6ec;
  border: none;
  color: white;
  font-family: "Bertioga sans fat";
  font-size: 1.2rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
}

.btn:hover, 
.cta-button:hover {
  transform: scale(1.03);
  background-color: #a5a3d9;
}

/* Sections & Components */
.hero {
  background-color: #f9f9f9;
  padding: 4rem 0;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section {
  padding: 4rem 0;
}

.section-header {
  font-family: "Bertioga sans header";
  font-size: 2.4rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.bg-light {
  background-color: #f9f9f9;
}

/* Feature Boxes */
.feature-box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #b8b6ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial {
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.video-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Social Proof Elements */
.social__community__screenshots {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
  margin-inline: auto;
  padding-bottom: 1rem;
  position: relative;
}

.social__community__screenshots .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b8b6ec;
  aspect-ratio: 9/15;
  overflow: hidden;
  border-radius: 12px;
}

.social__community__screenshots .img-container img {
  height: auto;
  width: 100%;
  padding-top: 7%;
}

/* Page Banner */
.page-banner {
  background-color: #b8b6ec;
  padding: 3rem 0;
  color: white;
}

.page-title {
  font-family: "Bertioga sans header";
  font-size: 3rem;
  text-transform: uppercase;
}

/* Contact Elements */
.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #b8b6ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2rem;
}

.contact-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  text-align: center;
  margin-bottom: 1rem;
  padding-top: 2rem;
}

footer .legal {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

footer .legal__link a {
  color: #b8b6ec;
  font-family: "Bertioga sans fat";
  text-decoration: none;
}

footer .cc {
  margin-bottom: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-header {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 500px) {
  body {
    font-size: 90%;
  }
  
  .header {
    font-size: 1.8rem !important;
  }
}