@font-face {
    font-family: 'Arizona Flare';
    src: url('Arizona Flare/ABCArizonaFlare-Thin.woff2') format('woff2'),
         url('Arizona Flare/ABCArizonaFlare-Thin.woff') format('woff');
    font-weight: 100;  
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arizona Flare';
    src: url('Arizona Flare/ABCArizonaFlare-Light.woff2') format('woff2'),
         url('Arizona Flare/ABCArizonaFlare-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arizona Flare';
    src: url('Arizona Flare/ABCArizonaFlare-Regular.woff2') format('woff2'),
         url('Arizona Flare/ABCArizonaFlare-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Arizona Flare', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #264D39;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    text-align: center;
    font-weight: 100;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

h1 {
    font-weight: 100;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    font-size: clamp(2rem, 6vw, 3.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 .line1,
h1 .line2 {
    display: block;
}

h1 .line2 {
    margin-top: -0.1em;
}

.contact-info {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 20px;
}

.contact-info p {
    font-weight: 300;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.6;
    margin: 4px 0;
    letter-spacing: 0.01em;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Tablet and up */
@media screen and (min-width: 768px) {
    body {
        padding: 40px;
    }
    
    h1 {
        font-size: clamp(3rem, 7vw, 4.5rem);
    }
    
    .contact-info {
        bottom: 40px;
    }
    
    .contact-info p {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }
}

/* Desktop and up */
@media screen and (min-width: 1024px) {
    h1 {
        font-size: clamp(3.5rem, 7vw, 5rem);
    }
    
    .contact-info {
        bottom: 50px;
    }
    
    .contact-info p {
        font-size: 1.125rem;
    }
}

/* Large desktop */
@media screen and (min-width: 1440px) {
    h1 {
        font-size: 5.5rem;
    }
    
    .contact-info p {
        font-size: 1.25rem;
    }
}

/* Extra large screens */
@media screen and (min-width: 1920px) {
    h1 {
        font-size: 6rem;
    }
}

/* Landscape mobile optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
    h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .contact-info {
        bottom: 20px;
    }
    
    .contact-info p {
        font-size: 0.875rem;
        margin: 2px 0;
    }
}