/* styles.css — Straight Shot Flooring and More LLC */
/* Fonts loaded via <link> in HTML with preconnect + display=swap for zero FOIT */

:root {
    --bg-black: #000000;
    --bg-orange: #E8651C;
    --bg-white: #FFFFFF;
    --text-light: #F5F5F5;
    --text-dark: #1A1A1A;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Nav */
header {
    background-color: var(--bg-black);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--bg-orange);
}

/* Real logo in nav header (sub-pages) */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

/* Split Layout Utilities */
.split-section {
    display: flex;
    min-height: 80vh;
    width: 100vw;
}

.split-left, .split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left {
    padding: 5rem 10%;
}

.split-right {
    background-size: cover;
    background-position: center;
}

/* Hero */
.hero {
    background-color: var(--bg-black);
}

.logo-large {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Real logo image — hero section */
.logo-img {
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 24px rgba(200,90,23,0.25));
}

/* Mission Section (Solid Orange) */
.mission-section {
    background-color: var(--bg-orange);
    padding: 6rem 10%;
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.mission-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3rem;
    line-height: 1.4;
    max-width: 900px;
}

.mission-subtext {
    align-self: flex-end;
    text-align: right;
    max-width: 400px;
    font-size: 1rem;
    font-weight: 400;
}

.mission-subtext strong {
    font-weight: 700;
    display: block;
    margin-top: 0.5rem;
}

/* Services Section */
.services-section {
    background-color: var(--bg-black);
}

.services-left h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.services-desc {
    margin-bottom: 3rem;
    color: #CCC;
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    gap: 2rem;
}

.service-item h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 6rem 10%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.gallery-title {
    flex: 0 0 250px;
}

.gallery-title h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 4rem;
    line-height: 1.1;
}

.gallery-cards {
    flex: 1;
    display: flex;
    gap: 2rem;
}

.gallery-card {
    flex: 1;
    text-align: center;
}

.gallery-image {
    width: 100%;
    padding-bottom: 133%;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.gallery-card h3 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    font-weight: normal;
}

/* Quote Section */
.quote-section {
    background-color: #F9F9F9;
    padding: 5rem 10%;
    text-align: center;
    color: var(--text-dark);
}

.quote-section h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cf-wrapper {
    max-width: 600px;
    margin: 2rem auto 0;
    background: #FFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background-color: var(--bg-orange);
    color: var(--bg-white);
    padding: 5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col h3 {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.footer-col p {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--bg-white);
}

.footer-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Real logo image — footer */
.footer-logo-img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
    }
    .split-right {
        min-height: 400px;
    }
    .services-grid, .gallery-section, footer {
        flex-direction: column;
    }
    .gallery-cards {
        flex-direction: column;
    }
    .gallery-title {
        flex: unset;
    }
}

/* Premium Native Form Styles */
.premium-form-wrapper {
    max-width: 700px !important;
    background: #121212 !important; /* Sleek dark background */
    padding: 3.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;
    border: 1px solid #333 !important;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.premium-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.premium-form label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 1.2rem;
    background: #1E1E1E;
    border: 1px solid #444;
    border-radius: 6px;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--bg-orange);
    box-shadow: 0 0 0 3px rgba(200, 90, 23, 0.2);
    background: #252525;
}

.premium-submit-btn {
    margin-top: 1rem;
    background: var(--bg-orange);
    color: var(--bg-white);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.premium-submit-btn:hover {
    background: #E86A1D;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(200, 90, 23, 0.4);
}

.premium-submit-btn:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

.form-status.success {
    color: #4CAF50;
}

.form-status.error {
    color: #F44336;
}
