.title-font {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.download-button {
    width: 127%;
}

.body-font {
    font-family: 'Crimson Pro', Georgia, serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.white-text {
    color: white;
}

.hero-section {
  height: 100vh;
  background-image: url('Images/Cloud Nine.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
  position: relative;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.social-links {
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.social-link-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.social-link-footer:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-1px);
}

.demo-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #000;
}

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

.demo-actions .btn {
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.demo-actions .btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.demo-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.demo-actions .btn-outline-primary {
  border: 2px solid #007bff;
  color: #007bff;
  background: transparent;
}

.demo-actions .btn-outline-primary:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive adjustments for demo section */
@media (max-width: 768px) {
  .demo-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .demo-actions .btn:last-child {
    margin-bottom: 0;
  }
}