/*
=================================================
 Project: GAS (Latex Gas Mask)
 Version: 1.0.0
 File: style.css
 Description: Styles for hero video section
 Author: latexgasmask.com
 Created: 2025-12-14
=================================================
*/



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

/* Base */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
}

/* Header */
.site-header {
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Branding */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
}

.site-logo {
    height: 32px;
    margin-right: 10px;
}

.site-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

/* Navigation */
.main-nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* Content */
.content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

h1 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* Photo grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Photo card */
.photo-card {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    overflow: hidden;
}

.photo-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Description label */
.photo-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: #000000;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

/* CTA bar */
.cta-bar {
    background-color: #000000;
    margin-top: 60px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.cta-button {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
}

.cta-button:hover {
    opacity: 0.85;
}

/* Footer */
.site-footer {
    border-top: 1px solid #e0e0e0;
    padding: 30px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
}

.footer-copy {
    font-size: 13px;
}

.footer-copy a {
    color: #000000;
    text-decoration: none;
}

/* Mobile optimization */
@media (max-width: 768px) {

    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav a {
        margin-left: 12px;
        margin-right: 12px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 26px;
    }

    .cta-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
