/* Custom Fonts */
@font-face {
    font-family: 'FM Bolyar Pro';
    src: url('fonts/FMBolyarPro-100.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'FM Bolyar Pro';
    src: url('fonts/FMBolyarPro-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'FM Bolyar Pro';
    src: url('fonts/FMBolyarPro-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'FM Bolyar Pro';
    src: url('fonts/FMBolyarPro-900.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Selfie';
    src: url('fonts/Selfie_Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Selfie';
    src: url('fonts/Selfie_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #EBE9E1;  /* Changed to Ash */
    color: #333333;
    line-height: 1.6;
}

/* Main container - centers everything */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Company name/logo area */
/* Base company name styling */
.company-name {
    margin-bottom: 2rem;
    line-height: 1.1;
    text-align: center;
}

.trade-craft {
    font-family: 'FM Bolyar Pro', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #82512E;  /* Clay color */
    letter-spacing: 0.05em;
    display: block;
}

.builders {
    font-family: 'Selfie', cursive;
    font-size: 3rem;
    font-weight: normal;
    color: #44555A;  /* Sea color */
    display: block;
    margin-top: -0.5rem;
}

/* VERSION 1: All Bold */
.version-1 {
    font-family: 'FM Bolyar Pro', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #1e3a8a;
    letter-spacing: 0.05em;
}

/* VERSION 2: All Cursive */
.version-2 {
    font-family: 'Selfie', cursive;
    font-size: 3.5rem;
    font-weight: normal;
    color: #1e3a8a;
}

/* VERSION 3: Mixed Fonts */
.version-3 {
    font-size: 3rem;
    color: #1e3a8a;
}

.version-3 .cursive {
    font-family: 'Selfie', cursive;
    font-size: 3.5rem;
    font-weight: normal;
    display: block;
}

.version-3 .bold {
    font-family: 'FM Bolyar Pro', serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    display: block;
    margin-top: 0.5rem;
}

/* Construction icon */
.icon {
    font-size: 5rem;
    margin: 2rem 0;
    color: #82512E;
}

/* Message section */
.message h2 {
    font-family: 'FM Bolyar Pro', serif;  /* Added */
    font-size: 2rem;
    font-weight: 300;  /* Light weight */
    color: #44555A;  /* Sea color */
    margin-bottom: 1rem;
}

.message p {
    font-family: 'FM Bolyar Pro', serif;  /* Added */
    font-size: 1.25rem;
    font-weight: 100;  /* Thin weight */
    color: #483F3A;  /* Pepper */
    margin-bottom: 2rem;
}

/* Call-to-action button */
.button {
    display: inline-block;
    background-color: #82512E;
    color: #EBE9E1;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'FM Bolyar Pro', serif;  /* Added */
    font-size: 1.125rem;
    font-weight: 300;  /* Light weight */
    letter-spacing: 0.05em;  /* Optional: adds slight spacing */
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #44555A;  /* Sea color on hover */
    cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .trade-craft {
        font-size: 2.5rem;
    }
    
    .builders {
        font-size: 2rem;
    }
    
    .icon {
        font-size: 4rem;
    }
    
    .message h2 {
        font-size: 1.5rem;
    }
    
    .message p {
        font-size: 1rem;
    }
    
    .button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}