/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.3.0
	Stable tag: 3.3.0
	Requires at least: 6.0
	Tested up to: 6.7
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
/**
 * Loading first in the style.scss & classic-editor.scss
 */
/**
* Document basic styling
* Inspired by Normalize.css, HTML5 Boilerplate & Bootstrap Reboot Projects under MIT License
 */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

.wpcf7-spinner {
	display: none !important;
}

/* *,
*::before,
*::after {
  box-sizing: border-box;
} */

/* Sections
 */
:root {
  --black: #25333f;
  --white: #fffbf6;
  --grey-darker: #425e73;
  --grey-lighter: #758795;
  --pink-darker: #ded6d2;
  --pink-lighter: #fef9f3;
  --main-font: "Sofia Sans", serif;
  --accent-font: "Philosopher", serif;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--pink-lighter);
  font-family: var(--main-font);
  color: var(--black);
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--pink-lighter);
  z-index: 1000;
  transition: background-color 0.3s ease-in-out;
}

.nav-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left .nav-logo {
  width: 200px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-family: var(--main-font);
  text-transform: uppercase;
  font-size: 16px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.nav-social {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-social li img {
  width: auto;
  height: 24px;
  transition: opacity 0.3s ease-in-out;
}

.nav-social li img:hover {
  opacity: 0.7;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--black);
  transition: background-color 0.3s ease-in-out;
}

.burger-menu.active span {
  background-color: var(--white);
}

/* Hero Screen  */
.hero-screen {
  max-width: 880px;
  background-color: var(--pink-darker);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  margin: 200px auto;
  border-radius: 40px;
  padding: 60px;
  max-height: 500px;
}

.hero-left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right-side {
  display: flex;
  justify-content: center;
}

.hero-main-photo {
  width: 100%;
  max-width: 540px;
  position: absolute;
  margin-top: -320px;
  margin-right: -80px;
}

.hero-left-side h1 {
  font-family: var(--accent-font);
  font-size: 48px;
  font-weight: bolder;
  color: var(--grey-darker);
  margin-top: 32px;
  margin-bottom: 32px;
  text-transform: uppercase;
  text-shadow: 1px 1px 6px rgba(20, 20, 20, 0.2);
}

.hero-left-side h2,
.hero-left-side h3,
.hero-left-side h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.hero-left-side p {
  font-size: 28px;
  max-width: 500px;
  font-weight: 500;
  margin-top: 0;
}

.hero-left-side button {
  width: 260px;
  padding: 18px 24px;
  font-family: var(--accent-font);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  border: 1px solid transparent;
  color: var(--white);
  background-color: var(--grey-darker);
  box-shadow: 2px 6px 9px -3px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.hero-left-side button:hover {
  background-color: var(--grey-lighter);
}

/* Cards Section */
.cards-section {
  max-width: 1000px;
  display: block;
  margin: 0 auto 100px auto;
  text-align: center;
}
.for-health-img,
.for-repose-img {
  max-width: 100%;
}
.cards-section h1 {
  font-family: var(--accent-font);
  font-size: 48px;
  font-weight: 200;
}

.cards-section p {
  font-size: 24px;
  font-weight: 200;
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

.cards-section .cards {
  margin-top: 60px;
  margin-bottom: 40px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}

.cards-section-card {
  display: flex;
  flex-flow: wrap column;
  justify-content: space-between;
  background: rgb(254, 249, 243);
  background: linear-gradient(
    344deg,
    rgba(254, 249, 243, 1) 53%,
    rgba(222, 214, 210, 1) 100%
  );

  box-shadow: 2px 6px 30px -3px rgba(118, 118, 118, 0.2);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
}
.cards-section-card h3 {
  text-transform: uppercase;
  font-size: 32px;
  font-family: var(--accent-font);
}
.cards-section-card p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--grey-darker);
}
.checkbox-group {
  margin-top: 12px;
  margin-left: 26px;
  text-align: left;
  font-size: 16px;
  display: block;
  width: 100%;
}

.checkbox-group label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
  padding-left: 0;
}

.checkbox-group input {
  margin-right: 8px;
}

/* Form Styles */
.cards-section-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cards-section-card textarea {
  width: 90%;
  min-height: 160px;
  padding: 12px;
  border: 2px solid var(--grey-lighter);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--main-font);
  background-color: transparent;
  resize: none;
  color: var(--black);
}

.cards-section-card textarea::placeholder {
  color: var(--grey-lighter);
}

/* Buttons */
.cards-section-card .button {
  margin-top: 24px;
  margin-bottom: 12px;
  width: 200px;
  padding: 12px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--accent-font);
  border: none;
  background-color: var(--grey-darker);
  color: var(--white);
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
}

.cards-section-card .button:hover {
  background-color: var(--grey-lighter);
}
.more-info {
  max-width: 920px;
  display: block;
  margin: 200px auto;
  background-color: var(--pink-darker);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.more-info-left-side {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.more-info-left-side h1 {
  font-family: var(--accent-font);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 0;
}
.more-info-left-side h2 {
  font-weight: 200;
  font-size: 22px;
}
.more-info-right-side {
  display: flex;
  flex-direction: column;
  justify-content: right;
}

.more-info-right-side img {
  margin: 0 auto;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  position: absolute;
  margin-top: -170px;
  transform: rotate(3deg);
}

iframe {
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 6px 24px 6px;
}
.footer-section {
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 24px;
}
footer a {
  color: var(--white);
  text-decoration: none;
}
.footer-col {
  color: var(--white);
  text-align: left;
}
.footer-col p {
  margin-top: 24px;
}
.footer-col img {
  width: 200px;
}
.footer-col-left {
  text-align: left;
}
.footer-col-central {
  text-align: center;
}
.footer-col-right {
  text-align: right;
}
.footer-col-right ul {
  display: inline-flex;
  margin-right: 0;
}

footer h3 {
  text-align: center;
  font-size: 14px;
  font-weight: 100;
  margin: 100px 12px 0px 12px;
}
@media (max-width: 1000px) {
  .hero-left-side h1 {
    font-size: 46px;
  }
}
@media (max-width: 960px) {
  .navigation {
    background-color: var(--white);
  }

  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
  }

  .nav-right.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-social {
    justify-content: center;
  }

  .burger-menu {
    display: flex;
  }

  .hero-screen {
    grid-template-columns: 1fr;
    text-align: center;
    margin: 180px 24px 80px 24px;
    padding: 24px;
    max-height: 100%;
  }

  .hero-main-photo {
    width: 100%;
    max-width: 540px;
    position: relative;
    margin: 24px 0;
  }

  .hero-left-side {
    align-items: center;
  }

  .hero-right-side {
    justify-content: center;
  }

  .cards-section {
    padding: 24px;
    margin-bottom: 40px;
  }

  .cards-section .cards {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .cards-section p {
    max-width: auto;
  }

  .more-info {
    grid-template-columns: 1fr;
    margin: 0 24px 200px 24px;
  }
  .more-info-left-side {
    text-align: center;
  }
  .more-info-right-side img {
    margin: 0 auto;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    position: relative;
    margin-top: 6px;
    transform: rotate(3deg);
  }
  .footer-section {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 60px;
  }
  .footer-col {
    text-align: center;
  }
}

.modal {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 999999;
	margin: 0;
	width: 100%;
	height: 100vh;
	overflow: auto;
	background: rgba(0, 0, 0, 0.7);
}
.modal .modal-content {
	background-color: var(--pink-darker);
	padding: 24px;
	border-radius: 24px;
	text-align: center;
	margin: 24px;
	position: relative;
	max-width: 600px;
}
.modal .modal-content .button {
  margin-top: 24px;
  margin-bottom: 12px;
  width: 200px;
  padding: 12px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--accent-font);
  border: none;
  background-color: var(--grey-darker);
  color: var(--white);
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
}

.modal .modal-content .button:hover {
  background-color: var(--grey-lighter);
}

.modal .modal-content h3 {
	font-size: 28px;
	line-height: 1.15;
}

.modal .modal-content p {
	font-size: 22px;	
	margin: 0;
	line-height: 1.15;
}

.modal .close-modal {
  width: 24px;
  height: 24px;
  top: 24px;
  right: 24px;
  position: absolute;
  cursor: pointer;
}
.modal.active {
	display: flex;
}