* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.construction-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 50%, #f0f0f0 100%);
  position: relative;
}

.construction-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(209, 10, 146, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(68, 68, 68, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.content-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

/* Brand Section */

.brand-section {
  animation: fadeInDown 1s ease-out;
}

.brand-title {
  font-family: 'Poiret One', serif;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 12px;
  color: #444444;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.brand-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: #666666;
  font-weight: 300;
}

/* Icon Section */

.icon-section {
  animation: pulse 2s ease-in-out infinite;
}

.icon-section i {
  font-size: 5rem;
  color: #d10a92;
  filter: drop-shadow(0 4px 8px rgba(209, 10, 146, 0.2));
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Main Content */

.main-heading {
  font-family: 'Poiret One', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #444444;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.main-description {
  font-size: 1.1rem;
  color: #666666;
  font-weight: 300;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Newsletter Section */

.newsletter-section {
  animation: fadeInUp 1s ease-out 0.7s both;
}

.newsletter-title {
  font-family: 'Poiret One', serif;
  font-size: 1.8rem;
  color: #444444;
  font-weight: bold;
  letter-spacing: 1px;
}

.newsletter-text {
  font-size: 0.95rem;
  color: #666666;
  font-weight: 300;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  font-family: 'Poppins', sans-serif;
  padding: 15px 20px;
  font-size: 0.95rem;
  border: 2px solid #d8d8d8;
  border-right: none;
  background: #ffffff;
  color: #444444;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #d10a92;
  box-shadow: 0 0 0 0.2rem rgba(209, 10, 146, 0.1);
}

.newsletter-btn {
  font-family: 'Poppins', sans-serif;
  padding: 15px 30px;
  background: #d10a92;
  color: #ffffff;
  border: 2px solid #d10a92;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #a00872;
  border-color: #a00872;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 10, 146, 0.3);
}

/* Social Section */

.social-section {
  animation: fadeInUp 1s ease-out 0.9s both;
}

.social-text {
  font-size: 0.95rem;
  color: #666666;
  font-weight: 400;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #444444;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #d10a92;
  color: #ffffff;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(209, 10, 146, 0.3);
}

/* Contact Section */

.contact-section {
  animation: fadeInUp 1s ease-out 1.1s both;
}

.contact-item {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 8px;
}

.contact-item i {
  color: #d10a92;
}

.contact-item a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #d10a92;
}

/* Footer */

.construction-footer {
  padding: 25px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(68, 68, 68, 0.1);
  position: relative;
  z-index: 1;
}

.construction-footer p {
  font-size: 0.85rem;
  color: #999999;
  font-weight: 300;
}

/* Animations */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */

@media (max-width: 768px) {
  .brand-title {
    font-size: 2.8rem;
    letter-spacing: 6px;
  }
}

@media (max-width: 768px) {
  .brand-subtitle {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  .icon-section i {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .main-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .newsletter-input, .newsletter-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .content-wrapper {
    padding: 40px 15px;
  }
}

@media (max-width: 576px) {
  .brand-title {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .construction-footer p {
    font-size: 0.75rem;
  }
}

