/* PATH TO EXCEL Homepage Styles */
.pathtoexcel-homepage {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #334155;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #e0e7ff 100%);
}

.pte-container {
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.pte-header {
  padding: 1.5rem 0;
}

.pte-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pte-logo {
  height: 3rem;
  width: auto;
}

/* Hero Section */
.pte-hero {
  padding: 3rem 0;
  text-align: center;
}

.pte-hero-content {
  margin: 0 auto;
}

.pte-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pte-gradient-text {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.pte-hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Cards Grid */
.pte-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.pte-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pte-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pte-card-students {
  background: linear-gradient(135deg, #3b82f6, #4f46e5);
  color: white;
}

.pte-card-teachers {
  background: linear-gradient(135deg, #10b981, #0d9488);
  color: white;
}

.pte-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.pte-card-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
}

.pte-card-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(10px);
}

.pte-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pte-card-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.pte-features-list {
  margin-bottom: 2rem;
}

.pte-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.pte-check-icon {
  margin-right: 0.75rem;
  opacity: 0.8;
}

.pte-card-button {
  width: 100%;
  background: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pte-button-students {
  color: #3b82f6;
}

.pte-button-students:hover {
  background: #eff6ff;
  transform: scale(1.05);
}

.pte-button-teachers {
  color: #10b981;
}

.pte-button-teachers:hover {
  background: #ecfdf5;
  transform: scale(1.05);
}

.pte-arrow-icon {
  transition: transform 0.3s ease;
}

.pte-card-button:hover .pte-arrow-icon {
  transform: translateX(4px);
}

/* Features Section */
.pte-features {
  padding: 4rem 0;
}

.pte-features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pte-features-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.pte-features-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 32rem;
  margin: 0 auto;
}

.pte-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.pte-feature-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.pte-feature-card:hover {
  transform: translateY(-4px);
}

.pte-feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  transition: transform 0.3s ease;
}

.pte-feature-card:hover .pte-feature-icon {
  transform: scale(1.1);
}

.pte-feature-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.pte-feature-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.pte-feature-icon-orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.pte-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.pte-feature-description {
  color: #64748b;
}

/* QR Code / Hashtag Section Styles */
.pte-qr-section {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.pte-qr-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
  border: 2px solid #e0f2fe;
  transition: all 0.3s ease;
}

.pte-qr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

.pte-qr-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #3b82f6, #4f46e5);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.pte-qr-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.pte-qr-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.pte-hashtag-input-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pte-hashtag-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
}

.pte-hashtag-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.pte-hashtag-input::placeholder {
  text-transform: none;
  font-weight: normal;
}

.pte-hashtag-button {
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #3b82f6, #4f46e5);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}

.pte-hashtag-button:hover {
  background: linear-gradient(135deg, #2563eb, #4338ca);
  transform: scale(1.05);
}

.pte-hashtag-button:active {
  transform: scale(0.95);
}

.pte-hashtag-error {
  background: #fef2f2;
  color: #dc2626;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  border: 1px solid #fecaca;
}

.pte-hashtag-example {
  color: #6b7280;
  font-size: 0.8rem;
  font-style: italic;
}

.pte-hashtag-success {
  background: #f0fdf4;
  color: #16a34a;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  border: 1px solid #bbf7d0;
}
/* Footer */
.pte-footer {
  background: #1e293b;
  color: white;
  padding: 2rem 0;
  margin-top: 4rem;
}

.pte-footer-content {
  text-align: center;
}

.pte-footer-logo {
  margin-bottom: 1rem;
}

.pte-footer-logo-img {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.pte-footer-copyright {
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.pte-footer-support {
  color: #64748b;
  font-size: 0.875rem;
}

.pte-footer-link {
  color: #60a5fa;
  text-decoration: none;
}

.pte-footer-link:hover {
  color: #93c5fd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pte-hero-title {
    font-size: 2rem;
  }

  .pte-hero-subtitle {
    font-size: 1.125rem;
  }

  .pte-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pte-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pte-card-content {
    padding: 1.5rem;
  }
  
  .pte-qr-card {
    margin: 0 1rem;
    padding: 1.5rem;
  }

  .pte-hashtag-input-container {
    flex-direction: column;
  }

  .pte-hashtag-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pte-container {
    padding: 0 0.75rem;
  }

  .pte-hero {
    padding: 2rem 0;
  }

  .pte-hero-title {
    font-size: 1.75rem;
  }
}
