/**
Theme Name: Balatongép Landing
Author: zsiraiandras.com
Author URI: https://zsiraiandras.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
  * HFCM SNIPPET: <link rel="stylesheet" href="https://***.com/wp-content/b-assets/b-styles-***.css">
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
	scroll-behavior: smooth;
}

/**
   * Remove the margin in all browsers.
   */

body {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

* {
	box-sizing: border-box;
}

/* 
  =====================================================
  CSS VARIABLES
  =====================================================
*/

/* 
  =====================================================
  CONTENT
  =====================================================
*/
#content {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(237, 3, 32, 0.87) 20.8%, rgba(242, 121, 1, 0.84) 74.4%);
	background-image: url(assets/bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: grid;
	place-items: center;
}

.content-wrapper {
	margin: 0;
	padding: 50px 100px;
	width: 100%;
	max-width: 1200px;
	height: auto;
	overflow: hidden;
	z-index: 1;
}

.logo-row {
	display: flex;
	margin-bottom: 8vh;
	justify-content: space-between;
}

.logo-row .col:nth-of-type(2) {
	flex: 1 1 auto;
}

.img-wrapper {
	width: auto;
	height: 100px;
}

.img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#arrow-mobile {
	display: none;
}

.content-row {
	margin: 0;
	max-width: 850px;
}

p {
	margin: 0 0 30px;
	padding: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6em;
}

span {
	display: inline;
}

.title {
	font-size: 1.2rem;
	font-weight: 800;
}

.bold {
	font-weight: 700;
}

.italic {
	font-style: italic;
}

.highlight {
	display: inline-block;
	background-color: #000000;
	color: #fff;
	padding: 0 12px;
}

.btn {
	display: inline-block;
	margin: 0;
	padding: 1em 2em;
	border: 2px solid #ffffff;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.35s ease-in-out;
}

.btn:hover {
	background-color: #000000;
	border-color: #000000;
}

#content::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: clamp(200px, 33vw, 750px);
	aspect-ratio: 1 / 1;
	background-image: url(assets/hero-img-cut.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 0;
}

@media screen and (max-width: 768px) {
	.content-wrapper {
		padding: 50px;
	}

	.logo-row {
		display: flex;
		margin-bottom: 8vh;
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	#arrow-desktop {
		display: none;
	}
	#arrow-mobile {
		display: block;
		width: 100%;
		height: auto;
	}
	.img-wrapper {
		width: 100%;
		height: 70px;
	}
	.logo-row .col:nth-of-type(1),
	.logo-row .col:nth-of-type(3) {
		width: 100%;
		background-color: #ffffff;
	}

	.content-row {
		padding-right: 15%;
	}
}
