/* This is the required project styling. Will contain essential CSS styles like:
   * Flex property
   * Grid layout
   * Cards and sections
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600&display=swap');/* variables */
:root {
  /* Colors */
  --primary-color: #ffcd42;
  --secondary-color: #ffd35c;
  --bg-primary: #ffffff;
  --text-color: #222222;
  --text-color-two: #ffffff;
  --bg-secondary: #000000;
  --card-background: #f4f4f4;
  --bg-secondary-two: #111111;

  --shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

  /* Font Weight */
  --weight-small: 400;
  --weight-semibold: 600;
  --weight-bold: 800;

  /* Max width */
  --width-small: 600px;
  --width-medium: 1100px;
  --width-large: 1300px;
}

[data-theme="dark"] {
  --primary-color: #ffcd42;
  --secondary-color: #ffd35c;
  --bg-primary: #000000;
  --text-color: #ffffff;
  --text-color-two: #222222;
  --bg-secondary: #ffffff;
  --card-background: #111111;
  --bg-secondary-two: #f4f4f4;
  --shadow: 0 2px 10px rgba(95, 95, 95, 0.2);
  --card-bg: #ffffff;
  --card-text: #111111;
}
 .page-section .blog-hero h1{

    font-size: 4.5rem;
     margin-bottom: 2rem;
     margin-top: 1rem;

    line-height: 0.95;

    letter-spacing: -0.06em;
  }


html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* Reset default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

body {
  background: var(--bg-primary);
  color: var(--text-color);

  font-family: "Geist Mono", monospace;

  line-height: 1.5;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.04em;
  line-height: 1;
}

p {
  line-height: 1.7;
  color: #666;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--bg-primary);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  height: 80px;
  width: 100%;
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
}

.navbar .nav-link {
  margin: 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  transition: 0.3s ease;
}

.navbar .nav-link:hover {
  color: #000;
}
.navbar #logo img {
  display: block;
  width: 40px;
}

.navbar .btn {
  margin-right: 1.5rem;
}

.fas.fa-arrow-right {
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

/* hamburger */
.hamburger {
  margin-bottom: 0.1rem;
  display: none;
}

.bar {
  display: block;
  width: 23px;
  height: 3px;
  margin: 4px auto;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
  background-color: var(--bg-secondary);
}

/* Hero section */

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-10px);
  }
}




.blog-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: #888;
}

.contact-page .blog-hero h1 {

  font-size: 5rem;

  line-height: 0.92;

  letter-spacing: -0.08em;

  margin-top: 1.2rem;

  margin-bottom: 2rem;

  font-weight: 800;
}
.contact-page .blog-hero p {
  font-size: 1rem;

  line-height: 1.4;

}


.blog-hero p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.4;
  color: #666;
  max-width: 700px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 2rem;
  transition: all 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.blog-date {
  font-family: "IBM Plex Mono", monospace;
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111;
}

.blog-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.blog-card a {
  font-family: "IBM Plex Mono", monospace;
  color: #111;
  transition: 0.3s ease;
}

.blog-card a:hover {
  opacity: 0.6;
}

.project-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: #999;
}

.section-heading h2 {
  font-size: 4.5rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.section-heading p {
  font-size: 1rem;
  line-height: 1.4;
  max-width: 700px;
 
}

.project-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(420px, 1fr));

  gap: 2.5rem;

  align-items: stretch;
}

.project-card {

  background: var(--card-bg);

  border: 1px solid #ececec;

  border-radius: 32px;

  padding: 2rem;

  min-height: 200px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  transition: all 0.35s ease;

  position: relative;

  overflow: hidden;
}
.project-card h3 {

  min-height: 110px;
}
.project-card p {

  flex-grow: 1;
}
.project-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.06);
}
.featured-project {

  background: #050505;

  border: 1px solid rgba(255,255,255,0.15);
}

.featured-project h3 {

  color: #ffffff !important;
}

.featured-project p {

  color: rgba(255,255,255,0.82) !important;
}

.featured-project .tech-stack {

  color: rgba(255,255,255,0.72) !important;
}

.featured-project .project-type {

  color: rgba(255,255,255,0.6) !important;
}

.featured-project a {

  color: #ffffff !important;
}
.featured-project:hover {

  transform: translateY(-10px);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.35);
}

.project-top {

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  margin-bottom: 2rem;
}

.project-type {
  font-size: 0.75rem;

  letter-spacing: 0.12em;

  color: #888;
}

.project-links a {
  font-size: 0.9rem;
}

.project-card h3 {

  font-size: 2rem;

  line-height: 1.02;

  margin-bottom: 0.5rem;

  font-weight: 800;

  word-break: break-word;

  min-height: 110px;
}

.project-card p {
  line-height: 1.4;

  margin-bottom: 2rem;
}

.tech-stack {
  font-size: 0.9rem;

  color: #777;

  line-height: 1.7;
}

.project-footer {
  margin-top: 5rem;

  display: flex;

  justify-content: center;
}

.view-all-btn {
  padding: 1rem 2rem;

  border: 1px solid #ddd;

  border-radius: 999px;

  transition: 0.3s ease;
}

.view-all-btn:hover {
  background: #111;

  color: white;
}

.contact-page .contact-minimal span{

    font-size: 1.2rem;
    font-family: monospace;
     margin-bottom: 0.5rem;
     margin-top: 0.5rem;

    line-height: 1.4;

    
   
  }

  .contact-line span {

  display: flex;

  align-items: center;

  gap: 1.2rem;

  font-size: 2rem;

  letter-spacing: -0.01em;

  color: var(--text-color);

  transition: 0.3s ease;
}

.contact-line i {

  width: 18px;

  font-size: 1.25rem;

  color: #888;
}

.contact-line:hover i {

  color: var(--text-color);
}


#footer {
  width: 100%;

  margin-top: 4rem;

  background: #050505;

  border-top: 1px solid rgba(255,255,255,0.05);
}

#footer .container {

  min-height: 180px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  gap: 1rem;
}

#footer a {
  color: white;
}

#footer p {
  color: #777;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Responsiveness */



/* =========================================
   MOBILE FIXES
========================================= */

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  /* ---------- NAVBAR ---------- */

  .navbar {

    position: fixed;

    top: 0;

    left: 0;
    right: 0;

    width: 100%;

    height: 65px;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid #ececec;

    z-index: 999;
  }

  .navbar .container {

    width: 100%;

    height: 65px;

    padding-left: 22px;
    padding-right: 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;
  }

  #logo img {

    width: 38px;
  }

  /* ---------- HAMBURGER ---------- */

  .hamburger {

    display: block;

    z-index: 1001;
  }

  /* HIDE NAV MENU INITIALLY */

  .navbar .nav-menu {

    position: fixed;

    top: 65px;

    right: -100%;

    width: 260px;

    height: auto;

    background: white;

    border-left: 1px solid #ececec;

    border-bottom: 1px solid #ececec;

    padding: 2rem;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 1.5rem;

    transition: 0.35s ease;
  }

  .nav-menu.active {

    right: 0;
  }

  .nav-link {

    font-size: 1rem;
  }

  /* ---------- HERO ---------- */

  .hero {

    min-height: auto;

    padding-top: 9rem;

    padding-bottom: 4rem;

    padding-left: 22px;
    padding-right: 22px;
  }

  /* IMAGE FIX */

  .hero-image-top {

    margin-top: 5rem;

    margin-bottom: 2rem;
  }

.profile-image {

  width: 190px;

  height: auto;

  object-fit: contain;

  border-radius: 0;

  border: none;

  box-shadow: none;

  margin: 0 auto;
}
  /* ---------- HERO TEXT ---------- */

  .hero-content .hero-label{

    font-size: 0.63rem;

    line-height: 1.4;

    margin-top: 1rem;

  }

  .hero .hero-content h1{
    font-size: 3.5rem;

    line-height: 1.2;

    letter-spacing: -0.06em;

    margin-top: 1rem;

    margin-bottom: 2rem;

    font-weight: 800;

  }
  

    .hero .hero-content .hero-description {


    font-size: 0.9rem;

    line-height: 1.4;
  }

  .hero-tags {

    gap: 0.5rem;
  }

  .hero-tags span {

    font-size: 0.65rem;

    padding: 0.7rem 1rem;
  }

  /* ---------- SECTION HEADINGS ---------- */

 .page-section .blog-hero h1{

    font-size: 3.5rem;
     margin-bottom: 2rem;
     margin-top: 1rem;

    line-height: 0.95;

    letter-spacing: -0.06em;
    font-weight: 800;
  }
  .page-section .blog-hero p{

    font-size: 0.9rem;
     margin-bottom: 2rem;
     margin-top: 1.5rem;

     line-height: 1.4;

    letter-spacing: -0.06em;
  }
  .page-section .blog-card p{

    font-size: 0.9rem;
     margin-bottom: 2rem;
     margin-top: 1.5rem;

     line-height: 1.4;

    letter-spacing: -0.06em;
  }
  .page-section .blog-card h3{

    font-size: 1rem;
     margin-bottom: 2rem;
     margin-top: 1.5rem;

     line-height: 1.4;

    letter-spacing: -0.06em;
  }

  .contact-page .contact-minimal span{

    font-size: 1rem;
    font-family: sans-serif;
     margin-bottom: 1rem;
     margin-top: 1rem;

    line-height: 0.95;

    letter-spacing: -0.06em;
   
  }
  .contact-page .contact-minimal h2{

    font-size: 1rem;
    font-family: sans-serif;
     margin-bottom: 0.5rem;
     margin-top: 0.5rem;

    line-height: 1.4;

    
   
  }
  .contact-line span {

  display: flex;

  align-items: center;

  gap: 0.7rem;

  font-size: 0.95rem;

  letter-spacing: -0.01em;

  color: var(--text-color);

  transition: 0.3s ease;
}

.contact-line i {

  width: 18px;

  font-size: 1rem;

  color: #888;
}

.contact-line:hover i {

  color: var(--text-color);
}
  .contact-page .contact-minimal{

  
     margin-bottom: 2rem;
     margin-top: 5rem;


    
   
  }

  /* ---------- PROJECTS ---------- */

  .project-grid {


    grid-template-columns: 1fr;

    gap: 1rem;
  }

  .project-card {

    min-height: auto;

    padding: 1rem;
  }

  .project-card h3 {

    min-height: auto;

    font-size: 1.2rem;
  }
  .project-section .section-heading p{

    font-size: 0.9rem;
     line-height: 1.4;

    margin-bottom: 1rem;
  }
  .project-section .section-heading h2{
font-size: 3.6rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  }
  .project-card p {
    font-size: 0.8rem;

    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  /* ---------- CONTACT ---------- */


.page-section .contact-hero h1{

font-size: 5rem;
}
.page-section .contact-hero p{

font-size: 0.9rem;

  line-height: 1.4;

  color: #666;

  max-width: 600px;
  margin-top: 1.5rem;

  margin-bottom: 2rem;
}

.page-section .contact-hero {

  max-width: 850px;

  margin-bottom: 2rem;
}
.page-section .contact-grid {

  max-width: 600px;
  font-size: 0.9rem;
  line-height: 1.4;

  margin-bottom: 1rem;
}
.page-section .contact-grid h3{

  font-size: 1rem;
  line-height: 1;

  margin-bottom: 0.5rem;
}

.contact-label {

  font-size: 0.78rem;

  letter-spacing: 0.16em;

  color: #8a8a8a;
}

.contact-page .contact-hero h1 {

  font-size: 4.5rem;

  line-height: 0.92;

  letter-spacing: -0.08em;

  margin-top: 1.2rem;

  margin-bottom: 2rem;

  font-weight: 800;
}
.contact-page .contact-hero p {

  font-size: 0.9rem;

  line-height: 1.4;

  
}
.contact-page .contact-hero {

  max-width: 850px;

  margin-bottom: 1rem;
}
.contact-page .contact-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 1rem;

  max-width: 850px;

  margin-bottom: 1rem;
}
.contact-page .contact-card p{
  font-size: 0.9rem;

  line-height: 1.4;
  
}




.contact-page .blog-hero h1 {

  font-size: 3.5rem;

  line-height: 0.9;

  letter-spacing: -0.08em;

  margin-top: 1rem;

  margin-bottom: 2rem;

  font-weight: 1000;
}
.contact-page .blog-hero p {
  font-size: 0.9rem;

  line-height: 1.4;

}

.contact-page .blog-grid .blog-card p{

  font-size: 0.9rem;

  line-height: 1.4;

  
}
.contact-page .blog-grid .blog-card p
h3{

  font-size: 0.9rem;

  line-height: 1.5;

  
}

.contact-hero p {

  max-width: 720px;

  font-size: 0.9rem;

  line-height: 1.4;

  color: #666;
}

.contact-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 2rem;
}

.contact-card {

  border: 1px solid #ececec;

  border-radius: 32px;

  padding: 2.5rem;

  min-height: 260px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  transition: 0.3s ease;

  background: white;
}

.contact-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.05);
}

.contact-card span {

  font-size: 0.78rem;

  letter-spacing: 0.14em;

  color: #9a9a9a;
}

.contact-card h3 {

  font-size: 1.5rem;

  line-height: 1;

  margin-top: 1rem;

  margin-bottom: 1rem;

  color: #111;

  word-break: break-word;
}



.coffee-card {

  background: #050505;

  border: 1px solid rgba(255,255,255,0.08);
}

.coffee-card h3,
.coffee-card a {

  color: white;
}

.coffee-card p {

  color: rgba(255,255,255,0.72);
}

.coffee-card span {

  color: rgba(255,255,255,0.5);
}


  
  /* ---------- FOOTER ---------- */

  #footer {

    width: 100%;

    overflow: hidden;

    padding: 2rem 1rem;
  }

  #footer .container {
    font-size: 0.8rem;

     line-height: 1.4;

     color: #777;

     text-align: center;

    width: 100%;

    padding: 0;
  }

}
.header-container h1 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.header-container h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #666;
  margin-top: 1rem;
}

.header-container p {
  font-size: 1.1rem;
  max-width: 700px;
  color: #666;
}

.card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 28px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}


.page-section {
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.section-hero {
  margin-bottom: 5rem;
  max-width: 850px;
}

.hero {

  min-height: 100vh;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding-top: 8rem;

  padding-bottom: 6rem;
}

/* IMAGE ON TOP */
.hero-image-top {

  margin-bottom: 0.5rem;
}

/* PROFILE IMAGE */
.profile-image {

  width: 260px;

  height: 260px;

  object-fit: cover;

  border-radius: 50%;

  border: 3px solid #ececec;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08);
}

/* CONTENT */
.hero-content {

  max-width: 850px;
}

.hero-label {

  font-size: 0.9rem;

  letter-spacing: 0.16em;

  color: #888;
}

.hero h1 {

  font-size: 5rem;

  line-height: 1.4;

  letter-spacing: -0.08em;

  margin-top: 1.5rem;

  margin-bottom: 2rem;

  font-weight: 800;
}

.hero-description {

  font-size: 1.1rem;

  line-height: 1.2;

  color: #666;

  max-width: 600px;

  margin: 0 auto 3rem;
}

/* TAGS */
.hero-tags {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 0.4rem;

  margin-bottom: 3rem;
}

.hero-tags span {

  border: 1px solid #e5e5e5;

  border-radius: 999px;

  padding: 0.7rem 1.2rem;

  font-size: 0.9rem;

  color: #666;

  background: white;
}

/* BUTTONS */
.hero-actions {

  display: flex;

  justify-content: center;

  gap: 1rem;

  flex-wrap: wrap;
}

.hero-btn {

  padding: 1rem 1.8rem;

  border-radius: 999px;

  transition: 0.3s ease;
}

.primary-btn {

  background: #111;

  color: white;
}

.primary-btn:hover {

  transform: translateY(-2px);
}

.secondary-btn {

  border: 1px solid #ddd;
}

.secondary-btn:hover {

  background: #111;

  color: white;
}


.blog-actions {

  margin-top: 4rem;

  display: flex;

  justify-content: center;
}

.view-all-btn {

  padding: 1rem 2rem;

  border: 1px solid #ddd;

  border-radius: 999px;

  transition: 0.3s ease;

  font-size: 0.95rem;
}

.view-all-btn:hover {

  background: #111;

  color: white;

  transform: translateY(-2px);
}

body.dark-theme .project-card h3 {
  color: #111;
}
body.dark-theme .featured-project h3,
body.dark-theme .featured-project p,
body.dark-theme .featured-project a,
body.dark-theme .featured-project .tech-stack,
body.dark-theme .featured-project .project-type {

  color: white !important;
}


.contact-page {

  width: 100%;

  padding-top: 10rem;

  padding-bottom: 8rem;
}

.contact-hero {

  max-width: 850px;

  margin-bottom: 5rem;
}

.contact-label {

  font-size: 0.78rem;

  letter-spacing: 0.16em;

  color: #8a8a8a;
}

.contact-hero h1 {

  font-size: 5rem;

  line-height: 0.92;

  letter-spacing: -0.08em;

  margin-top: 1.2rem;

  margin-bottom: 2rem;

  font-weight: 800;
}

.contact-hero p {

  max-width: 720px;

  font-size: 1.05rem;

  line-height: 1.4;

  color: #666;
}

.contact-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 2rem;
}

.contact-card {

  border: 1px solid #ececec;

  border-radius: 32px;

  padding: 2.5rem;

  min-height: 260px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  transition: 0.3s ease;

  background: white;
}

.contact-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.05);
}

.contact-card span {

  font-size: 0.78rem;

  letter-spacing: 0.14em;

  color: #9a9a9a;
}

.contact-card h3 {

  font-size: 1.5rem;

  line-height: 1;

  margin-top: 1rem;

  margin-bottom: 1rem;

  color: #111;

  word-break: break-word;
}



.coffee-card {

  background: #050505;

  border: 1px solid rgba(255,255,255,0.08);
}

.coffee-card h3,
.coffee-card a {

  color: white;
}

.coffee-card p {

  color: rgba(255,255,255,0.72);
}

.coffee-card span {

  color: rgba(255,255,255,0.5);
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-page {

  padding-top: 10rem;

  padding-bottom: 6rem;
}

.contact-hero {

  max-width: 760px;

  margin-bottom: 4rem;
}

.contact-hero h1 {

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(4rem, 8vw, 7rem);

  line-height: 0.9;

  letter-spacing: -0.08em;

  margin-bottom: 1.5rem;
}

.contact-hero p {

  max-width: 760px;

  color: var(--text-light);

  font-size: 1.05rem;

  line-height: 1.9;
}

/* GRID */

.contact-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1.5rem;
}

/* CARD */

.contact-card {

  background: transparent;

  border: 1px solid var(--border-color);

  border-radius: 28px;

  padding: 2rem;

  min-height: 220px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  transition: 0.3s ease;
}

.contact-card:hover {

  transform: translateY(-4px);

  border-color: #bdbdbd;
}

/* LABEL */

.contact-card span {

  font-size: 0.78rem;

  letter-spacing: 0.16em;

  color: #9a9a9a;
}

/* TITLE */

.contact-card h3 {

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(1.7rem, 3vw, 2.4rem);

  line-height: 1.05;

  letter-spacing: -0.04em;

  margin: 1rem 0;
}

/* TEXT */

.contact-card p {

  color: var(--text-light);

  line-height: 1.8;

  max-width: 90%;
}

/* BLACK CARD */

.coffee-card {

  background: #050505;

  border: none;
}

.coffee-card * {

  color: white !important;
}

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

@media (max-width: 768px) {

  .contact-page {

    padding-top: 7rem;
  }

  .contact-grid {

    grid-template-columns: 1fr;
  }

  .contact-hero h1 {

    font-size: 4.5rem;

    line-height: 0.92;
  }

  .contact-card {

    min-height: auto;

    padding: 1.8rem;
  }

  .contact-card h3 {

    font-size: 1.9rem;
  }

  .contact-card p {

    max-width: 100%;
  }
}
