/*=================================================
    GLOBAL SETTINGS
==================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}
body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
	margin: 0;
}

/*=================================================
    VARIABLES
==================================================*/
:root{
    --dark:#181818;
    --light:#ffffff;
    --text-dark:#222;
    --text-light:#ffffff;
    --purple:#5900ff;
	--lighterpurple:#ac80ff;
	--green:#2b5735;
	--lightergreen:#4d995d;
	--evenlightergreen:#66cc7c;
    --maxWidth:1600px;
}
/*=================================================
    HEADER
==================================================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    padding:10px 30px;
    background:transparent;
    color:white;
    z-index:1000;
    transition:.45s;
}
header.middle {
    background: #202020;
    color: white;
}
header.bottom {
    background: black;
    color: white;
}
logo{
    display:flex;
    align-items:center;
}
.logo img{
    height:calc(100% - 20px);
    max-height:70px;
    width:auto;
    display:block;
    border-radius:0;
    box-shadow:none;
}
/*=================================================
    NAVIGATION
==================================================*/

nav ul{
    display:flex;
    gap:22px;
    list-style:none;
}
nav a{

    color:inherit;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}
nav a:hover{
    color:var(--purple);
}
/*=================================================
    RIGHT CONTACT INFO
==================================================*/

.header-contact {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: right;
}

.header-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.header-images {
    display: flex;
    gap: 8px;
}

.header-images img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    display: block;
}
/*=================================================
    CENTER NAVIGATION
==================================================*/

nav{
    justify-self:center;
}

nav ul{
    display:flex;
    align-items:center;
}

/*=================================================
    HERO SECTION
==================================================*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../images/edited.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-content {
    position: absolute;
    top: 130px; /* header height + 20px padding */
    left: 0;
    width: 100%;
    height: 65%;
    display: flex;
    justify-content: center;
}
.hero-image-wrapper {
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*=================================================
    HEADINGS
==================================================*/
h2{
    font-size:52px;
	margin-top:20vh;
    margin-bottom:20px;
    color:#222;
}
p{
    font-size:20px;
    line-height:1.8;
}
/*=================================================
    LINKS
==================================================*/
a {
    transition: color 0.3s ease, background-color 0.3s ease;
}
/*=================================================
    SECTION SPACING
==================================================*/
.white-section{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    text-align:center;
	 min-height: 100vh;
}
.white-section p{
    max-width:900px;
}