* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Georgia', serif;
  background-color: #faf8f5;
  color: #2c2c2c;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  font-size: 1.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-family: sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  transition: color 0.3s;
}

nav a.active, nav a:hover {
  color: #000;
  font-weight: bold;
}

main {
  padding: 60px 8%;
  min-height: 70vh;
}

h2 {
  font-size: 2.2rem;
  font-weight: normal;
  margin-bottom: 15px;
}

.subtitle {
  font-family: sans-serif;
  color: #777;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.card {
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #f0f0f0;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 8px;
}

.card p {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #444;
}

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 30px 8%;
  text-align: center;
  font-family: sans-serif;
  font-size: 0.85rem;
}

footer p {
  color: #888;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

.card {
  background-color: #ffffff;
  padding: 24px;
  border: 1px solid #f0f0f0;
  width: 300px; /* Fixed card width prevents overflow */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 8px;
  white-space: nowrap; /* Keeps heading on one line */
}

.card p {
  font-family: sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
}
/* Form Container Styles */
.form-container {
  max-width: 400px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border: 1px solid #eaeaea;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-family: sans-serif;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-family: sans-serif;
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 1px solid #1a1a1a;
}

.form-group textarea {
  resize: vertical;
  height: 120px;
}

.full-btn {
  width: 100%;
}

/* Contact Page Layout */
.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  font-family: sans-serif;
  color: #555;
}

.contact-info h3 {
  font-family: 'Georgia', serif;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-form {
  flex: 1.5;
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border: 1px solid #eaeaea;
}
/* Card Image Styles */
.card-img {
  width: 100%;
  height: 220px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img img {
  transform: scale(1.05); /* Subtle zoom effect on hover */
}

/* Button Click Animation */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, background-color 0.2s ease;
}

.btn:hover {
  background-color: #444;
}

/* Push down effect on click */
.btn:active {
  transform: scale(0.95);
}
/* Card Container Base Style */
.card {
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #eaeaea;
  border-radius: 8px; /* Smooth rounded corners */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* Subtle base shadow */
  
  /* Smooth transition for hover effects */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Animation */
.card:hover {
  transform: translateY(-8px) scale(1.02); /* Moves up slightly and scales larger */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Elevates shadow depth on hover */
}

/* Image Container */
.card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Optional Image Zoom inside Card */
.card:hover .card-img img {
  transform: scale(1.05);
}
/* Card Container Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Individual Card Styling */
.card {
  background-color: #ffffff;
  padding: 24px 20px;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Zoom */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.card-img {
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fcfcfc;
  border-radius: 4px;
}

.card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

/* Text & Typography */
.card-info {
  width: 100%;
  flex-grow: 1;
}

.card h3 {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: normal;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.card .notes {
  font-family: sans-serif;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 48px; /* Keeps text height consistent across cards */
}

.card .price {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 20px;
}

/* Add to Cart Button */
.btn {
  width: 100%;
  padding: 12px 0;
  background-color: #1c1c1c;
  color: #ffffff;
  border: none;
  font-family: sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background-color: #333333;
}

.btn:active {
  transform: scale(0.97);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Georgia', serif;
  background-color: #fafafa;
  color: #1a1a1a;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #555;
  font-family: sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a.active, nav a:hover {
  color: #000;
}

main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 8px;
}

.subtitle {
  font-family: sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 40px;
}

/* Strict 3-Column Grid Layout */
.grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
  width: 100%;
}

/* Card Container & Hover Animation */
.card {
  background-color: #ffffff;
  padding: 24px 20px;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Image Display */
.card-img {
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fcfcfc;
  border-radius: 4px;
}

.card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-info {
  flex-grow: 1;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: normal;
  margin-bottom: 10px;
}

.card .notes {
  font-family: sans-serif;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.card .price {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 20px;
}

/* Full Width Button */
.btn {
  width: 100%;
  padding: 12px 0;
  background-color: #1c1c1c;
  color: #ffffff;
  border: none;
  font-family: sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background-color: #333;
}

.btn:active {
  transform: scale(0.97);
}

footer {
  text-align: center;
  padding: 30px;
  font-family: sans-serif;
  font-size: 0.75rem;
  color: #888;
  border-top: 1px solid #eaeaea;
  margin-top: 60px;
}
/* Flexible Grid that handles 3, 5, 6, 9+ items automatically */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  width: 100%;
}

/* Card Styling */
.card {
  background-color: #ffffff;
  padding: 24px 20px;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
/* Forces 3 Equal Columns Side-by-Side */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Card Styling */
.card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.card-img {
  width: 100%;
  height: 240px;
  margin-bottom: 16px;
  background-color: #f8f8f8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

/* Button Styling */
.btn {
  width: 100%;
  padding: 12px 0;
  background-color: #1c1c1c;
  color: #ffffff;
  border: none;
  font-family: sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background-color: #333;
}

.btn:active {
  transform: scale(0.97);
}
/* Empty Cart Container */
.cart-container {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.empty-cart-card {
  text-align: center;
  max-width: 480px;
  width: 100%;
  background-color: #ffffff;
  padding: 50px 30px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cart-icon {
  margin-bottom: 20px;
  display: inline-block;
  opacity: 0.85;
}

.empty-cart-card h2 {
  font-family: serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.cart-subtitle {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Primary Action Button */
.btn-primary {
  display: inline-block;
  width: 100%;
  padding: 16px 0;
  background-color: #1c1c1c;
  color: #ffffff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}
/* Page Background & Layout */
.login-page {
  background-color: #f5f7fb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

.login-container {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.auth-card {
  background-color: #1e293b;
  padding: 2.5rem;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.input-group {
  margin-bottom: 1.25rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.input-group input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #334155;
  background-color: #0f172a;
  color: #fff;
  box-sizing: border-box;
}

.primary-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.social-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #ffffff;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

.divider {
  text-align: center;
  margin: 1.5rem 0;
  color: #64748b;
  font-size: 0.875rem;
}

.auth-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.auth-link a {
  color: #3b82f6;
  text-decoration: none;
}
/* Reset & Base Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body.login-page {
  background-color: #0b111e;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Navigation */
header {
  width: 100%;
  padding: 24px 40px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.nav-container ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-container a {
  color: #8a99ad;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.nav-container a:hover,
.nav-container a.active {
  color: #ffffff;
}

/* Auth Card Container */
.auth-overlay {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 40px;
}

.auth-card {
  background: #151e2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.auth-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
  text-align: center;
}

.subtitle {
  color: #718096;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 24px;
}

.hidden {
  display: none !important;
}

/* Form Controls */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  color: #a0aec0;
  letter-spacing: 0.5px;
}

.auth-input {
  width: 100%;
  padding: 12px 14px;
  background: #0b111e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.auth-input:focus {
  outline: none;
  border-color: #3182ce;
}

/* Form Actions & Links */
.form-actions {
  display: flex;
  justify-content: flex-end;
}

.forgot-link {
  color: #718096;
  font-size: 0.8rem;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
  color: #a0aec0;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 12px;
  background: #2563eb;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background: #1d4ed8;
}

/* Divider & Toggle Link */
.divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #718096;
  font-size: 0.75rem;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider span {
  padding: 0 10px;
}

.switch-text {
  margin-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #718096;
}

.switch-text a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 600;
}

.switch-text a:hover {
  text-decoration: underline;
}
/* Base Page Reset & Light Background */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body, body.login-page {
  /* Clean White-to-Light-Blue Gradient Background */
  background: linear-gradient(135deg, #ffffff 0%, #e6f0fa 50%, #dbeafe 100%);
  background-attachment: fixed;
  color: #1e293b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation */
header {
  width: 100%;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
}

.nav-container ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-container a {
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-container a:hover,
.nav-container a.active {
  color: #0284c7;
}

/* Expanded Auth Overlay & Larger Sign-In Card */
.auth-overlay {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.auth-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 56px 48px; /* Increased padding */
  width: 100%;
  max-width: 520px;   /* Expanded width */
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
}

.auth-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;   /* Larger heading */
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
  text-align: center;
}

.subtitle {
  color: #64748b;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 32px;
}

.hidden {
  display: none !important;
}

/* Form Controls */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  color: #334155;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.auth-input {
  width: 100%;
  padding: 16px 18px; /* Larger inputs */
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #0f172a;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.auth-input:focus {
  outline: none;
  border-color: #0284c7;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: flex-end;
}

.forgot-link {
  color: #0284c7;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Primary Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: #0284c7;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 12px;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background: #0369a1;
}

/* Divider & Links */
.divider {
  display: flex;
  align-items: center;
  margin: 28px 0;
  color: #94a3b8;
  font-size: 0.8rem;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.divider span {
  padding: 0 12px;
}

.switch-text {
  margin-top: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
}

.switch-text a {
  color: #0284c7;
  text-decoration: none;
  font-weight: 600;
}

.switch-text a:hover {
  text-decoration: underline;
}
/* Expanded Main Overlay Section */
.auth-overlay {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  width: 100%;
}

/* Significantly Larger Sign-In Card */
.auth-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 64px 56px;      /* Generous internal spacing */
  width: 90%;
  max-width: 680px;        /* Increased max width from 420px to 680px */
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
}

/* Larger Typography */
.auth-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;      /* Scaled up title */
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
  text-align: center;
}

.subtitle {
  color: #64748b;
  font-size: 1.1rem;      /* Larger subtitle */
  text-align: center;
  margin-bottom: 40px;
}

/* Expanded Inputs & Form Controls */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group label {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 600;
}

.auth-input {
  width: 100%;
  padding: 18px 20px;     /* Taller input fields */
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  color: #0f172a;
  font-size: 1.1rem;      /* Larger text inside inputs */
  box-sizing: border-box;
}

/* Prominent Action Button */
.btn-submit {
  width: 100%;
  padding: 20px;          /* Larger submit button */
  background: #0284c7;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  margin-top: 12px;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background: #0369a1;
}

/* Scaled Footer Text */
.switch-text {
  margin-top: 36px;
  text-align: center;
  font-size: 1.05rem;
  color: #64748b;
}

.switch-text a {
  color: #0284c7;
  font-weight: 600;
}
/* Contact Page Layout Expansion */
.contact-container {
  max-width: 1200px;
  width: 90%;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-header p {
  font-size: 1.2rem;
  color: #64748b;
}

/* Side-by-Side Main Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Info Side (Left) */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 20px;
}

.info-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.info-block p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
}

/* Larger Contact Form Card (Right) */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 56px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 0.95rem;
  color: #1e293b;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  color: #0f172a;
  font-size: 1.05rem;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0284c7;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.btn-send {
  width: 100%;
  padding: 20px;
  background: #0f172a;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 8px;
}

.btn-send:hover {
  background: #0284c7;
}
/* Center Navigation Bar */
header {
  width: 100%;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center; /* Centers items inside container */
  align-items: center;
  margin: 0 auto;
}

.nav-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 40px; /* Space out the centered items */
  padding: 0;
  margin: 0;
}

.nav-container a {
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-container a:hover,
.nav-container a.active {
  color: #0284c7;
}
header {
  width: 100%;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Force AURA to stay on the far left */
.logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.logo a {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #0f172a;
  text-decoration: none;
}

/* Center the navigation bar */
.nav-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container ul,
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-container a {
  color: #475569;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-container a:hover,
.nav-container a.active {
  color: #0284c7;
}
header {
  width: 100%;
  padding: 28px 60px; /* Increased vertical and side padding */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Much Larger AURA Logo on Left Corner */
.logo {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.logo a {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem; /* Scaled up from 1.8rem */
  font-weight: 800;
  letter-spacing: 5px;
  color: #0f172a;
  text-decoration: none;
}

/* Centered Navigation Container */
.nav-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container ul,
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 48px; /* Increased space between items */
  margin: 0;
  padding: 0;
}

/* Larger Links Text */
.nav-container a {
  color: #334155;
  text-decoration: none;
  font-size: 1.15rem; /* Scaled up from 0.85rem */
  letter-spacing: 2px;
  font-weight: 1700;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-container a:hover,
.nav-container a.active {
  color: #0284c7;
}
header {
  width: 100%;
  padding: 40px 80px; /* Generous top/bottom & side padding */
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Extra Large AURA Logo on Far Left Corner */
.logo {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
}

.logo a {
  font-family: 'Cinzel', serif;
  font-size: 3.8rem; /* Extra large logo */
  font-weight: 800;
  letter-spacing: 6px;
  color: #0f172a;
  text-decoration: none;
}

/* Centered Layout Container */
.nav-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container ul,
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 64px; /* Wide spacing between links */
  margin: 0;
  padding: 0;
}

/* Extra Large Nav Links */
.nav-container a {
  color: #1e293b;
  text-decoration: none;
  font-size: 1.6rem; /* High visibility text */
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.nav-container a:hover,
.nav-container a.active {
  color: #0284c7;
  transform: scale(1.05);
}
/* Styling & Base Animations for Nav Links */
.nav-container a {
  position: relative;
  display: inline-block;
  color: #1e293b;
  text-decoration: none;
  font-size: 1.6rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 12px;
  overflow: hidden;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Glowing Underline on Hover */
.nav-container a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-container a:hover {
  color: #0284c7;
  transform: translateY(-2px);
}

.nav-container a:hover::after {
  width: 100%;
}

/* Interactive Click Effect (Active State) */
.nav-container a:active {
  transform: scale(0.92);
  transition: transform 0.1s ease-out;
}

/* Click Ripple Pulse Layer */
.nav-container a .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.35);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
/* =========================================
   CLEAN SIGN-IN & AUTHENTICATION STYLES
   ========================================= */

.login-body {
  background-color: #f4f6f9;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.top-announcement {
  background-color: #0b57d0;
  color: #ffffff;
  text-align: center;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
}

.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.brand-logo a {
  font-size: 22px;
  font-weight: 700;
  color: #0b57d0;
  text-decoration: none;
}

.nav-login-btn {
  background-color: #0b57d0;
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.login-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.login-card {
  background: #ffffff;
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.card-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
}

.custom-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-bottom: 20px;
}

.custom-google-btn:hover {
  background-color: #f8f9fa;
  border-color: #d2e3fc;
}

.divider-line {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #9ca3af;
  font-size: 12px;
}

.divider-line::before,
.divider-line::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
}

.divider-line span {
  padding: 0 10px;
}

.input-field-group {
  text-align: left;
  margin-bottom: 18px;
}

.input-field-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.input-field-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.input-field-group input:focus {
  border-color: #0b57d0;
  box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.1);
}

.forgot-pass-align {
  text-align: right;
  margin-top: 6px;
}

.forgot-pass-align a {
  font-size: 13px;
  color: #0b57d0;
  text-decoration: none;
  font-weight: 500;
}

.blue-submit-btn {
  width: 100%;
  background-color: #0b57d0;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.blue-submit-btn:hover {
  background-color: #0948b3;
}

.register-footer-text {
  font-size: 14px;
  color: #6b7280;
  margin-top: 25px;
}

.register-footer-text a {
  color: #0b57d0;
  font-weight: 600;
  text-decoration: none;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
}
/* =========================================
   SIGN-IN PAGE SPECIFIC STYLES
   ========================================= */

.signin-page-body {
  background-color: #f8fafc;
}

.signin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.signin-card {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.signin-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.signin-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 25px;
}

.google-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}

.google-auth-btn:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
}

.signin-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #94a3b8;
  font-size: 12px;
}

.signin-divider::before,
.signin-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.signin-divider span {
  padding: 0 10px;
}

.form-group {
  text-align: left;
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.forgot-link-align {
  text-align: right;
  margin-top: 6px;
}

.forgot-link-align a {
  font-size: 12px;
  color: #475569;
  text-decoration: none;
}

.forgot-link-align a:hover {
  text-decoration: underline;
}

.signin-submit-btn {
  width: 100%;
  background-color: #0f172a;
  color: #ffffff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.2s;
}

.signin-submit-btn:hover {
  background-color: #1e293b;
}

.signin-footer {
  font-size: 13px;
  color: #64748b;
  margin-top: 25px;
}

.signin-footer a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.signin-footer a:hover {
  text-decoration: underline;
}
/* Google Account Switcher Modal */
.g-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.g-modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: Roboto, Arial, sans-serif;
}

.g-header {
  text-align: center;
  margin-bottom: 20px;
}

.g-header h3 {
  font-size: 18px;
  margin: 10px 0 2px;
  color: #202124;
}

.g-header p {
  font-size: 13px;
  color: #5f6368;
}

.g-account-list {
  border-top: 1px solid #dadce0;
  border-bottom: 1px solid #dadce0;
}

.g-account-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
}

.g-account-item:hover {
  background: #f8f9fa;
}

.g-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.g-avatar.g-icon {
  background: #f1f3f4;
  color: #5f6368;
  font-size: 18px;
}

.g-details {
  display: flex;
  flex-direction: column;
}

.g-name {
  font-size: 14px;
  font-weight: 500;
  color: #3c4043;
}

.g-email {
  font-size: 12px;
  color: #5f6368;
}

.g-custom-input {
  margin-top: 15px;
}

.g-custom-input input {
  width: 100%;
  padding: 10px;
  border: 1px solid #dadce0;
  border-radius: 6px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.g-custom-input button {
  width: 100%;
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
}

.g-close-btn {
  width: 100%;
  margin-top: 15px;
  background: none;
  border: none;
  color: #5f6368;
  cursor: pointer;
  font-size: 13px;
}