/* 
   Alqabdhah Althahabia Construction - Coming Soon Page
   CSS Styles
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary-color: #00796b;    /* Teal color from logo */
  --secondary-color: #c5a54a;  /* Gold color from logo */
  --text-color: #333;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  padding: 2rem 0;
  text-align: center;
}

.logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 1rem;
}

/* Main Content Styles */
main {
  flex: 1;
  padding: 2rem 0;
  display: flex;
  align-items: center;
}

.coming-soon {
  text-align: center;
  width: 100%;
}

.coming-soon h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.coming-soon h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.coming-soon p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #666;
}

/* Info Box Styles */
.info-box {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: var(--shadow);
}

.info-box h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.info-box p {
  margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--secondary-color);
}

/* Footer Styles */
footer {
  background-color: var(--light-gray);
  padding: 1.5rem 0;
  text-align: center;
  margin-top: auto;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-text {
  color: #777;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .coming-soon h1 {
    font-size: 2.5rem;
  }
  
  .coming-soon p {
    font-size: 1rem;
  }
  
  .info-box {
    padding: 1.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .coming-soon h1 {
    font-size: 2rem;
  }
  
  .logo {
    max-width: 180px;
  }
}

