/*
Theme Name: NomNote Landing
Description: Custom theme for NomNote app landing page
Version: 1.0
Author: Custom
*/

/* Import Google Fonts - Fallback to Yelp's font stack */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Inter', sans-serif;
  background: linear-gradient(120deg, #4fd47b 0%, #1b2b4a 60%);
  color: #fff;
  min-height: 100vh;
  line-height: 1.6;
}

/* Header Styles */
.site-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 4rem 0 6rem;
}

.site-logo {
  height: 260px;
  margin-top: 10rem;
}

.site-tagline {
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.9;
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Inter', sans-serif;
  color: #fff;
}

/* Main Content */
.site-main {
  width: 100%;
  margin: 8vh 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 6rem;
}

.hero-section {
  margin-bottom: 2.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Inter', sans-serif;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Inter', sans-serif;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Inter', sans-serif;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Inter', sans-serif;
  min-width: 300px;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-button {
  padding: 0.9rem 2rem;
  border-radius: 24px;
  border: none;
  background: #fff;
  color: #1b2b4a;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Inter', sans-serif;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.newsletter-button:hover {
  background: #f0f0f0;
}

.newsletter-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Status Messages */
.status-message {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Inter', sans-serif;
}

.status-success {
  background: rgba(76, 175, 80, 0.2);
}

.status-error {
  background: rgba(244, 67, 54, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-header {
    padding: 2rem 2rem 0 3rem;
  }
  
  .site-logo {
    height: 200px;
    margin-top: 5rem;
  }
  
  .site-main {
    padding-left: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .newsletter-button {
    width: 100%;
  }
  
  .newsletter-input {
    min-width: auto;
  }
}

/* WordPress Admin Bar Adjustment */
.admin-bar .site-header {
  padding-top: 6rem;
} 