:root {
  --primary: #c29f8c; /* Soft terracotta/beige/brown */
  --primary-dark: #8d6e63;
  --secondary: #3e2723; /* Dark brown for text */
  --accent: #f5f5f5; /* Light cream */
  --text-body: #4e342e;
  --overlay-bg: rgba(255, 255, 255, 0.85); /* Glass effect */
  --transition: all 0.4s ease;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Montserrat", sans-serif;
  --shadow-soft: 0 10px 30px rgba(62, 39, 35, 0.1);
  --shadow-hover: 0 15px 40px rgba(62, 39, 35, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: #efebe9;
  /* Simple placeholder background in case no image */
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(194, 159, 140, 0.1) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(141, 110, 99, 0.1) 0%,
      transparent 20%
    );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container & Layout */
.coming-soon-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 100vh; /* Full viewport height */
  position: relative;
  background: white;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05); /* Soft shadow framing */
}

/* Left Content Side */
.content-wrapper {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
}

/* Right Image Side (Using CSS simulation for now) */
.image-overlay {
  flex: 1;
  background-color: var(--primary);
  /* A nice pattern or gradient simulating leather texture/soft light */
  background-image: linear-gradient(
    135deg,
    #d7ccc8 25%,
    #efebe9 25%,
    #efebe9 50%,
    #d7ccc8 50%,
    #d7ccc8 75%,
    #efebe9 75%,
    #efebe9 100%
  );
  background-size: 20px 20px;
  position: relative;
  display: none; /* Hidden on mobile by default */
}

@media (min-width: 768px) {
  .image-overlay {
    display: block;
    /* If user adds an image later, this is where it goes:
       background-image: url('../img/handbag-bg.jpg'); 
       background-size: cover;
       background-position: center;
    */
    background: url("https://images.unsplash.com/photo-1591561954557-26941169b49e?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80")
      center/cover no-repeat; /* Fallback placeholder */
  }
}

/* Typography & Elements */
.logo-area {
  margin-bottom: 2rem;
  text-align: center; /* Center on mobile */
}

@media (min-width: 768px) {
  .logo-area {
    text-align: left;
  }
}

.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-top: 5px;
}

.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center horizontally */
  text-align: center;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .main-content {
    align-items: flex-start; /* Left align on desktop */
    text-align: left;
  }
}

h1.Title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400; /* Lighter weight often looks more elegant for large serif text */
  font-style: italic;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-body);
  margin-bottom: 2rem;
  font-weight: 300;
}

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .divider {
    margin: 0 0 2rem 0;
  }
}

.description {
  margin-bottom: 3rem;
  max-width: 400px;
  color: #6d4c41; /* Slightly lighter text */
}

/* Form Styles */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

@media (min-width: 480px) {
  .newsletter-form {
    flex-direction: row;
    border-bottom: 1px solid #d7ccc8;
    padding-bottom: 5px;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--secondary);
  border-bottom: 1px solid #d7ccc8; /* Mobile fallback */
}

@media (min-width: 480px) {
  .newsletter-form input {
    border-bottom: none;
  }
}

.newsletter-form input::placeholder {
  color: #a1887f;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  padding: 12px 25px;
  background-color: var(--secondary);
  color: white;
  border: none;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px; /* Mobile spacing */
}

@media (min-width: 480px) {
  .newsletter-form button {
    margin-top: 0;
  }
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

/* Social Links */
.social-links {
  margin-top: 3rem;
  display: flex;
  gap: 20px;
}

.social-links a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.social-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}

.social-links a:hover {
  color: var(--primary-dark);
}

.social-links a:hover::after {
  width: 100%;
}

/* Footer */
.footer {
  font-size: 0.75rem;
  color: #a1887f;
  margin-top: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    text-align: left;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUser 1s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUser {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
