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

body {
    font-family: 'Reddit Sans', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

h1 {
    font-family: 'Anton', system-ui, sans-serif;
    font-weight: 700;
}

h4, h5, h6 {
    font-family: 'Reddit Sans Condensed', system-ui, sans-serif;
    font-weight: 600;
}

h2, h3 {
    font-family: 'Anton', system-ui, sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Top Banner */
.top-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    background-color: #cc0000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: -1;
}

/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 32px 0;
    background-color: transparent;
    color: #000000;
    max-width: 1400px;
    margin: 0 auto;
    gap: 24px
}

.header-logo {
    flex: 0;
    display: flex;
    align-items: center;
}

.header-logo a {
    display: flex;
}

.header-logo img {
    max-height: 210px;
    cursor: pointer;
}

.header-text {
    flex: 0 1 auto;
    min-width: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-text .company-name {
    margin-top: 15px;
    font-size: 32px;
    line-height: 1;
    letter-spacing:1px
}

.header-text .company-name span {
    line-height: 1;
}

.header-text .tagline {
    font-family: 'Reddit Sans', system-ui, sans-serif;
    margin-top: 5px;
    font-size: 28px;
}

/* Header Contact */
.header-contact {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    position: relative;
}

.contact-toggle {
    padding: 12px 24px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Reddit Sans Condensed', system-ui, sans-serif;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    outline: 3px solid #000000;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.contact-toggle:hover {
    background-color: #333333;
}

.nav-link {
    padding: 8px 20px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Reddit Sans Condensed', system-ui, sans-serif;
    background-color: #ffffff;
    color: #000000;
    border: 3px solid #000000;
    outline: 3px solid transparent;
    text-decoration: none;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: #eeeeee;
}

.contact-details {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
}

.contact-details.open {
    display: flex;
}

.contact-btn {
    display: block;
    width: 100%;
    min-width: 220px;
    margin: 4px 0 0 0;
    padding: 16px 48px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Reddit Sans Condensed', system-ui, sans-serif;
    border: none;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 0.3s ease forwards;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:nth-child(1) {
    animation-delay: 0s;
}

.contact-btn:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-btn:hover {
    background-color: #333333;
}

/* Fixed Contact Button on Scroll */
.header-contact.contact-fixed {
    position: fixed;
    top: 20px;
    right: 32px;
    z-index: 1000;
    flex: none;
    translate: none;
}

.header-contact.contact-fixed .nav-link {
    display: none;
}

.header-contact.contact-fixed .contact-details {
    top: 100%;
    right: 0;
}

/* Main Content */
main {
    padding: 0 32px;
    max-width: 1400px;
    margin: 30px auto;
}

/* Service Panels */
.panels-container {
    display: none;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 64px;
}

.panels-container.visible {
    display: flex;
}

.panel {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    max-width: 400px;
    border: 1px solid #eeeeee;
    padding: 24px;
    background-color: #eeeeee;
    display: flex;
    flex-direction: column;
}

.panel h3 {
    margin-bottom: 16px;
    color: #000000;
    border-bottom: 2px solid #000000;
    padding-bottom: 8px;
}

.panel ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 24px;
}

.panel li {
    margin-bottom: 8px;
}

.panel .price {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin-top: auto;
}

/* About Section */
.about-section {
    padding: 32px;
    background-color: #eeeeee;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section h2 {
    margin-bottom: 16px;
}

.about-section p {
    max-width: 650px;
    margin-bottom: 12px;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 12px;
    text-align: center;
}

footer p {
    margin: 4px 0;
}

/* Panel description text */
.panel .description {
    margin-bottom: 24px;
}

/* Portfolio Button */
.portfolio-btn-container {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

.portfolio-btn {
    padding: 12px 32px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Reddit Sans Condensed', system-ui, sans-serif;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.portfolio-btn:hover {
    background-color: #eeeeee;
}

/* Portfolio Gallery */
.portfolio-gallery {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.portfolio-gallery-preview {
    display: flex;
    flex-wrap: wrap;
}

.portfolio-gallery-preview img {
    flex: 1 1 33.333%;
    width: 33.333%;
    height: auto;
    object-fit: cover;
    display: block;
}

.portfolio-batch {
    display: none;
    flex-direction: column;
}

.portfolio-batch.visible {
    display: flex;
}

.portfolio-gallery-landscape,
.portfolio-gallery-portrait {
    display: flex;
    flex-wrap: wrap;
}

.portfolio-gallery-landscape img {
    flex: 1 1 400px;
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
}

.portfolio-gallery-portrait img {
    flex: 1 1 250px;
    width: 33.333%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 800px) {
    .portfolio-gallery-preview img {
        width: 100%;
        flex: 1 1 100%;
    }

    .portfolio-gallery-landscape img {
        width: 100%;
        flex: 1 1 100%;
    }

    .portfolio-gallery-portrait img {
        width: 50%;
        flex: 1 1 50%;
    }
}

/* Testimonials */
.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 32px;
    background-color: transparent;
    margin-bottom: 32px;
}

.testimonials-preview,
.testimonials-expanded {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

.testimonials-expanded {
    display: none;
    margin-top: 32px;
}

.testimonials-expanded.visible {
    display: flex;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #eeeeee;
    padding: 24px 24px 30px 24px;
}

.testimonials-preview .testimonial:nth-child(1) {
    transform: rotate(-2deg);
}

.testimonials-preview .testimonial:nth-child(2) {
    transform: rotate(1.5deg);
}

.testimonials-preview .testimonial:nth-child(3) {
    transform: rotate(-1deg);
}

.testimonials-expanded .testimonial:nth-child(1) {
    transform: rotate(2deg);
}

.testimonial-text {
    font-style: italic;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #000000;
}

.testimonial-author {
    font-weight: bold;
    color: #000000;
    margin-bottom: 16px;
}

.testimonial-snapshot {
    width: 150px;
    height: 150px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.testimonial-snapshots {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.testimonial-snapshots .testimonial-snapshot:nth-child(1) {
    transform: rotate(-4deg);
}

.testimonial-snapshots .testimonial-snapshot:nth-child(2) {
    transform: rotate(3deg);
}

.testimonials-preview .testimonial:nth-child(1) .testimonial-snapshot {
    transform: rotate(-3deg);
}

.testimonials-preview .testimonial:nth-child(3) .testimonial-snapshot {
    transform: rotate(-1.5deg);
}

.testimonials-expanded .testimonial:nth-child(1) .testimonial-snapshot {
    transform: rotate(2.5deg);
}

/* Default State Hero */
.default-hero {
    text-align: center;
    padding: 0 32px 48px 32px;
}

.default-hero.hidden {
    display: none;
}

.default-hero h2 {
    font-family: 'Reddit Sans Condensed', system-ui, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 18px;
    text-transform: none;
    letter-spacing: normal;
}

.default-hero p {
    font-family: 'Reddit Sans', system-ui, sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #000000;
    line-height: 1.4;
}

/* Mobile Header */
@media (max-width: 1000px) {
    .header-logo img {
        max-height: 240px;
    }

    .contact-toggle {
        margin-top: 0
    }

    header {
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
    }

    .header-text .company-name {
        display: none;
    }

    .header-contact {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-details {
        align-items: center;
        right: 50%;
        transform: translateX(50%);
    }

    .header-contact.contact-fixed {
        right: 50%;
        transform: translateX(50%);
    }

    .header-contact.contact-fixed .contact-details {
        right: 50%;
        transform: translateX(50%);
    }
}
