/*
================================================
  Synth Cider Theme CSS
  Author: Hunter Thomas
  Version: 1.0
================================================
*/

/* ------------------------------------------------
   🔤 FONT IMPORTS
------------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;600&display=swap");

/* ------------------------------------------------
   🎨 VARIABLES
------------------------------------------------ */
:root {
  --color-primary: #02a7fe; /*60% of UI #2a79fc*/
  --color-secondary: #2a79fc; /*30% of UI #02a7fe*/
  --color-accent: #f26838; /*10% of UI*/
  --color-bg: #f7f5ff;
  --color-card-bg: #ffffff;
  --color-text: #1e1e2f;
  --color-muted-text: #b5b3c9;
  --color-hover-pink: #e22e8c;

  --color-hover: #00e5ff;

  --color-primary-dark: #3220b2;

  --star-filled: #ffcf48;
  --star-empty: #dadada;
  --star-highlight: #c89bff;
  --star-hover: #e6bfff;

  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);

  --border-radius: 12px;

  --font-body: "Segoe UI", "Helvetica Neue", sans-serif;
  --font-header: "Playfair Display", serif;

  --font-size-sm: 0.9rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.3rem;
  --font-size-xl: 3rem;
}
/* =================================================
Global CSS
================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.star {
  font-size: 1.3rem;
}

.star.filled {
  color: var(--star-filled);
}

.star.empty {
  color: var(--star-empty);
  letter-spacing: 0.15rem;
}
/* =================================================
   🗂 ARCHIVE STYLES
================================================= */
.brew-archive {
  background: linear-gradient(to bottom, var(--color-hero-bg), #e8e5dc);
  padding: 4rem 2rem;
}

.brew-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.brew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 10px;
  overflow: hidden;
}

.brew-archive-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brew-archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.brew-archive-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.brew-card-content {
  padding: 0.75rem 1rem;
}

.brew-archive-title {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-dark-text);
  text-align: center;
  padding: 0.75rem 1rem;
}

.brew-archive-rating {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.brew-archive-abv {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: center;
  font-weight: bold;
  color: #333;
  margin: 0.5rem 0 1rem;
}

.archive-title {
  text-align: center;
  font-size: var(--font-size-xl);
  font-family: var(--font-header);
  font-weight: 700;
  color: var(--color-dark-text);
  margin-bottom: 2rem;
}

.archive-title::after {
  content: "";
  display: block;
  width: 500px;
  background-color: var(--color-primary);
  height: 4px;
  border-radius: 4px;
  margin: 1rem auto 2rem;
}
.brew-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.brew-card-link:hover .brew-archive-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .archive-title::after {
    width: 200px;
  }
}

/* =================================================
   🍾 SINGLE BREW PAGE
================================================= */
.brew-hero img {
  width: 100%;
  height: 800px;
  display: block;
  object-fit: cover;
}

.brew-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  max-width: none;
}

.brew-single-container {
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: none;
  position: relative;
}

.brew-details-card {
  width: 100vw;
  background: white;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  margin-left: calc(-50vw + 50%);
  margin-top: -100px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  z-index: 3;
}

.brew-single-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 2;
  animation: popFade 0.9s ease-out forwards;
}
@media (max-width: 768px) {
  .brew-single-title {
    font-size: 2rem;
    top: 30%;
  }
}

@keyframes popFade {
  0% {
    transform: translate(-50%, -60%) scale(0.9);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.card-top-curve {
  position: absolute;
  top: -80px;
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.card-top-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ------------------------------------------------
   👇 See More Button
------------------------------------------------ */
.see-more-button {
  position: absolute;
  bottom: 6rem;
  left: 53%;
  transform: translateX(-50%);
  font-size: 2.25rem;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 5;
}

.see-more-button:hover {
  background-color: var(--color-accent);
  transform: translateX(-50%) scale(1.1);
}

/* ------------------------------------------------
   📊 Brew Meta Stats
------------------------------------------------ */
.brew-meta-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  font-size: 1.05rem;
  padding: 1rem;
  background: var(--color-light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-right: 50px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid white;
  margin-bottom: 0.5rem;
}
.meta-item:last-child {
  margin-bottom: 0; /* remove gap if last one */
}

.label {
  font-weight: 600;
  color: #303030;
}

.value {
  color: var(--color-primary);
}
.value[type="text"],
.value[type="date"],
.value,
textarea.value {
  width: 100%;
  box-sizing: border-box;
}
/* ------------------------------------------------
   🧪 Ingredients
------------------------------------------------ */
.brew-ingredients h2 {
  font-size: 1.75rem;
  color: var(--color-secondary);
  font-family: var(--font-header);
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

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

.ingredient-card {
  background: var(--color-light-bg);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s ease;
}

.ingredient-card:hover {
  transform: scale(1.05);
}

.ingredient-card .amount {
  font-weight: 600;
  color: #444;
}

.ingredient-card .name {
  color: var(--color-primary);
  margin-top: 0.25rem;
}

/* ------------------------------------------------
   🧪 Title + Rating + Tasting Notes
------------------------------------------------ */
.brew-detail-title {
  font-size: 4rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.rating-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.5rem;
  column-gap: 1rem;
  width: 100%;
  text-align: left;
}
.rating-card {
  background: var(--color-light-bg);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  text-align: center;
}

.rating-card .rating {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
}
.rating-card .tasting-notes {
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.6;
  font-style: italic;
}
.rating-label,
.tasting-notes-label {
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #444;
  margin-bottom: 0.25rem;
}
.rating-grid.single-rating-card {
  display: flex !important;
  justify-content: center;
  gap: 1rem;
}

/* ------------------------------------------------
Header 
------------------------------------------------*/

.site-header {
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.site-header__logo img {
  max-height: 100px;
  width: auto;
  display: block;
}
.site-header__title {
  font-family: var(--font-header);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}
.custom-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.site-header a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
}

.site-header__logo {
  justify-self: start;
}
.site-header__left {
  flex: 1;
  justify-content: flex-start;
}
.site-header__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.site-header__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  z-index: 1;
  max-width: 60%;
}

.nav-link a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.nav-link a:hover {
  background-color: var(--color-primary);
  color: white;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 820px) {
  .site-header__container {
    flex-direction: row;
  }

  .custom-nav {
    display: none;
    flex-direction: row;
    position: absolute;
    top: 100%;
    right: 1rem;
    background-color: white;
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    z-index: 9;
  }

  .custom-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .site-header__title {
    font-size: 1.75rem;
  }
}
/* =================================================
   ➕ PAGE: Add Brew Form
================================================= */
.form-title {
  text-align: center;
  font-family: var(--font-header);
  color: #000;
  font-size: var(--font-size-xl);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin: 1rem 1rem;
}
.form-title::after {
  content: "";
  display: block;
  width: 500px;
  max-width: 90%;
  background-color: var(--color-primary);
  height: 4px;
  border-radius: 4px;
  margin: 1rem auto 2rem;
}
.value-add-brew {
  color: #303030;
}
.label-add-brew {
  font-weight: 600;
  color: #303030;
}
.form-layout {
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
.form-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  overflow: hidden;
}
.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.form-content {
  flex: 1;
  justify-content: center;
  min-width: 300px;
  max-width: 50%;
  padding: 2rem;
  background-color: white;
}
.add-brew-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.05rem;
  padding: 1rem;
  background: var(--color-light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-right: 50px;
}
.brew-form-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid white;
  margin-bottom: 0.5rem;
}
.brew-form-table {
  display: block;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid white;
  margin-bottom: 0.5rem;
}
.ingrediant-label {
  font-size: 2rem;
  font-weight: 600;
  color: #303030;
  margin-bottom: 1rem;
}
#ingredients-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 1rem;
  table-layout: auto;
}
#ingredients-table th,
#ingredients-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.95rem;
}
#ingredients-table thead {
  background-color: var(--color-primary);
  color: white;
}
#ingredients-table tr:last-child td {
  border-bottom: none;
}
#ingredients-table input[type="text"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 0.5rem;
}
#ingredients-table .remove {
  margin-top: 1rem;
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background-color 0.2s ease;
}
#ingredients-table .remove:hover {
  background-color: var(--color-accent);
}
#add-ingredient {
  margin-top: 1rem;
  background: var(--color-primary);
  color: white;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: background 0.2s ease;
  max-height: 100px;
}
#add-ingredient:hover {
  background: var(--color-accent);
}
.submit-brew-button {
  margin-top: 1rem;
  background-color: var(--color-secondary);
  color: white;
  border: none;
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background-color 0.2s ease;
}
.submit-brew-button:hover {
  background: #e22e8c;
}

/* =================================================
   🦶 SITE FOOTER
================================================= */
.site-footer {
  background-color: #1e1e2f;
  color: var(--color-muted-text);
  padding: 2rem;
  font-family: var(--font-body);
}
.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.site-footer__logo {
  justify-content: flex-end;
}
.site-footer__logo img {
  max-height: 60px;
  max-height: 150px;
  width: auto;
  height: auto;
  display: block;
}
.footer-links a {
  color: var(--color-muted-text);
  margin-right: 1.25rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--color-primary);
}
.site-footer__credit {
  text-align: left;
}

/* =================================================
   📱 RESPONSIVE: Mobile Optimizations
================================================= */
@media (max-width: 768px) {
  .form-layout {
    flex-direction: column;
    height: auto;
  }
  .form-content {
    max-width: 100%;
    padding: 1rem;
  }
  .form-image {
    max-width: 100%;
    height: 250px;
  }
  .add-brew-form {
    margin-right: 0;
  }
  .brew-meta-stats,
  .rating-grid,
  .ingredients-grid {
    grid-template-columns: 1fr !important;
  }
  .site-header__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .see-more-button {
    bottom: 2rem;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .submit-brew-button,
  #add-ingredient {
    width: 100%;
    font-size: 1rem;
  }
  #ingredients-table,
  #ingredients-table th,
  #ingredients-table td {
    display: block;
    width: 100%;
  }
  #ingredients-table thead {
    display: none;
  }
  #ingredients-table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
  }
  #ingredients-table td {
    text-align: left;
    padding: 0.5rem 0;
  }
  #ingredients-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.25rem;
  }
}
/* Index Styles */

/* ================================
   INDEX HERO SECTION
   ================================ */
.index-hero img {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
}

.index-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  max-width: none;
}
.index-hero-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;

  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 2;
  animation: popFade 0.9s ease-out forwards;
}
.index-hero-subheading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 2;
  animation: popFade 0.9s ease-out forwards;
}
.index-hero-button {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  background: var(--color-primary);
  color: white;
  border-radius: 25%;
  width: 150px;
  height: 80px;
  border: none;
  display: flex;
  z-index: 5;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.index-hero-button:hover {
  background: var(--color-hover-pink);
  color: white;
}
@media (max-width: 1700px) {
  .index-hero-title {
    font-size: 3rem;
    top: 35%;
    padding: 0.5rem;
  }

  .index-hero-subheading {
    font-size: 2rem;
    top: 50%;
    padding: 0.5rem;
  }

  .index-hero-button {
    top: 65%;
    font-size: 1rem;
    width: 120px;
    height: 60px;
  }
}
@media (max-width: 1300px) {
  .index-hero-title {
    font-size: 2.5rem;
    min-width: 500px;
    top: 35%;
    padding: 0.5rem;
  }

  .index-hero-subheading {
    font-size: 1.5rem;
    top: 50%;
    padding: 0.5rem;
  }

  .index-hero-button {
    top: 65%;
    font-size: 1rem;
    width: 120px;
    height: 60px;
  }
}
@media (max-width: 1000px) {
  .index-hero-title {
    font-size: 2.5rem;
    min-width: 500px;
    top: 35%;
    padding: 0.5rem;
  }

  .index-hero-subheading {
    font-size: 1.5rem;
    top: 50%;
    padding: 0.5rem;
  }

  .index-hero-button {
    top: 65%;
    font-size: 1rem;
    width: 120px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .index-hero-title {
    font-size: 2rem;
    top: 35%;
    padding: 0.5rem;
  }

  .index-hero-subheading {
    font-size: 1.5rem;
    top: 50%;
    padding: 0.5rem;
  }

  .index-hero-button {
    top: 65%;
    font-size: 1rem;
    width: 120px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .index-hero-title {
    font-size: 1.5rem;
    top: 30%;
  }

  .index-hero-subheading {
    font-size: 1rem;
    top: 45%;
  }

  .index-hero-button {
    top: 60%;
    font-size: 0.9rem;
    width: 100px;
    height: 50px;
  }
}
/* ================================
   INDEX HERO SECTION End
   ================================ */

/* ================================
   ABOUT ME SECTION Start
   ================================ */
.index-about-me-container {
  display: flex;
  justify-content: center; /* center the card horizontally */
  align-items: center;
  padding: 3rem 1rem;
}
.index-about-me-card {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 1em auto;
  padding-top: 3.5rem;
  position: relative;
}

.index-about-me-subheading {
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: Georgia, serif;
  max-width: 350px;
  margin: 0 auto 1.5rem auto;
}

.index-about-me-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  position: relative;
  z-index: 1;
}

.index-about-me-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.index-about-me-content {
  flex: 1;
  max-width: 600px;
  text-align: center;
  margin-top: -4rem; /* this pulls the text over the image */
  z-index: 2;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  position: relative;
}

.index-about-me-header {
  font-size: 2.5rem;
  margin-bottom: 5rem;
}
.index-about-me-button {
  background: var(--color-primary);
  max-width: 300px;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.index-about-me-button:hover {
  background: var(--color-hover-pink);
}

@media (max-width: 500px) {
  .index-about-me-header {
    font-size: 1.5rem;
    right: 0.5rem;
  }
}
@media (max-width: 600px) {
  .index-about-me-card {
    flex-direction: column;
    padding-top: 5rem;
  }

  .index-about-me-header {
    position: static;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .index-about-me-subheading,
  .index-about-me-image {
    max-width: 100%;
    flex: unset;
  }
}

/* ================================
   ABOUT ME SECTION End
   ================================ */

.index-discover-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 1rem; /* space between cards */
  padding: 1rem;
}
.index-discover-card {
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}



.custom-login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  min-height: 100vh;
  background: #f5f5f5;
}

.custom-login-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.login-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.login-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.login form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login input[type="text"],
.login input[type="password"] {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.login input[type="submit"] {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login input[type="submit"]:hover {
  background-color: var(--color-primary-dark, #0055aa);
}