/* styles.css */

/* Define color variables based on your new palette */
:root {
  /* Brand Colors */
  --primary: #4b986c;               /* Brand Primary */
  --secondary: #928163;             /* Brand Secondary */
  --tertiary: #6d604a;              /* Brand Tertiary */
  --alternate: #17282e;             /* Brand Alternate */

  /* Accent Colors */
  --accent-1: #4d4b986c;
  --accent-2: #4d928163;
  --accent-3: #4c6d604a;
  --accent-4: #b20b191e;

  /* Utility Colors */
  --primary-text: #ffffff;
  --secondary-text: #658593;
  --primary-background: #0b191e;
  --secondary-background: #0d1e23;
}

/* Reset default margins and paddings */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* Body styles for centering the content */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--primary-background);
  color: var(--primary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

/* Container width */
.container {
  width: 100%;
  max-width: 800px;
}

/* Centered content with padding */
.content {
  text-align: center;
  padding: 24px;
}

/* Logo image styling */
.logo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto 32px;
  display: block;
}

/* Headline text styles */
.coming-soon-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 16px;
}

.sub-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.description {
  font-size: 1rem;
  color: var(--secondary-text);
  margin-bottom: 32px;
}

/* Notify card styling */
.notify-card {
  background-color: var(--secondary-background);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.notify-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.email-label {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 4px;
}

input[type="email"] {
  padding: 12px;
  border: 1px solid var(--alternate);
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  background-color: var(--primary-background);
  color: var(--primary-text);
}

/* Notify button styles */
.notify-button {
  padding: 12px;
  background-color: var(--primary);
  color: var(--primary-text);
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.notify-button:hover {
  background-color: #40815c; /* Darker shade of the primary color */
}

/* Social icons row */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

/* Social icon button styling */
.icon-button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: var(--primary-background);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Modal overlay */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(11, 25, 30, 0.8); /* Semi-transparent primary background */
}

/* Modal content container */
.modal-content {
  background-color: var(--secondary-background);
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  text-align: center;
}

/* Modal header */
.modal-content h1 {
  font-family: 'Urbanist', sans-serif;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Modal text */
.modal-content p {
  color: var(--primary-text);
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Modal button styling */
.modal-content button {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: var(--primary);
  color: var(--primary-text);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.modal-content button:hover {
  background-color: #40815c; /* A darker shade of the primary color */
}

/* Footer text style */
footer p {
  font-size: 0.875rem;
  color: var(--secondary-text);
}
