/* Dunys Landing Page Styles */

/* CSS Reset & Variables */
:root {
  --primary-orange: #E5A422;
  --primary-orange-hover: #D49520;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --bg-white: #ffffff;
  --border-gray: #e0e0e0;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* Main Container */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header / Logo Section */
.header {
  padding-top: 60px;
  text-align: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.05) rotate(5deg);
}

.logo-text {
  font-family: var(--font-main);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 60px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  max-width: 500px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* Email Form */
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.email-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: var(--font-main);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-input::placeholder {
  color: #999;
}

.email-input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(229, 164, 34, 0.15);
}

.notify-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 500;
  color: white;
  background-color: var(--primary-orange);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.notify-btn:hover {
  background-color: var(--primary-orange-hover);
}

.notify-btn:active {
  transform: scale(0.98);
}

/* Footer */
.footer {
  padding: 40px 24px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: var(--primary-orange);
  transform: translateY(-2px);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.animate-delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .header {
    padding-top: 40px;
  }
  
  .logo-icon {
    width: 70px;
    height: 70px;
  }
  
  .hero {
    padding: 30px 20px 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .notify-form {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .header {
    padding-top: 80px;
  }
  
  .logo-icon {
    width: 90px;
    height: 90px;
  }
  
  .hero {
    padding: 50px 24px 80px;
  }
}
