/*
 * Sulaf Coffee - Coming Soon Page (Mobile Fixed - No White Box)
 */

/* Reset & Base */
* {
  box-sizing: border-box;
}

/* Links */
a,
a:focus,
a:hover {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f0c674;
}

/* Base structure */
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  /* Complete background image - NO OVERLAY */
  background: url(../img/cover.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

/* Site wrapper - NO TABLE DISPLAY */
.site-wrapper {
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.site-wrapper-inner {
  width: 100%;
  flex: 0 0 auto;
}

.cover-container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0;
}

.inner {
  padding: 0;
}

/* Footer */
.mastfoot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  padding: 20px 15px;
  z-index: 100;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.mastfoot .inner {
  padding: 0;
  margin: 0;
}

.mastfoot p {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Tablet Responsive */
@media (max-width: 991px) {
  .mastfoot {
    padding: 18px 15px;
  }
  
  .mastfoot p {
    font-size: 0.9rem;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  body {
    background-attachment: scroll;
    background-position: center center;
  }
  
  .site-wrapper {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
  
  .mastfoot {
    padding: 16px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  }
  
  .mastfoot p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .mastfoot {
    padding: 14px 12px;
  }
  
  .mastfoot p {
    font-size: 0.8rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .mastfoot {
    padding: 12px 10px;
  }
  
  .mastfoot p {
    font-size: 0.75rem;
  }
}

/* iPhone 12 Pro and similar */
@media (max-width: 390px) {
  .mastfoot p {
    font-size: 0.78rem;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .site-wrapper {
    min-height: 100vh;
  }
  
  .mastfoot {
    padding: 10px 15px;
  }
  
  .mastfoot p {
    font-size: 0.75rem;
  }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
  
  .site-wrapper {
    min-height: -webkit-fill-available;
  }
}