/*
Theme Name: Sandstone Sourcing
Theme URI: https://sandstonesourcing.com
Author: Sandstone Sourcing
Author URI: https://sandstonesourcing.com
Description: A custom responsive WordPress theme for Sandstone Sourcing
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sandstone-sourcing
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: rgba(6, 21, 35, 1);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.site-container {
    max-width: 1580px;
    margin: 0 auto;
}

/* Header/Hero Section */
.hero-section {
    position: relative;
    height: 771px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1580px;
    width: 100%;
    padding: 0 20px;
}

.site-logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    max-width: 1580px;
    width: 100%;
    padding: 0 20px;
}

.site-logo img {
    width: 229px;
    height: 60px;
    object-fit: contain;
}

.site-logo a {
    display: inline-block;
}

.hero-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 900;
    font-size: 70px;
    color: #ffffff;
    line-height: 1.2;
    max-width: 820px;
    text-align: left;
}

/* Who We Are Section */
.who-we-are-section {
    position: relative;
    background-position: left center;
    background-repeat: no-repeat;
    padding: 100px 20px;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.who-we-are-content {
    position: relative;
    z-index: 2;
    max-width: 1580px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.who-we-are-text {
    grid-column: 2;
}

.who-we-are-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFF;
}

.who-we-are-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #FFF;
}

/* Footer Section */
.footer-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px 40px;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1580px;
    margin: 0 auto;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    color: #ffffff;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: transparent;
    color: #ffffff;
    padding: 15px 40px;
    border: 2px solid #ffffff;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.contact-form button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 30px 20px;
    color: #ffffff;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 11px;
    line-height: 164%;
    letter-spacing: 0%;
    text-transform: uppercase;
    opacity: 0.5;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-text {
        font-size: 50px;
    }
    
    .who-we-are-content h2 {
        font-size: 38px;
    }
    
    .contact-box {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 600px;
    }
    
    .site-logo img {
        width: 180px;
        height: 47px;
    }
    
    .hero-text {
        font-size: 36px;
        padding: 0 20px;
    }
    
    .who-we-are-section {
        padding: 60px 20px;
    }
    
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .who-we-are-text {
        grid-column: 1;
    }
    
    .who-we-are-content h2 {
        font-size: 32px;
    }
    
    .who-we-are-content p {
        font-size: 18px;
    }
    
    .contact-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        height: 500px;
    }
    
    .site-logo {
        top: 20px;
        left: 10px;
    }
    
    .site-logo img {
        width: 150px;
        height: 39px;
    }
    
    .hero-text {
        font-size: 28px;
    }
    
    .who-we-are-content h2 {
        font-size: 26px;
    }
    
    .who-we-are-content p {
        font-size: 16px;
    }
    
    .contact-info h3 {
        font-size: 22px;
    }
    
    .footer-section {
        padding: 40px 20px 20px;
    }
}

