/* =============================================================================
   Base resets and typography
   ========================================================================== */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header,
hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.2;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f5fbfd;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

a {
  text-decoration: none;
  background: transparent;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

li {
  list-style: none;
}

/* =============================================================================
   Asha Foods Layout & Utility CSS
   ========================================================================== */
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

canvas {
  display: block;
  vertical-align: bottom;
}

/* Particles.js container */
#particles-js {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  background: transparent !important;
}

/* Container for main content */
.container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo and message section */
.center-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 4vw 0 2vw 0;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(90, 60, 10, 0.09);
  padding: 2.5rem 2vw;
  max-width: 750px;
}

.main-logo {
  width: 220px;
  min-width: 130px;
  max-width: 37vw;
  display: block;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(80, 49, 49, 0.07);
  background: #f2f7fb;
}

.message-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
}

.coming-script {
  font-family: 'Hurricane', cursive;
  font-size: 4.65rem;
  color: #4b8bbf;
  margin-bottom: 0.15em;
  text-shadow: 0 1px 5px rgba(60, 100, 180, 0.10);
  letter-spacing: 1px;
  text-align: center;
}

.coming-under {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.13rem;
  color: #8682aa;
  letter-spacing: 2px;
  margin-bottom: 1.3rem;
}

.brand-info {
  margin-top: 1.15rem;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #33220f;
  margin-bottom: 0.15em;
  letter-spacing: 1px;
}

.slogan {
  color: #795c37;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Social Footer */
.social-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
}

.social-footer img {
  width: 39px;
  height: 39px;
  opacity: 0.79;
  background: #e6ecf3;
  border-radius: 50%;
  transition: opacity 0.23s, background 0.15s;
  padding: 6px;
}

.social-footer a:hover img {
  opacity: 1;
  background: #f6e7d7;
}

/* Mobile Styling */
@media (max-width: 900px) {
  .center-message {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.3rem 2vw;
  }
  .main-logo {
    width: 140px;
  }
  .coming-script {
    font-size: 4.65rem;
    text-align: center;
  }
  .message-right {
    align-items: center !important;
  }
}

@media (max-width: 600px) {
  .center-message {
    max-width: 98vw;
  }
  .main-logo {
    width: 90px;
  }
  .coming-script {
    font-size: 1.3rem;
  }
  .coming-under {
    font-size: 0.9rem;
  }
  .brand-title {
    font-size: 1rem;
  }
  .slogan {
    font-size: 0.85rem;
  }
  .social-footer img {
    width: 26px;
    height: 26px;
  }
}
