@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');


.rightclick-menu {
    position: absolute;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 240px;
    z-index: 10000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 0;
    animation: fadeIn 0.2s ease-out;
    font-family: sans-serif;
  }

  .context-section {
    padding: 4px 0;
  }

  .context-title {
    font-size: 0.75rem;
    font-weight: bold;
    color: #444;
    padding: 6px 16px 4px;
    text-transform: uppercase;
    pointer-events: none;
    display: block;
  }

  .context-text {
    padding: 0 16px 8px;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
    white-space: pre-wrap;
  }

  .rightclick-menu a {
    display: block;
    padding: 10px 16px;
    color: #000;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 0.9rem;
    cursor: pointer;
  }

  .rightclick-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


.custom-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: normal;
  word-break: break-word;
  max-width: 80vw;
  text-align: left;
}
  .custom-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
  }




  .dropdown {
    position: relative;
    display: inline-block;
  }

@media (max-width: 1000px) {
  /* Hide dropdown menu on mobile */
  .dropdown-content {
    display: none !important;
  }

    .dropdownsvg {
        display: none !important;
      }

  /* Keep the Apps link (dropdown-button) fully visible and clickable */
  .dropdown-button {
    pointer-events: auto;  /* enable click */
  }

  /* Disable hover styles on dropdown-button to avoid confusion */
  .dropdown-button:hover {
    background: transparent;
  }

  /* Also prevent the dropdown from showing on hover */
  .dropdown:hover .dropdown-content {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-10px) !important;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); /* Safari support */
  }
}



  .dropdown-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  .dropdown-button svg {
    width: 25px;
    height: 25px;
    fill: var(--foreground);
    transition: transform 0.3s ease;
  }

  .dropdown:hover .dropdown-button svg {
    transform: rotate(180deg);
  }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: -5rem;
    background: rgba(255, 255, 255, 0.8);
      background-clip: border-box;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
    min-width: 300px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); /* Safari support */
    z-index: 100;
  }

.dropdown .dropdown-content {
  /* keep all your styles */
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.dropdown.show .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.dropdown .dropdown-button svg {
  transition: transform 0.3s ease;
  fill: var(--foreground);
}

.dropdown.show .dropdown-button svg {
  transform: rotate(180deg);
}


  .dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    transition: background 0.2s ease;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); /* Safari support */
  }

  .dropdown-content a:hover {
    background: rgb(217, 217, 217, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); /* Safari support */
  }

  .command-docs {
      display: flex;
      padding: 2rem;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
    }

    .sidebar {
      width: 200px;
      margin-right: 2rem;
    }

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

    .sidebar li {
      background-color: #1a1a1a;
      padding: 0.75rem 1rem;
      margin-bottom: 0.5rem;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
      color: #bfbfbf;
    }

    /* 🟡 On hover — just change the text color */
    .sidebar li:hover {
      color: #00ff99;
    }

    /* 🟢 On click — full color with green background and neon text */
    .sidebar li.active {
      background-color: #14532d;
      color: #00ff99;
    }

    .command-content {
      flex: 1;
      overflow-x: auto;
    }

    .command-table {
      width: 100%;
      border-collapse: collapse;
      display: none;
    }

    .command-table.visible {
      display: table;
    }

    .command-table th,
    .command-table td {
      padding: 0.75rem 1rem;
      border-bottom: 1px solid #2f2f2f;
      text-align: left;
    }

    .command-table thead {
      background-color: #1f1f1f;
    }

    .green {
      color: #00ff99;
      font-weight: bold;
    }

/* Mobile responsive styles for command tables */
@media (max-width: 768px) {
  /* Stack command docs layout vertically on mobile */
  .command-docs {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    align-items: center;
  }

  /* Make sidebar full width and horizontal on mobile */
  .sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .sidebar li {
    flex: 1;
    min-width: calc(50% - 0.25rem);
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
  }

  /* Command content takes full width */
  .command-content {
    width: 100%;
    max-width: 600px;
    overflow-x: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  /* Make tables responsive */
  .command-table {
    font-size: 0.875rem;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  /* Convert table to card layout on very small screens */
  .command-table {
    display: none; /* Hide all tables by default */
  }

  .command-table.visible {
    display: block; /* Only show the visible/selected category */
  }

  .command-table thead {
    display: none;
  }

  .command-table.visible,
  .command-table.visible tbody,
  .command-table.visible tr,
  .command-table.visible td {
    display: block;
    width: 100%;
  }

  .command-table.visible tr {
    background-color: #1a1a1a;
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #2f2f2f;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .command-table.visible td {
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    padding: 0.6rem 0;
    text-align: left;
    position: relative;
    padding-left: 40%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 1.8rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
  }

  .command-table.visible td:before {
    content: attr(data-label) ": ";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 35%;
    font-weight: bold;
    color: #bfbfbf;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
  }

  /* Add data labels for mobile view */
  .command-table.visible td:nth-child(1):before {
    content: "Command";
  }

  .command-table.visible td:nth-child(2):before {
    content: "Description";
  }

  .command-table.visible td:nth-child(3):before {
    content: "Usage";
  }

  /* Ensure command text stays green and readable */
  .command-table.visible td.green {
    color: #00ff99;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
  }

  /* Keep card borders but remove internal table borders */
  .command-table.visible tr {
    /* Keep the card border - this is what we want */
    border: 1px solid #2f2f2f;
    border-radius: 8px;
  }
  
  .command-table.visible tbody {
    border: none !important;
  }
  
  .command-table.visible tr:last-child {
    margin-bottom: 2rem;
  }
  
  /* Only remove internal cell borders, not card borders */
  .command-table.visible td:last-child {
    margin-bottom: 0 !important;
  }
  
  /* Center the entire table container */
  .command-table.visible {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .command-docs {
    padding: 1.5rem;
  }

  .sidebar {
    width: 180px;
    margin-right: 1.5rem;
  }

  .command-table {
    font-size: 0.9rem;
  }

  .command-table th,
  .command-table td {
    padding: 0.625rem 0.875rem;
  }
}

/* Basic Reset & Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border); /* From Tailwind base */
}

html, body {
  cursor: url('/assets/images/maincursor.png'), auto;
}

button, a, li, ul, [role="button"], .clickable {
  cursor: url('/assets/images/clickcursor.png') 0 0, pointer !important;
}

/* Fullscreen overlay */
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85); /* semi-transparent black */
    z-index: 9999;
    display: none; /* hidden initially */
    transition: opacity 0.3s ease;
  }

    .hover-zoom {
      transition: transform 0.3s ease;
    }

    .hover-zoom:hover {
      transform: scale(1.05); /* Slight zoom (5% larger) */
    }

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s, color 0.3s;
    overscroll-behavior-y: none;
    overflow-x: hidden;
}

.hover-img {
    cursor: url('/assets/images/cursor.png'), pointer; /* Custom cursor */
}

.hover-img:hover {
    filter: blur(0); /* Remove blur on hover */
}

    main, .aboutice {
       opacity: 1;
     }

     .aboutice {
       display: none;
       opacity: 0;
     }


/* width */
::-webkit-scrollbar {
  width: 10px; /* Thinner scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}


/* Handle */
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}



:root {
    --background: #ffffff; /* Light Gray #EDF2F7 */
    --foreground: #383838; /* Dark Blue #1A202C */
    --card: hsl(0, 0%, 100%); /* White */
    --card-foreground: hsl(225, 39%, 18%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(225, 39%, 18%);
    --primary: #383838; /* Dark Blue #1A202C */
    --primary-foreground: hsl(0, 0%, 100%); /* White */
    --secondary: #EFEFEF; /* Slightly darker Light Gray */
    --secondary-foreground: #383838; /* Dark Blue */
    --muted: hsl(214, 30%, 90%);
    --muted-foreground: #383838; /* Muted Dark Blue/Gray */
    --accent: #239a4d; /* Dark Green */
    --accent-foreground: hsl(0, 0%, 100%); /* White */
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 98%);
    --border: hsl(214, 25%, 85%); /* Border gray */
    --input: hsl(214, 25%, 85%);
    --ring: #2BD059; /* Dark Green for focus ring */
    --radius: 5rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.navcontainer {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;  /* px-4 */
    padding-right: 1rem; /* px-4 */
}

.container {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}


@media (min-width: 768px) { /* md: */
    .container {
        padding-left: 1.5rem; /* md:px-6 */
        padding-right: 1.5rem; /* md:px-6 */
    }
}

@media (max-width: 1000px) {
    .container {
        max-width: 90%;
    }
}

/* Headings & Paragraphs (from globals.css) */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600; /* font-semibold */
    letter-spacing: -0.025em; /* tracking-tight */
    color: var(--foreground);
}
h1 {
    font-size: 2.25rem; /* text-4xl */
}
h2 {
    font-size: 1.875rem; /* text-3xl */
    color: var(--primary);
}
h3 {
    font-size: 1.5rem; /* text-2xl */
}
h4 {
    font-weight: 500;
    color: var(--muted-foreground);
}
p {
    line-height: 1.75; /* leading-relaxed */
    color: var(--muted-foreground); /* text-foreground/80 equivalent */
}

p.animate-on-scroll {
    text-align: justify;           /* ← ensure these are justified too */
    text-justify: inter-word;
  }

@media (min-width: 768px) { /* md: */
    h1 { font-size: 3rem; } /* md:text-5xl */
    h2 { font-size: 2.25rem; } /* md:text-4xl */
    h3 { font-size: 1.875rem; } /* md:text-3xl */
}
@media (min-width: 1024px) { /* lg: */
    h1 { font-size: 3.75rem; } /* lg:text-6xl */
}

/* Navbar Styles */
.navbar {
    width: 100%;
    border-bottom: 1px solid hsla(var(--border-values), 0.4); /* border-border/40 */
    background-color: hsla(var(--background-values), 0.4); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Increased blur for glass effect */
    height: 4rem; /* h-16 */
    position: relative; /* For positioning the backdrop-filter */
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* gap-2 */
    text-decoration: none;
}
.logo .icon-primary {
    stroke: var(--primary);
    width: 1.75rem; /* h-6 w-6 */
    height: 1.75rem;
    margin-bottom: 0.2rem;

}
.logo-text {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    color: var(--foreground);
    transition: opacity 0.3s ease-in-out;
}
.nav-links {
    display: flex; /* hidden */
    align-items: center;
    gap: 1.5rem; /* gap-6 */
    font-size: 0.9rem; /* text-sm */
    font-weight: 500; /* font-medium */
}
.nav-links a {
    color: var(--foreground); /* text-foreground/70 */
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--foreground); /* hover:text-foreground */
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .logo .icon-primary {
        stroke: var(--primary);
        width: 2rem; /* h-6 w-6 */
        height: 2rem;
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 2rem;
    }
}

@media (max-width: 720px) {
    .hero-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 769px) {
    .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem; /* gap-2 */
        padding: 5rem; /* size lg: h-11 px-8 (approx) */
        max-width: 80%; /* optional, adds responsiveness */
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

::selection {
  background: rgb(42, 180, 207, 0.3); /* Lighter green selection */
}

/* 1) Default: hide on all devices */
.show-desktop-only {
  display: none !important;
}

/* 2) On tablets and up (≥ 769px): override to show */
@media (min-width: 769px) {
  .show-desktop-only {
    display: block !important;
  }
}

.show-phone-only {
  display: none; /* hide by default */
}

@media (max-width: 768px) {
  .show-phone-only {
    display: block !important; /* show on phones */
  }
}


@media (max-width: 768px) {
  /* Stack the image and text vertically */
  .about-section .about-container {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.5rem !important;
    text-align: center; /* center all child text */
  }

  /* Make sure the content area spans full width */
  .about-section .about-content,
  .about-section .about-image-container {
    width: 100%;
  }

  /* Optional: add some bottom margin under the image so text isn't too tight */
  .about-section .about-image-container {
    margin-bottom: 1rem;
  }
}


#notfound .notfound-content h1 {
  font-size: 5rem;
}




/* Section Base */
.section {
    width: 100%;
    padding-top: 4rem;    /* py-16 */
    padding-bottom: 4rem; /* py-16 */
}
@media (min-width: 768px) { /* md: */
    .section {
        padding-top: 6rem;    /* md:py-24 */
        padding-bottom: 6rem; /* md:py-24 */
    }
}
@media (min-width: 1024px) { /* lg: */
    .section {
        padding-top: 7rem;    /* lg:py-28 */
        padding-bottom: 7rem; /* lg:py-28 */
    }
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* Section animation (JS will add 'visible' class) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.animate-on-scroll.visible, .animate-on-scroll.no-animation {
    opacity: 1;
    transform: translateY(0);
}


/* Hero Section */
.hero-section {
    background-color: var(--secondary); /* bg-secondary/30 approx. */
}
.hero-container {
    display: grid;
    align-items: center;
    gap: 2rem; /* gap-8 */
}
.hero-content {
    text-align: center;
}
.hero-content h1 {
    color: var(--primary);
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 1.5rem;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* gap-3 */
    justify-content: center;
}
.hero-image-container {
    display: flex;
    justify-content: center;
}
.hero-avatar {
    width: 250px; /* width={400} (scaled down for typical view) */
    height: 250px; /* height={400} */
    border-radius: 50%; /* rounded-full */
    object-fit: cover;
    box-shadow: var(--shadow-2xl); /* shadow-2xl */
    border: 4px solid hsla(var(--primary-hsl), 0.1); /* border-primary/10 */
}

@media (min-width: 768px) { /* md: */
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem; /* lg:gap-12 approx */
    }
    .hero-content {
        text-align: left;
    }
    .hero-content p {
        font-size: 1.25rem; /* md:text-xl */
    }
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    .hero-avatar {
      width: 350px; height: 350px;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    background-color: var(--accent); /* Green */
    color: var(--accent-foreground); /* White */
    border: 1px solid transparent;
}

.button:hover {
    background-color: #197138; /* A darker green */
}
.button svg {
    width: 1.25rem; height: 1.25rem; /* h-5 w-5 */
}

.button-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--input);
}
.button-outline:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
}

/* About Section */
.about-section {}
.about-container {
    display: grid;
    align-items: center;
    gap: 3rem; /* gap-12 */
}
.about-image-container {
    order: 2;
}
.about-image {
    width: 100%;
    border-radius: 0.75rem; /* rounded-xl */
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about-content {
    order: 1;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p {
    font-size: 1.125rem; /* text-lg */
    white-space: pre-line;
}
@media (min-width: 768px) { /* md: */
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem; /* lg:gap-16 */
    }
    .about-image-container { order: 1; }
    .about-content { order: 2; }
    .about-content p { font-size: 1.25rem; /* md:text-xl */ }
}

/* Section Header (for Skills, Portfolio, Contact) */
.section-header {
    text-align: center;
    margin-bottom: 3rem; /* mb-12 */
}
.section-header h2 { margin-bottom: 1rem; /* mt-4 */ }
.section-header p {
    font-size: 1.125rem; /* text-lg */
}
@media (min-width: 768px) { /* md: */
    .section-header p { font-size: 1.25rem; /* md:text-xl */ }
}
.social-links-container {
    display: flex;
    justify-content: center;
    gap: 1rem; /* gap-4 */
}
.social-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem; /* size="icon" approx */
    height: 3rem;
    border: 1px solid var(--input);
    background-color: transparent;
    border-radius: 0.5rem;
    color: var(--muted-foreground);
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.social-icon-button:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
}
.social-icon-button svg {
    width: 1.5rem; /* h-6 w-6 */
    height: 1.5rem;
}
@media (min-width: 640px) { /* sm: */
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer Styles */
.footer {
    border-top: 1px solid hsla(var(--border-values), 0.4); /* border-border/40 */
    background-color: #EFEFEF;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem; /* gap-4 */
    padding-top: 2rem; /* py-8 */
    padding-bottom: 2rem; /* py-8 */
}
.footer p {
    font-size: 0.875rem; /* text-sm */
    color: var(--muted-foreground);
}
.footer-social-links {
    display: flex;
    gap: 0.5rem; /* gap-2 */
}
.social-icon-button-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem; /* size="icon" */
    height: 2.5rem;
    background: none;
    border: none;
    border-radius: 0.5rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s;
}
.social-icon-button-footer:hover {
    color: #e8e8e8;
    background-color: var(--accent);
}
.social-icon-button-footer svg {
    width: 1.25rem; /* h-5 w-5 */
    height: 1.25rem;
}

@media (min-width: 768px) { /* md: */
    .footer-container {
        flex-direction: row;
    }
}

/* Helper for HSL values access in JS for specific properties not easily overridable by just class */
:root {
    --background-values: 214, 43%, 95%;
    --foreground-values: 225, 39%, 18%;
    --border-values: 214, 25%, 85%;
    --primary-hsl-values: 180, 100%, 20%;
}
