* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

:root {

  --charcoal: #353333;
  --pink: #f5b7d2;
  --brown: rgb(187, 125, 66);
  --white: #fffdd0;


  --black: #000000;
  --blush: #F8C8DC;
  --rose: #E75480;
}

html,
body {
  font-family: 'allura';
  background: var(--black);
  width: 100%;
  cursor: pointer;
  scroll-behavior:smooth;
  overflow-x:hidden;
  color: var(--white);
}

.footer {
  background: #0b0b0b;
  color: var(--white);
  padding: 20px 10px 10px;
}
.footer-section{
 border-left: 1px solid var(--white);
 padding-left: 20px;
}
.footer-inner > *:not(:first-child) {
  border-left: 0.5px solid rgba(255,255,255,0.2); /* thinner + softer */
  padding-left: 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:  40px;
  align-items: stretch; /* IMPORTANT */
}

  .footer-inner > * {
  padding-top: 10px;
  padding-bottom: 10px;

}

.footer-brand h2 {
  font-family: 'Allura';
  font-size: 30px;
  margin: 0;
}

.footer-brand .pink {
  color: var(--pink);
}

.socials {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.socials a {
  color: var(--pink);
  font-size: 18px;
  text-decoration: none;
}

.footer-section h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-section p {
  color: #c9a87a;
  max-width: 400px;
  line-height: 1.6;
  font-size: 13px;
}

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

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--pink);
  text-decoration: none;
  font-size: 13px;
}

.footer-section a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
  text-align: center;
  background: var(--black);
}

.footer-bottom p {
  color: #c9a87a;
  font-size: 13px;
}

/* =========================================
   MOBILE FOOTER
========================================= */

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

.footer{

PADDING: 0 AUTO;
padding-top: 0

}

.footer-inner{

display:flex;
flex-direction:column;

align-items:center;
text-align:center;

gap:5px;

}

.footer-brand{

width:100%;

}

.footer-brand h2{

font-size:36px;

}

.footer-brand .pink{

font-size:36px;

}

.socials{

justify-content:center;

gap:18px;

margin-top:20px;

}

.socials a{

width:42px;
height:42px;

font-size:18px;

}

.footer-section{

width:100%;

}

.footer-section h4{

font-size:18px;

margin-bottom:15px;

}

.footer-section p{

max-width:320px;

margin:auto;

line-height:1.8;

}

.footer-section ul{

padding:0;

}

.footer-section li{

margin:12px 0;

}

.footer-bottom{

padding:18px;

text-align:center;

font-size:13px;

}

}

/* SMALL PHONES */

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

.footer{

padding:0 auto;

}

.footer-brand h2{

font-size:30px;

}

.footer-brand .pink{

font-size:30px;

}

.socials{

gap:5px;

}

.socials a{

width:38px;
height:38px;

font-size:16px;

}

.footer-section h4{

font-size:16px;

}

.footer-section p,
.footer-section a{

font-size:14px;

}

.footer-bottom{

font-size:12px;

}

}