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

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #faf8f5;
    color: #2a2522;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
nav {
    background-color: #faf8f5;
    padding: 25px 0;
    border-bottom: 1px solid #e5e0d8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #2a2522;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2a2522;
    font-size: 15px;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #d4915d;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2a2522;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 30px;
    text-align: center;
    background-color: #faf8f5;
}

.hero-content h1 {
    font-size: 56px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    font-weight: normal;
}

.tagline {
    font-size: 18px;
    color: #6b6560;
    max-width: 600px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.location {
    font-size: 15px;
    color: #8a7f78;
    letter-spacing: 1px;
}

/* Collector CTA Section */
.collector-cta {
    background-color: #2a2522;
    color: #faf8f5;
    padding: 80px 30px;
    text-align: center;
}

.collector-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 2px;
}

.collector-cta p {
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 16px;
    line-height: 1.8;
    color: #d4c5b8;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #d4915d;
    color: #faf8f5;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    border: 2px solid #d4915d;
}

.cta-button:hover {
    background-color: transparent;
    color: #d4915d;
}

/* Featured Work Section */
.featured-work {
    padding: 100px 30px;
}

.featured-work h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 3px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-info {
    margin-top: 15px;
}

.item-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: normal;
    letter-spacing: 1px;
}

.item-info p {
    font-size: 14px;
    color: #6b6560;
}

.gallery-item a {
    text-decoration: none;
    color: inherit;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

.text-link {
    color: #d4915d;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.text-link:hover {
    color: #2a2522;
}

/* Gallery Page */
.gallery-section {
    padding: 80px 30px;
}

.gallery-section h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: normal;
    letter-spacing: 4px;
}

.gallery-intro {
    font-size: 16px;
    color: #6b6560;
    margin-bottom: 60px;
}

.installation-section {
    margin-top: 100px;
}

.installation-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: normal;
    letter-spacing: 2px;
}

.installation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.installation-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.installation-item p {
    font-size: 14px;
    color: #6b6560;
}

/* About Page */
.about-content {
    padding: 80px 30px;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: normal;
    letter-spacing: 4px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.about-sidebar {
    padding-top: 10px;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #6b6560;
    font-weight: normal;
}

.sidebar-section p {
    font-size: 15px;
    line-height: 1.7;
}

.sidebar-section a {
    color: #d4915d;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-section a:hover {
    color: #2a2522;
}

/* Contact Page */
.contact-section {
    padding: 80px 30px;
}

.contact-section h1 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: normal;
    letter-spacing: 4px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-block {
    margin-bottom: 45px;
}

.contact-block h2 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: normal;
    letter-spacing: 2px;
}

.contact-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b6560;
}

.contact-details {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e0d8;
}

.contact-details p {
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-details a {
    color: #d4915d;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #2a2522;
}

/* Contact Form */
.contact-form {
    background-color: #f5f2ed;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4c5b8;
    background-color: #faf8f5;
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    color: #2a2522;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #d4915d;
    color: #faf8f5;
    border: 2px solid #d4915d;
    padding: 14px 35px;
    font-size: 15px;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: transparent;
    color: #d4915d;
}

.form-note {
    margin-top: 20px;
    font-size: 13px;
    color: #8a7f78;
    font-style: italic;
}

.form-note a {
    color: #d4915d;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #2a2522;
    color: #d4c5b8;
    padding: 50px 30px;
    margin-top: 100px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    color: #d4c5b8;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4915d;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #faf8f5;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        border-bottom: 1px solid #e5e0d8;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        padding: 20px 30px;
        border-top: 1px solid #e5e0d8;
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 16px;
    }

    .collector-cta h2,
    .featured-work h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 20px;
    }

    .collector-cta,
    .featured-work,
    .gallery-section,
    .about-content,
    .contact-section {
        padding: 60px 20px;
    }
}
