/* =============================
   RESET
============================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* =============================
   FONT SYSTEM (GLOBAL)
============================= */
:root{
  --font-display: 'Playfair Display', serif;
  --font-body:'DM Sans', sans-serif;;
  --primary:#9A0059;
  --dark:#0c1323;
}

/* =============================
   BASE
============================= */
body{
  font-family: var(--font-body);
  background:#ffffff;
  color:var(--dark);
  line-height:1.75;
  overflow-x:hidden;
}

h1, h2, h3, h4, h5, h6,
.title,
.vibe,
.works-title,
.stats-title,
.about-title,
.trust-title,
.talk-title,
.footer-heading,
.footer-col h4,
.testimonial-heading h2{
  font-family: var(--font-display);
  letter-spacing:-0.02em;
}

p, li, a, span,
button, input, textarea{
  font-family: var(--font-body);
}

h1, h2{
  line-height:1.1;
}

p{
  font-weight:400;
}



/* =============================
   NAVBAR
============================= */

.navbar{
  position:fixed;
  top:0;left:0;
  width:100%;
  z-index:1000;
  padding:14px 0;
  /* STRONG GLASS */
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.15)
  );

  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  box-shadow:
    0 8px 30px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.45);

  border-bottom:1px solid rgba(255,255,255,0.35);

  transition: all .35s ease;
}

.navbar.scrolled{
  background:#ffffff;
  backdrop-filter:none;
  border-bottom:1px solid #eee;
}

.container{
  width:86%;
  margin:auto;
}

.nav-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:42px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:28px;
}

.nav-links li a{
  text-decoration:none;
  color:#0c1323;
  text-transform: capitalize;
  font-weight:600;
  padding:6px 10px;
  border-radius:10px;
  transition:.25s;
}

.nav-links li a:hover{
  background:linear-gradient(90deg,#9A0059,#B21477,#ad3983);
  color:#fff;
}
.nav-links a:hover,
.nav-links .active{
  background:#9A0059;
  color:#fff;
}
.menu-btn{
  display:none;
  font-size:28px;
  font-weight:900;
  cursor:pointer;
}
/* HAMBURGER — 1200PX AND BELOW ONLY */
@media (max-width: 1200px){

  .menu-btn{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    flex-direction:column;
    background:#fff;
    padding:18px 0;
    text-align:center;
    gap:14px;

    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    transition:.25s;
  }

  .nav-links.show{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }
}
.logo-wrap{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-wrap img{
  height:36px;
  object-fit:contain; 
}
.typewriter{
  font-family: 'Pacifico', cursive;
  font-weight: 800;
  font-size:18px;
  color:#B4006A;
  white-space:nowrap;
}


/* blinking cursor */
.cursor{
  animation: blink 1s infinite;
  font-weight:700;
}

@keyframes blink{
  0%,50%,100%{opacity:1;}
  25%,75%{opacity:0;}
}

/* Hide typing on small screens */
@media(max-width:768px){
  .typewriter{
    display:none;
  }
}


/* =============================
   HERO
============================= */
.hero{
  height:100vh;
  padding-top:95px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  /* BACKGROUND IMAGE */
  background-image: url("assets/images/Purple\ and\ Beige\ Minimalist\ Abstract\ \ My\ Portfolio\ Presentation.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.title{
  font-family: 'Pacifico', cursive;
  font-weight: 800;   /* Pacifico is single-weight */
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.25); /* light overlay */
  z-index:1;
}
.left-img,
.right-img,
.hero-content{
  position: relative;
  z-index: 2;
}
@media (max-width: 900px){
  .hero{
    background-position: top center;
  }
}

.hero-content{
  text-align:center;
  max-width:760px;
}

.title{
  font-size:64px;
  color:#0c1323;
}

.ggg{
  margin-top:30px;
  margin-right: 0px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: -40px;
}


/* make hero text stay above */
.hero-content{
  position: relative;
  z-index: 3;
}

/* ROTATION ANIMATION */
@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

.title{
  font-family: 'Pacifico', cursive;
  font-weight: 400;   /* Pacifico is single-weight */
}

.yellow-box{
  background:linear-gradient(90deg,#9A0059,#B21477,#ad3983);
  color:white;
  font-weight:400;
  font-size: 18px;
  padding:18px 26px;
  margin:22px auto 0;
  border-radius:16px;
  max-width:680px;
  text-align:center;
  line-height:1.5;
}

.left-img,.right-img{
  position:absolute;
  bottom:0;
  height:70%;
  object-fit:contain;
}

.left-img{left: 40px;}
.right-img{right:0;}

.store-btns{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:-40px;
  position:relative;
  z-index:5;
}

.store-btns img{
  height:150px;
  transition:.2s;
  cursor:pointer;
}

.store-btns img:hover{
  transform:scale(1.05);
}

/* medium laptops + large tablets */
@media (max-width: 1200px){

  .title{
    margin-right: 0;
    font-size: 56px;
  }

  .vibe{
    margin-right: 0;
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .left-img{ height: 50%; left: 10px; }
  .right-img{ height: 50%; right: -5px; }
  
  .yellow-box{
    max-width: 70%;
  }
}
 


/* tablets */
@media (max-width: 900px){

  .hero{
    height: auto;
    padding-bottom: 60px;
  }

  .title{
    font-size: 48px;
    margin-right: 0;
  }

  .vibe{
    margin-top: 20px;
    margin-right: 0;
    margin-bottom: 30px;
  }


  .left-img,
  .right-img{
    height: 50%;
    opacity: .9;
  }

  .yellow-box{
    max-width: 90%;
  }
}


/* small tablets + big phones */
@media (max-width: 700px){


  .hero{
    height: auto;
  }

  .left-img,
  .right-img{
    height: 42%;
    opacity: .75;
  }

  .yellow-box{
    font-size: 14px;
  }

  .store-btns img{
    height: 120px;
  }
}


/* phones */
@media (max-width: 480px){

  .title{
    font-size: 26px;
  }

  .vibe{
    margin-top: 10px;
  }

  .left-img,
  .right-img{
    height: 32%;
  }

  .store-btns img{
    height: 95px;
  }
}
/* Hide characters on small screens */
@media (max-width: 700px){
  .left-img,
  .right-img{
    display: none;
  }
}

/* =============================
   HOW FEELY TALK WORKS
============================= */

.works-section{
  padding:120px 0;
  background:#ffffff;
}

.works-wrap{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:center;
}

/* TEXT AREA */
.works-title{
  font-size:56px;
  line-height:1.1;
  color:#0c1323;
  margin-bottom:30px;
}

.works-list{
  list-style:none;
  display:grid;
  gap:20px;
}

.works-list li{
  display:grid;
  grid-template-columns:42px auto;
  gap:14px;
  align-items:flex-start;
}

.works-num{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  background:linear-gradient(135deg,#9A0059,#B21477,#ad3983);
}

.works-list p{
  font-size:18px;
  color:#0c1323;
}

/* =============================
   HOW FEELY TALK WORKS
============================= */

.works-section{
  padding:120px 0;
  background:#ffffff;
}

.works-wrap{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:center;
}

/* TEXT */
.works-title{
  font-size:56px;
  line-height:1.1;
  color:#0c1323;
  margin-bottom:30px;
}

.works-list{
  list-style:none;
  display:grid;
  gap:20px;
}

.works-list li{
  display:grid;
  grid-template-columns:42px auto;
  gap:14px;
  align-items:flex-start;
}

.works-num{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  background:linear-gradient(135deg,#9A0059,#B21477,#ad3983);
}

.works-list p{
  font-size:18px;
  color:#0c1323;
}

/* COLLAGE IMAGE */
.works-visuals.single{
  display:flex;
  justify-content:flex-end;
  padding-right: -120px;
}

.works-visuals.single img{
  width: 700px;
}

/* =============================
   RESPONSIVE TABLET
============================= */

@media(max-width:1024px){

  .works-wrap{
    gap:50px;
  }

  .works-title{
    font-size:46px;
  }

  .works-visuals.single img{
    width:360px;
  }
}

/* =============================
   RESPONSIVE MOBILE
============================= */

@media(max-width:820px){

  .works-wrap{
    grid-template-columns:1fr;
    gap:40px;
    text-align:left;
  }

  .works-visuals.single{
    justify-content:center;
  }

  .works-visuals.single img{
    width:320px;
  }

  .works-title{
    font-size:36px;
  }

  .works-list p{
    font-size:16px;
  }
}

/* EXTRA SMALL DEVICES */
@media(max-width:480px){

  .works-section{
    padding:70px 0;
  }

  .works-title{
    font-size:30px;
  }

  .works-visuals.single img{
    width:280px;
  }
}



/* =============================
   STATS SECTION
============================= */

.stats-section{
  padding:120px 0;
  text-align:center;
  background:#fff;
}

.stats-title{
  font-size:48px;
  color:#0c1323;
  margin-bottom:60px;
}

.stats-grid{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:70px;
}

.stat .count{
  font-size:64px;
  font-weight:900;
}

.stat:nth-child(1) .count{ color:#7A2CFF; }
.stat:nth-child(2) .count{ color:#2E8BFF; }
.stat:nth-child(3) .count{ color:#FF2E92; }

.stat p{
  margin-top:10px;
  font-size:18px;
}

/* =============================
   RESPONSIVE
============================= */

@media(max-width:1024px){

  .title{font-size:50px;}
  .yellow-box{font-size:15px;}
  .store-btns img{height:120px;}

  .works-title{font-size:50px;}
  .works-visuals{height:420px;}

  .stats-title{font-size:40px;}
}

@media(max-width:820px){

  .menu-btn{display:block;}

  .nav-links{
    position:absolute;
    top:100%;right:0;width:100%;
    flex-direction:column;
    background:#fff;
    padding:18px 0;
    text-align:center;
    gap:14px;
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    transition:.25s;
  }

  .nav-links.show{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .left-img,.right-img{display:none;}

  

  .works-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .works-title{font-size:40px;}
  .works-visuals{display:none;}

  .stats-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}

@media(max-width:600px){

  .title{font-size:32px;}

  .works-section{padding:80px 0;}
  .works-title{font-size:30px;}

  .works-list p{font-size:16px;}

  .stat .count{font-size:42px;}
  .stats-title{font-size:30px;}
}
/* =============================
   ABOUT SECTION
============================= */

.about-section{
  position:relative;
  padding:140px 0;
}

.about-section{
  position: relative;
  padding: 140px 0;
  background: 
    linear-gradient(
      180deg,
      rgba(255,246,241,0.92) 0%,
      rgba(255,233,240,0.92) 100%
    ),
    url("assets/images/Peach\ Pink\ Gradient\ Color\ and\ Style\ Video\ Background.jpg"); /* your bg image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}


/* Content */
.about-content{
  max-width:820px;
  margin:auto;
  padding:0 20px;
  text-align:center;
  position:relative;
  z-index:3;
}

/* Soft glow behind content */
.about-content::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:rgba(255,255,255,0.35);
  filter:blur(35px);
  z-index:-1;
}

/* Title */
.about-title{

  font-size:56px;
  font-weight:800;
  line-height:1.15;
  color:#0C1323;
  margin-bottom:28px;
}

/* Paragraph */
.about-content p{

  font-size:18px;
  font-weight:500;
  line-height:1.75;
  color:#2E2E2E;
  max-width:720px;
  margin:0 auto;
}

/* Characters */
.about-left,
.about-right{
  position:absolute;
  bottom:0;
  height:88%;
  object-fit:contain;
  pointer-events:none;
  z-index:2;
}

.about-left{
  left:90px;
}

.about-right{
  right:90px;
}

/* =============================
   RESPONSIVE
============================= */

@media(max-width:1024px){
  .about-title{
    font-size:46px;
  }
}

@media(max-width:820px){
  .about-left,
  .about-right{
    height:55%;
    opacity:.85;
  }
}

@media(max-width:680px){
  .about-left,
  .about-right{
    display:none;
  }

  .about-title{
    font-size:34px;
  }

  .about-content p{
    font-size:16px;
  }
}
/* =============================
   ABOUT SECTION (NO BG IMAGE)
============================= */

.about-section{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-content::before{
  content:"";
  position:absolute;
  inset:-40px;
  background: rgba(255,255,255,0.45);
  filter: blur(40px);
  z-index:-1;
}


/* SECTION WRAPPER */
.testimonial-section{
  width: 100%;
  text-align: center;
  margin: 90px auto;
}

/* HEADING */
.testimonial-heading{
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}

.bg-title{
  font-size: 120px;
  font-weight: 900;

  color: #ddccd48e;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonial-heading h2{
  position: absolute;
  top: 52%;
  left: 50%;

  transform: translate(-50%, -55%);
  font-size: 36px;
  font-weight: 800;
  color: #861954;
  margin: 0;
}

/* CARDS LAYOUT */
.testimonial-cards{
  width: 86%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.t-card{
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 15px 28px rgba(0,0,0,.05);
  text-align: left;
  min-height: 250px;
}

.t-card{
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 15px 28px rgba(0,0,0,.05);
  text-align: left;
  min-height: 250px;
  transition: .25s ease;
  border: 1px solid transparent;
}

/* MATCH NAVBAR HOVER STYLE */
.t-card:hover{
  transform: translateY(-10px);
  background: linear-gradient(90deg,#9A0059,#B21477,#ad3983);
  color:#fff;
  border-color: transparent;
  box-shadow: 0 28px 45px rgba(0,0,0,.18);
}

/* make inside text turn white */
.t-card:hover .location,
.t-card:hover .review-text,
.t-card:hover .lang-tag,
.t-card:hover h3{
  color:#fff;
}

/* language pill also switches */
.t-card:hover .lang-tag{
  background: rgba(255,255,255,.25);
}
.t-card{
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 15px 28px rgba(0,0,0,.05);
  text-align: left;
  min-height: 250px;

  /* smoother + slower */
  transition: 
    transform .45s ease,
    box-shadow .45s ease,
    background .45s ease,
    color .45s ease;
}

/* MATCH NAV HOVER + SMOOTH */
.t-card:hover{
  transform: translateY(-14px);
  background: linear-gradient(90deg,#9A0059,#B21477,#ad3983);
  color:#fff;
  box-shadow: 0 32px 55px rgba(0,0,0,.22);
}

/* smooth inner content too */
.t-card *{
  transition: color .45s ease, background .45s ease;
}

.t-card:hover .location,
.t-card:hover .review-text,
.t-card:hover h3{
  color:#fff;
}

.t-card:hover .lang-tag{
  background: rgba(255,255,255,.25);
  color:#fff;
}


.t-card h3{
  font-size: 20px;
  margin-bottom: 4px;
}

.location{
  color: #777;
  font-size: 14px;
  margin-bottom: 6px;
}

.stars{
  color: #ffb703;
  margin-bottom: 8px;
}

.lang-tag{
  background: #ffe2f1;
  color: #9A0059;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.review-text{
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .bg-title{ font-size: 70px; }
  .testimonial-heading h2{ font-size: 26px; }

  .testimonial-cards{
    grid-template-columns: 1fr;
  }

  .t-card{
    min-height: auto;
  }
}
/* ---------- RESPONSIVE HEADING FIX ---------- */

.testimonial-heading{
  width: 100%;
  max-width: 820px;
  margin: 0 auto 60px;
}

.bg-title{
  font-size: clamp(48px, 12vw, 140px);
  line-height: 1;
  display: block;
}

.testimonial-heading h2{
  font-size: clamp(20px, 4vw, 42px);
  text-align: center;
  white-space: nowrap;
}
.trust-section{
  width: 90%;
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
}

.trust-title{

  font-size: 50px;
  line-height: 1.1;
  color:#0c1323;
  margin-bottom: 60px;
}

.trust-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.trust-card{
  padding: 10px 20px;
}

.trust-icon{
  font-size: 55px;
  display: block;
  margin-bottom: 16px;
}

.trust-card h3{
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color:#0c1323;
}

.trust-card p{
  font-size: 16px;
  color:#333;
  line-height: 1.6;
}

/* 📱 Mobile responsive */
@media(max-width: 900px){
  .trust-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .trust-title{
    font-size: 34px;
  }
}
/* TALK SECTION */
.talk-section{
  position: relative;
  min-height: 80vh;
  background: #ffa2b49f;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* LEFT CONTENT */
.talk-content{
  width: 50%;
  padding: 80px 70px;
  color: #fff;
  position: relative;
  z-index: 5;
}

.talk-title{
  font-size: 64px;
  font-weight: 900;
  margin-top: -100px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.talk-sub{
  font-size: 18px;
  margin-bottom: 28px;
}

.store-row img{
  height: 60px;
  margin-right: 14px;
  cursor: pointer;
}

/* TALK SECTION */
.talk-section{
  position: relative;
  min-height: 90vh;
  background: #ffa2b49f;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* LEFT CONTENT */
.talk-content{
  width: 50%;
  padding: 80px 70px;
  color: #fff;
  z-index: 5;
}

.talk-title{
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.talk-sub{
  font-size: 18px;
  margin-bottom: 28px;
}

/* STORE BADGES */
.store-btns-r{
  display:flex;
  justify-content:flex-start;
  gap:18px;
  margin-top:-40px;
  position:relative;
  z-index:5;
}

.store-btns-r img{
  height:150px;
  transition:.2s;
  cursor:pointer;
}

.store-btns-r img:hover{
  transform:scale(1.05);
}


/* RIBBONS (FIXED ALIGNMENT) */
.ribbon{
  position: absolute;
  left: 40%;
  width: 180%;
  height: 82px;
  background-repeat: repeat-x;
  background-size: 1600px auto;
  animation: tapeMove 6s linear infinite;
  transform-origin: center;
}

/* top ribbon */
.ribbon-light{
  background-image: url("assets/images/strip1.png");
  bottom: 65px;                      /* moved lower */
  transform: translateX(-50%) rotate(6deg);   /* less tilt */
  z-index: 3;
}

/* bottom ribbon */
.ribbon-yellow{
  background-image: url("assets/images/strip2.png");
  bottom: 25px;                        /* moved lower */
  transform: translateX(-50%) rotate(-6deg);
  z-index: 2;
}


/* movement */
@keyframes tapeMove{
  from { background-position: 0 0; }
  to   { background-position: -600px 0; }
}


/* MOBILE */
@media(max-width:900px){
  .talk-content{
    width: 100%;
    padding: 60px 26px;
  }

  .talk-title{
    font-size: 42px;
  }
  .talk-sub{
  font-size: 18px;
  margin-bottom: 4px;
}

  .ribbon{
    width: 240%;
    height: 46px;
    animation-duration: 30s;
  }

  .ribbon-light{ bottom: 85px; }
  .ribbon-yellow{ bottom: 38px; }
}
@media(max-width:900px){

  .ribbon{
    width: 230%;
    height: 44px;
    animation-duration: 28s;
  }
  .talk-sub{
  font-size: 18px;
  margin-bottom: 4px;
}

  .ribbon-light{ bottom: 60px; rotate: 5deg; }
  .ribbon-yellow{ bottom: 22px; rotate: -5deg; }
}
/* Layout */
.talk-section{
  position: relative;
  min-height: 95vh;
  background: #ffa2b49f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.talk-content{
  width: 50%;
  padding: 80px 70px;
  color: #fff;
  z-index: 2;
}

/* RIGHT IMAGE */
.talk-image{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
  margin-top: 0px;
  z-index: 2;
}

.talk-image img{
  max-width: 520px;
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}
/* Layout */
.talk-section{
  position: relative;
  min-height: 100vh;
  background: #ffa2b49f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.talk-content{
  width: 50%;
  padding: 80px 70px;
  color: #000;
  bottom: 10px;
  z-index: 2;
}

/* RIGHT IMAGE */
.talk-image{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
  z-index: 2;
}

.talk-image img{
  max-width: 520px;
  width: 100%;
  height: auto;
}

/* footer */
.footer{
  background:#fff;
  padding:70px 6% 50px;
  border-top:1px solid #eee;
}

.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
}

.footer-logo{
  width:170px;
  margin-bottom:12px;
}

.footer-heading{
  margin:18px 0 10px;
  font-weight:700;
}

.store-buttons a img{
  width:170px;
  margin:8px 0;
  cursor:pointer;
}

.social-icons{
  margin-top:16px;
}

.social-icons i{
  font-size:22px;
  margin-right:10px;
  cursor:pointer;
}

.footer-col h4{
  margin-bottom:14px;
  font-weight:800;
}

.footer-col a,
.footer-col p{
  display:block;
  margin:7px 0;
  color:#333;
  text-decoration:none;
}

.footer-col a:hover{
  color:#9A0059;
}

.footer-bottom{
  margin-top:50px;
  text-align:center;
  font-size: 8px;
  color:#444;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1000px){
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
}

@media(max-width:700px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer{
    text-align:center;
  }

  .social-icons i{
    margin-right:6px;
  }
}
/* Hide How-To image on small screens */
@media (max-width: 820px){
  .works-visuals,
  .works-visuals.single {
    display: none;
  }
}
@media (max-width: 900px){

  .talk-section{
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
  }

  .talk-content{
    width: 100%;
    justify-content: c;
    padding: 40px 24px;
  }

  .talk-image{
    width: 100%;
    padding: 0 24px 30px;
    justify-content: center;
  }

  .talk-image img{
    display: none;
  }

  .talk-title{
    font-size: 40px;
    line-height: 1.1;
  }
}
/* --- TALK SECTION MOBILE TUNING --- */
@media (max-width: 900px){

  /* store buttons */
  .store-row{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .store-row img{
    width: 210px;
    max-width: 100%;
    height: auto;
  }

  /* ribbons */
  .ribbon{
    display: none;
  }
}
