/* Fonts */

/*
        This font software is the property of Commercial Type.

        You may not modify the font software, use it on another website, or install it on a computer.

        License information is available at http://commercialtype.com/eula
        For more information please visit Commercial Type at http://commercialtype.com or email us at info[at]commercialtype.com

        Copyright (C) 2025 Schwartzco Inc.
        License 2501-AFMOLW      
*/

@font-face {
	font-family: 'Styrene A Web';
	src: url('fonts/StyreneA-Medium-Web.woff2') format('woff2'),
		 url('fonts/StyreneA-Medium-Web.woff') format('woff');
	font-weight: 500;
	font-style: normal;

	}

.StyreneA-Medium-Web {
	font-family: 'Styrene A Web';
	font-weight: 500;
	font-style: normal;
	}
@font-face {
	font-family: 'Platform Web';
	src: url('fonts/Platform-Regular-Web.woff2') format('woff2'),
		 url('fonts/Platform-Regular-Web.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	}


.Platform-Regular-Web {
	font-family: 'Platform Web';
	font-weight: 400;
	font-style: normal;
	}


/* Palette */

:root {
    --sand: hsl(33, 37%, 92%);
    --sun: hsl(15, 97%, 57%);
    --blood: hsl(12, 82%, 45%);
    --ocean: hsl(189, 97%, 12%);
    --night: hsl(212, 35%, 8%);

    --bg-dusk-gradient-start: hsl(189, 97%, 12%);
    --bg-dusk-gradient-end: hsl(212, 35%, 8%);
    --bg-dawn-gradient-start: hsl(154, 31%, 88%);
    --bg-dawn-gradient-end: hsl(32, 45%, 52%);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: var(--bg-dawn-gradient-start);
    background-image: linear-gradient(180deg,
    var(--bg-dawn-gradient-start) 0%,
    var(--bg-dawn-gradient-end) 100%);
    background-attachment: fixed;
}

body {
    font-family: 'Styrene A Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
    color: var(--night);
    min-height: 100vh;
}

/* Logo */

.logo {
    zoom:1;
    display: inline-block;
    align-items: center;
    margin-left: 4rem;
    margin-top: 4rem;
}

.logotype {
    width: 140px;
}

.logotype path {
    fill: var(--night);
}

.trademark {
    width: 22px;
    margin-left: -10px;
    margin-bottom: 14px;
}

.trademark path {
    fill: var(--sun);
}

.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px;
}


/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: top;
    padding-top: 7rem;
}

.hero-content {
    max-width: 80%;
    margin-left: 4rem;
}

h1 {
    font-family: 'Platform Web';
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 500;
    line-height: 0.95;
}

.coming-soon {
    font-family: 'Styrene A Web';
    font-size: 1.25rem;
    color: var(--night);
    opacity: 0.5;
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 2rem 0;
    margin-left: 4rem;
}

.contact-email {
    font-family: 'Styrene A Web';
    letter-spacing: 0.25em;
    text-decoration: none;
    color: var(--night);
    font-size: 0.875rem;
    transition: opacity 1s ease;
}

.contact-email:hover {
    opacity:0.5;
}

/* Background gradient circle */
.sun {
    --sun-size: 120vh;

    position: fixed;
    bottom: -70vh;
    width: var(--sun-size);
    height: var(--sun-size);
    margin-left: calc(var(--sun-size) / -2);
    left:50%;
    background: linear-gradient(180deg, var(--blood) 0%, var(--sun) 50%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;

    animation: shift 30s cubic-bezier(0,.8,.2,1);
}

@keyframes shift {
    0% { bottom: -90vh }
    100% { bottom: -70vh }
}

/* Palm frond shadows */

.shade {
    position:fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    pointer-events: none;
}

.palm-a {
    background-image: url("/img/frond-back.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 120vh;
    width: 120vw;
    position: absolute;
    rotate: -10deg;
    top: 5vh;
    left: -10vw;
    opacity: 0.3;
    filter: blur(35px);
    animation: frondA 11s cubic-bezier(.6,0,.05,1) infinite;
}

.palm-b {
    background-image: url("/img/frond-front.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 120vh;
    width: 120vw;
    position: absolute;
    rotate: 5deg;
    top: -10vw;
    left: 0vw;
    opacity: 0.4;
    filter: blur(25px);
    animation: frondB 10s cubic-bezier(.6,0,.05,1) infinite;
}

@keyframes frondA {
    0% { rotate: -5deg; }
    50% { rotate: 4deg; transform: skew(25deg, -5deg); left: -15vw; }
    100% { rotate: -5deg; }
}

@keyframes frondB {
    0% { rotate: -2deg; }
    33% { rotate: 3deg; transform: skew(16deg, -5deg); top: -2vh; left: -7vw; }
    66% { rotate: -5deg; transform: skew(-2deg, 0deg); }
    100% { rotate: -2deg; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        padding: 0rem;
    }

    body {
        width: 100vw;
        position: fixed;
        left: -5vw;
    }
    
    h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .hero {
        padding-top: 4rem;
        flex: 0.8;
    }
    
    .hero::after {
        width: 60vh;
        height: 60vh;
    }

    .palm-a {
        left: -5vh;
        top: 4vh;
        filter: blur(24px);
        zoom: 1;
        opacity: 0.25;
    }

    .palm-b {
        zoom: 0.8;
        top: 4vh;
        left: 7vw;
        filter: blur(16px);
        opacity: 0.35;
    }

    @keyframes frondB {
        0% { rotate: -2deg; }
        33% { rotate: 4deg; transform: skew(10deg, -5deg); left: -5vw; top: 10vh; }
        66% { rotate: -5deg; transform: skew(-2deg, 0deg); }
        100% { rotate: -2deg; top: 4vh; }
    }

} 