/* StoneCrust Pizza Studio - Global Styles */

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

:root {
    --white: #FFFFFF;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --olive: #6B705C;
    --olive-dark: #4D5244;
    --light-gray: #F8F8F8;
    --border-gray: #E0E0E0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    font-weight: 300;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

p {
    font-weight: 300;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
}

a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--olive);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--border-gray);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 4rem 5rem;
    max-width: 800px;
}

/* Sections */
.section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card h3 {
    margin-bottom: 1rem;
}

/* Images */
.editorial-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    margin: 2rem 0;
}

.split-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Content Sections */
.content-block {
    margin: 4rem 0;
}

.content-block h3 {
    color: var(--olive);
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 4rem 10% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section a {
    color: var(--white);
    opacity: 0.7;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-section a:hover {
    color: var(--olive);
    opacity: 1;
}

.footer-section p {
    color: var(--white);
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--charcoal-light);
    color: var(--white);
    opacity: 0.5;
    font-size: 0.85rem;
}

/* Policy Page Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin: 4rem 0;
}

.policy-section h3 {
    color: var(--olive);
    margin-bottom: 1.5rem;
}

.policy-section p {
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.contact-item {
    padding: 2rem;
    border: 1px solid var(--border-gray);
}

.contact-item h4 {
    color: var(--olive);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    nav {
        padding: 1.5rem 5%;
    }
    
    .nav-links {
        gap: 1.5rem;
        font-size: 0.8rem;
    }
    
    .hero-content {
        padding: 3rem 2rem;
    }
    
    .section {
        padding: 4rem 5%;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .editorial-image {
        height: 400px;
    }
    
    .split-image {
        height: 350px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.olive-text {
    color: var(--olive);
}

.light-text {
    font-weight: 300;
}