/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

body {
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  animation: fadeIn 1s ease-in;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

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

.logo-section {
  animation: slideDown 0.8s ease-out;
}

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

.logo {
  width: 200px;
  height: 200px;
  margin: 0 auto 10px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-heading {
  font-size: 72px;
  font-weight: bold;
  color: #0a5f3a;
  margin: 0 0 10px;
  animation: pulse 2s ease-in-out infinite;
}

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

.description {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.description-line-1 {
  color: #b8860b;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-section {
  margin-top: auto;
  padding: 30px;
  background: white;
  border-radius: 20px 20px 0 0;
  animation: slideUp 1s ease-out;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-label {
  font-size: 20px;
  color: #b8860b;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-number {
  font-size: 20px;
  padding-left: 10px;
  color: #0a5f3a;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-number:hover {
  color: #b8860b;
  transform: scale(1.05);
}

.contact-number:active {
  transform: scale(0.98);
}

@media (max-width: 1024px) {
  .container {
    padding-bottom: 10px;
  }

  .logo {
    width: 200px;
    height: 200px;
  }

  .main-heading {
    font-size: 64px;
  }

  .description {
    font-size: 24px;
    padding: 0 20px;
  }

  .contact-section {
    padding: 25px;
  }

  .contact-number {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-bottom: 10px;
  }

  .logo {
    width: 200px;
    height: 200px;
  }

  .main-heading {
    font-size: 48px;
    margin: 40px 0 30px;
  }

  .description {
    font-size: 20px;
  }

  .contact-section {
    padding: 20px;
  }

  .contact-label {
    font-size: 16px;
  }

  .contact-number {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-bottom: 10px;
  }

  .logo {
    width: 200px;
    height: 200px;
  }

  .main-heading {
    font-size: 36px;
    margin: 30px 0 20px;
  }

  .description {
    font-size: 16px;
    padding: 0 10px;
  }

  .contact-section {
    padding: 18px 15px;
  }

  .contact-label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .contact-number {
    font-size: 20px;
  }
}
