/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.invitation-cover {
  --font-size: 18px;
  --gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18vw;
  font-size: var(--font-size);
  color: var(--color-white);
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 99;

  .cover-heading {
    display: flex;
    flex-direction: column;
    gap: var(--gap);

    .guest-name {
      font-size: 1.5em;
      font-weight: 800;
    }
  }

  .cover-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;

    .client-names {
      font-size: 3rem;
      font-weight: 800;
      font-family: serif;
    }
  }

  #open-invitation {
    background-color: white;
    border: 0;
    color: #000;
    padding: 0.75rem 2.5rem;
  }

  .elementor-editor-active & {
    display: none;
  }
}
