@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Black_0.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'AA Stetica';
  src: url('fonts/AA Stetica Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

/* Custom styles for the close icon */
.mobile-menu-open .menu-icon {
  display: none;
}
.mobile-menu-open .close-icon {
  display: block;
}
.close-icon {
  display: none;
}

/* Notion-like styles with blue theme */
:root {
  --primary-blue: #189cdf;
  --primary-blue-dark: #1584bf;
  --primary-blue-light: #e6f4fa;
  --text-primary: #2c3e50;
  --text-secondary: #4a5568;
  --bg-light: #f8fafc;
}

body {
  font-family: 'AA Stetica', sans-serif;
  background-color: #ffffff;
  color: var(--text-primary);
}

.notion-card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.notion-card:hover {
  box-shadow: rgba(24, 156, 223, 0.1) 0px 0px 0px 1px,
    rgba(24, 156, 223, 0.1) 0px 2px 4px;
}

.notion-button {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
  color: #189cdf;
  cursor: pointer;
}

.notion-button:hover {
  background: #f7f7f7;
}

.notion-button-primary {
  background: #189cdf;
  color: #ffffff;
  border: none;
}

.notion-button-primary:hover {
  background: #1584bf;
}

.notion-heading {
  font-family: 'AA Stetica', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.notion-text {
  font-family: 'AA Stetica', sans-serif;
  font-weight: normal;
  color: var(--text-secondary);
  line-height: 1.5;
}

.notion-nav {
  border-bottom: 1px solid #e9e9e9;
  background: #ffffff;
}

.notion-nav-link {
  font-family: 'AA Stetica', sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.notion-nav-link:hover {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.notion-section {
  padding: 48px 0;
}

.notion-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.notion-grid {
  display: grid;
}

/* FAQ styles */
.faq-item {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(24, 156, 223, 0.1);
  transform: translateY(-2px);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-button::before {
  opacity: 1;
}

.faq-button:hover {
  background: var(--primary-blue-light);
}

.faq-button:focus {
  outline: none;
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  color: var(--primary-blue);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding: 0 1.5rem;
  background: var(--primary-blue-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 1.5rem;
}

.faq-item.active .faq-button {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question-icon {
  width: 32px;
  height: 32px;
}

/* Video container styles */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.login-button:hover {
  transform: translateY(-2px);
}

.login-icon {
  width: 24px;
  height: 24px;
}

/* Fixed button for mobile */
.fixed-video-button {
  position: fixed;
  width: 250px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: none;
}

.fixed-video-button-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pointing-arrow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

@media (max-width: 768px) {
  .fixed-video-button {
    display: none; /* Initially hidden */
  }
  .pointing-arrow {
    display: none; /* Initially hidden */
  }
  /* Show button only when in login section */
  body.in-login-section .fixed-video-button,
  body.in-login-section .pointing-arrow {
    display: block;
  }
}

/* Hide Video Section and below when in Login Buttons section */
#video-section, #help-container, #pricing-section {
  display: none;
}

/* Show Video Section and below when not in Login Buttons section */
body:not(.in-login-section) #video-section,
body:not(.in-login-section) #help-container,
body:not(.in-login-section) #pricing-section {
  display: block;
} 