


/* ===============================
   Base Typography & Colors
================================= */
:root {
  --primary: #005b7f;
  --accent: #007fa3;
  --success: #2ecc71;
  --text: #1a2c48;
  --muted: #666;
  --bg-light: #f5f5f5;
  --bg-success: #e6f7f1;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--primary);
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

/* ===============================
   Header & Navigation
================================= */
/*header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}*/

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}



.logo {
  max-width: 180px;
  margin-bottom: 10px;
}

nav {
  width: 100%;
  text-align: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.nav-links li a.active {
  color: var(--primary);
}

/* ===============================
   Contact Section & Form
================================= */
.contact-section {
  max-width: 625px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
  resize: vertical;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

button[type="submit"] {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: var(--accent);
}

button[type="submit"]:active {
  transform: scale(0.98);
}

.form-footer {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-footer a {
  color: #0077cc;
  text-decoration: underline;
}

/* ===============================
   Success Message
================================= */
.success-message {
  margin-top: 20px;
  padding: 15px;
  background-color: var(--bg-success);
  border-left: 4px solid var(--success);
  color: var(--text);
  font-weight: 600;
}

/* ===============================
   Footer
================================= */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background-color: var(--bg-light);
  color: #3a4e6b;
}

/* ===============================
   Footer Links (Legal Navigation)
================================= */
footer p a {
  color: var(--text);
  text-decoration: none;
  margin: 0 8px;
  font-weight: 600;
}

footer p a:hover {
  color: var(--primary);
  text-decoration: underline;
}


/* ===============================
   Responsive Navigation & Form
================================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.show {
    display: flex;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    text-align: center;
  }
}

/* ===============================
   Other Sections (About, Services, Hero)
================================= */
.about-section,
.services-section,
.hero,
.value-prop {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-section h1,
.about-section h2,
.services-section h1,
.value-prop h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.about-section p,
.services-section p {
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-item h2 {
  margin-bottom: 10px;
  color: var(--primary);
}

.service-item p {
  margin: 0;
}

.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.value-prop p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
}


.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--accent);
}

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

.value-prop ul li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.value-prop ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* ===============================
   Legal Pages (Privacy Policy, Terms of Use)
================================= */
.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

ul {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

/* ===============================
   About Page Signature
================================= */
.signature {
  font-family: 'Allura', cursive;
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 2rem;
  text-align: left;
}

/* ===============================
   Homepage Entry Animation (Conditional Fade-In)
================================= */
html.fade-in body {
  opacity: 0;
  visibility: hidden;
  transition: opacity 10s ease; /* slowed from 0.8s to 2s */
}

html.fade-in body.visible {
  opacity: 1;
  visibility: visible;
}




/* ===============================
   Homepage Enhancements (Value Prop, CTA, Vendor Invite)
================================= */
.value-prop-highlight {
  background-color: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 40px;
}

.value-prop-highlight h2 {
  margin-bottom: 20px;
  color: var(--primary);
}


.value-prop-highlight p {
  text-align: center;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  max-width: 800px;
}


.homepage-cta {
  background-color: var(--bg-success);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 40px;
}

.homepage-cta h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

.homepage-cta p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.vendor-invite {
  background-color: #eef2f5;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #ccc;
  margin-top: 60px;
}

.vendor-invite h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

.vendor-invite p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ===============================
   Prelaunch Banner (Full Width)
================================= */
.prelaunch-banner {
  background-color: var(--bg-success);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #ccc;
  margin-bottom: 40px;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.banner-headline {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--primary);
  margin-bottom: 20px;
}

.prelaunch-banner p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.banner-cta {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.banner-cta:hover {
  background-color: var(--accent);
}

/* ===============================
   Gantt Chart Container
================================= */

/* ===============================
   Planner Section Styling
================================= */
.planner-section {
  background-color: var(--bg-success);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #ccc;
}

.planner-section h1 {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--primary);
  margin-bottom: 20px;
}

.planner-section p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
}

/* ===============================
   Frappe Gantt Overrides (Optional)
================================= */
.gantt .bar {
  fill: var(--primary);
}

.gantt .bar-progress {
  fill: var(--accent);
}

.gantt .bar-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  fill: #fff;
}

.gantt .grid-header {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  fill: var(--text);
}

.task-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.task-form .form-group {
  display: flex;
  flex-direction: column;
}

.task-form .form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1rem;
  font-family: var(--font-sans);
}

.task-form .form-group input,
.task-form .form-group select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  appearance: none;
}

.task-form .form-group select {
  height: 42px;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .task-form .form-grid {
    grid-template-columns: 1fr;
  }
}



.gantt .arrow {
  stroke: var(--accent);
  stroke-width: 2;
}

.gantt-wrapper {
  overflow-x: auto;
  padding-bottom: 10px;
}

#gantt {
  height: 400px;
  margin-bottom: 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.pdf-actions {
  text-align: center;
  margin-bottom: 40px;
}

#download-pdf {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#download-pdf:hover {
  background-color: var(--accent);
}

/* Print optimization */
@media print {
  header, footer, .task-form, .pdf-actions {
    display: none;
  }

  #gantt {
    border: none;
    margin: 0;
  }

  body {
    background: white;
    color: black;
  }
}

.pdf-actions {
  text-align: center;
  margin-bottom: 40px;
}

#download-pdf {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#download-pdf:hover {
  background-color: var(--accent);
}

/* Print optimization */
@media print {
  body * {
    visibility: hidden;
  }

  .print-area, .print-area * {
    visibility: visible;
  }

  .print-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  header, footer, .task-form, .pdf-actions {
    display: none !important;
  }

  #gantt {
    border: none;
    margin: 0;
  }

  body {
    background: white;
    color: black;
  }
}

/* ===============================
   Logo Only
================================= */

.logo:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.enter-btn:hover {
  box-shadow: 0 0 10px rgba(0, 119, 204, 0.5);
}

/* ===============================
   Landing Page Only
================================= */

/* Container for logo and button */
.logo-container {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Base logo styling */
.logo {
  width: 200px;
  max-width: 90%;
}

/* ===============================
   Landing Page Enhancements
================================= */

.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Landing-specific logo size */
.landing .animated-logo {
  width: 400px;
  animation: fadeInScale 2s ease-in-out forwards;
}

/* Responsive logo scaling */
@media (max-width: 768px) {
  .landing .animated-logo {
    width: 240px;
  }
}

/* Button styling */
.enter-btn {
  display: block;
  margin: 24px auto;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background-color: #00a3b5;
  color: #ffffff;
  border: 2px solid #00a3b5;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 163, 181, 0.2);
}

/* Refined styling for landing page button */
.landing-btn {
  background-color: #00a3b5;
  border-color: #00a3b5;
  font-size: 0.9rem;
  padding: 8px 18px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 163, 181, 0.2);
}

/* Unified hover effect */
.landing-btn:hover {
  background-color: #00c2d1;
  border-color: #00c2d1;
  box-shadow: 0 5px 14px rgba(0, 194, 209, 0.3);
}


.enter-btn:hover {
  background-color: #00c2d1;
  border-color: #00c2d1;
  box-shadow: 0 5px 14px rgba(0, 194, 209, 0.3);
}

/* Animate only on landing page */
.landing .animated-btn {
  opacity: 0;
  animation: slideUp 2s ease-in-out forwards, pulse 2s infinite;
  animation-delay: 2s;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Tagline styling */
.tagline {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Fade-out effect */
body {
  /* no opacity here */
}

html.fade-in body {
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s ease;
}

html.fade-in body.visible {
  opacity: 1;
  visibility: visible;
}


/* Entry animations */
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Fullscreen center container */
.landing-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  flex-direction: column;
}

