@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('ttf');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('ttf');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/Roboto/RobotoCondensed-Bold.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

:root {
    --brand-primary: #ff4757;
    --brand-secondary: #2f3542;
    --text-light: #f5f6fa;
    --text-dark: #4a4a4a;
}

html {
    scroll-behavior: smooth;
    background-color: #fdfdfd;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

.title,
.subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.button.is-primary {
    background-color: var(--brand-primary);
    border-color: transparent;
    transition: all 0.3s ease;
}

.button.is-primary:hover {
    background-color: #e8414f;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 6rem 1.5rem;
}

.shutterhub-header {
    background: var(--brand-secondary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #4a4a4a;
}

.header-logo {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.5rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 2px;
}

.header-logo:hover {
    color: var(--text-light);
}

.header-logo .icon {
    color: var(--brand-primary);
}

.navbar {
    background: transparent;
}

.navbar-item {
    color: #bdc3c7;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-item:hover,
.navbar-item.is-active {
    background-color: transparent !important;
    color: var(--brand-primary) !important;
}

.navbar-burger {
    color: var(--text-light);
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--brand-secondary);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
}

.shutterhub-footer {
    background-color: var(--brand-secondary);
    color: var(--text-light);
    padding-top: 4rem;
}

.footer-cta {
    background-color: var(--brand-primary);
    padding: 2rem;
    border-radius: 8px;
    margin-top: -8rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-columns {
    padding: 4rem 1.5rem 2rem 1.5rem;
}

.footer-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    border-bottom: 2px solid var(--brand-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-links a {
    color: #bdc3c7;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-social-icons .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.hero.is-main {
    background: linear-gradient(rgba(47, 53, 66, 0.7), rgba(47, 53, 66, 0.7)), url('../images/hero.jpg') no-repeat center center;
    background-size: cover;
}

.brand-logos img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.brand-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.overlapping-image-section .image-container {
    position: relative;
}

.overlapping-image-section .image-container img {
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.lens {
    max-width: 400px;
    margin: 0 auto;
}

@media screen and (min-width: 769px) {
    .overlapping-image-section .content-box {
        background: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin-left: -50px;
        position: relative;
        z-index: 5;
    }
}

.testimonial-card {
    background: #f9f9f9;
    padding: 2rem;
    border-left: 5px solid var(--brand-primary);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card .author {
    font-weight: bold;
    color: var(--brand-secondary);
}

.team-member-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.team-member-card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.team-member-card:hover img {
    transform: scale(1.1);
}

.team-member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(47, 53, 66, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}

.contact-info-box {
    background-color: var(--brand-secondary);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: 8px;
    height: 100%;
}

.contact-info-box .icon {
    color: var(--brand-primary);
    margin-right: 1rem;
}

.contact-info-box a {
    color: var(--text-light);
}

.radius-6 {
    border-radius: 8px;
}

.br-50 {
    border-radius: 50%;
}

iframe {
    border: 0;
}

.thanks {
    padding: 8rem 0;
}

.margin-auto {
    margin: auto;
}

.footer-link:hover {
    color: #f5f6fa;
}

@media (max-width: 478px) {
    .button.is-large {
        font-size: 1rem;
    }
}