/*
Theme Name: Coming Soon
Description: A basic coming soon theme for WordPress.
Author: Your Name
Version: 1.0
*/

@font-face {
  font-family: 'Dapifer';
  src: url('fonts/Dapifer-Regular.woff2') format('woff2'),
       url('fonts/Dapifer-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Dapifer', 'Helvetica Neue', sans-serif;
  background: url('images/background.jpeg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity here */
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.logo-header {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.custom-logo {
  max-width: 120px;
  height: auto;
}

h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  color: #f0f0f0;
}

