/* SquirtCam.live - Custom CSS */
/* Theme: Teal/Aqua fresh */

:root {
    --primary: #009688;
    --primary-dark: #00796b;
    --primary-light: #4db6ac;
    --accent: #80cbc4;
    --dark: #1a2a32;
    --text: #37474f;
}

body {
    font-family: 'Roboto', -apple-system, sans-serif;
    color: var(--text);
}

/* Nav */
.nav-wrapper {
    background: var(--dark);
}

.brand-logo {
    font-weight: 700;
    font-size: 1.6rem !important;
}

.brand-logo span {
    color: var(--primary-light);
}

nav ul a {
    font-weight: 500;
}

nav ul li.active a {
    background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    color: white;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #234e52 100%);
    padding: 2rem 0 3rem;
    color: white;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.page-header .flow-text {
    color: var(--accent);
}

.breadcrumb {
    color: rgba(255,255,255,0.7) !important;
}

.breadcrumb:last-child {
    color: white !important;
}

.breadcrumb:before {
    color: rgba(255,255,255,0.5) !important;
}

/* Buttons */
.btn, .btn-large {
    border-radius: 6px;
    text-transform: none;
    font-weight: 600;
}

.btn-flat {
    border: 2px solid white;
    border-radius: 6px;
}

/* Cards */
.card {
    border-radius: 10px;
}

.card .card-image img {
    height: 180px;
    object-fit: cover;
}

.card .card-title {
    font-weight: 600;
}

.card.hoverable:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Collection */
.collection .collection-item {
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

/* Card Panel */
.card-panel {
    border-radius: 8px;
}

/* Section */
.section {
    padding: 4rem 0;
}

.section h2, .section h3 {
    color: var(--dark);
}

.section h4 {
    color: var(--primary-dark);
    margin-top: 2rem;
}

/* Footer */
.page-footer {
    padding-top: 2rem;
}

.page-footer h5 {
    font-weight: 600;
}

.footer-copyright {
    padding: 1rem 0;
}

/* Responsive */
@media only screen and (max-width: 600px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }

    .btn-large {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Images */
.responsive-img.z-depth-2 {
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* Flow text adjustment */
.flow-text {
    font-size: 1.1rem;
}
