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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 4px;
    border-bottom: 1px solid #ddd;
    opacity: 0.95;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.left-section {
    display: flex;
    align-items: center;
}

.left-section .logo {
    margin-right: 0px;
    width: 10px;
}

.left-section .logo img {
    width: 60px;
    height: 60px;
    margin-left: 8px;
}
.left-section .donbutto {
	margin-top: 2px;
}

.desktop-nav {
    display: none;
}

.menuICON {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

.menuICON a:hover {
    text-decoration: none;
}

#navON {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c2421;
    z-index: 10001;
    overflow-y: auto;
    padding: 60px 20px 20px;
    box-sizing: border-box;
}

#navON .nav-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: #999;
    text-decoration: none;
}

#navON #navbox {
    background-color: transparent;
    border-top: none;
    margin-top: 0;
}

#navON #topnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
}

#navON #topnav ul li {
    margin-bottom: 20px;
}

#navON #topnav ul li a {
    font-size: 1.5em;
    color: #dddddd;
    text-decoration: none;
    text-transform: uppercase;
}

#navON #topnav ul li a:hover {
    color: #fafafa;
}

/* Hide desktop navigation and header elements when mobile menu is open */
#navON[style*="block"] ~ .header-inner .desktop-nav,
#navON[style*="block"] ~ .header-inner .menuICON {
    display: none;
}

@media (min-width: 769px) {
    .desktop-nav {
        display: block;
        margin-right: 40px;
    }
    .menuICON { display: none; }
    #topnav ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        padding-top: 0px;
        gap: 20px;
    }
    #topnav li a {
        font-size: 0.8em;
        color: #666;
        text-decoration: none;
    }
    #topnav li a:hover {
        color: #a85c32;
    }
}

/* Main Content */
main {
    margin-top: 50px;
    width: 100%;
    padding: 20px 0;
    background-color: #f4efe9;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.section-content {
    max-width: 1100px;
    width: 92%;
    margin: 0 auto;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.section p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

/* Hero */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2c2421;
    min-height: 480px;
    margin: 0 0 40px 0;
    padding: 0;
}

/* Card grid - homepage domain cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

.card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: #ddd2c2;
}

.card-body {
    padding: 16px;
    text-align: left;
    flex: 1;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body p {
    font-size: 16px;
    margin-bottom: 0;
    text-align: left;
    color: #555;
}

.category-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    margin: 0 0 40px 0;
    overflow: hidden;
    background-color: #2c2421;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    font-size: 56px;
    line-height: 1;
    text-decoration: none;
    opacity: 0.55;
    padding: 14px 20px;
    transition: opacity 0.2s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-nav:hover {
    opacity: 0.9;
    text-decoration: none;
}

.hero-nav-prev {
    left: 4px;
}

.hero-nav-next {
    right: 4px;
}

@media (max-width: 768px) {
    .hero-nav {
        font-size: 38px;
        padding: 10px 14px;
    }
}

.category-hero-bg {
    position: absolute;
    inset: 0;
    background-repeat: repeat;
    background-position: center;
    background-size: 360px;
    opacity: 0.20;
    filter: blur(4px);
    transform: scale(1.04);
}

.category-hero-fg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.category-hero .section-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 28px 24px;
    max-width: 640px;
    text-align: center;
}

.category-hero h1 {
    color: #fff;
    font-size: 34px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 1px;
}

.category-hero .tagline {
    color: #fff;
    font-size: 19px;
    line-height: 1.1;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .category-hero {
        min-height: 300px;
    }

    .category-hero h1 {
        font-size: 26px;
    }

    .category-hero .tagline {
        font-size: 16px;
    }
}

/* Full-width graph on stub pages */
.stub-graph {
    display: block;
    width: 100%;
    height: auto;
    margin: 12px 0 20px;
    border-radius: 6px;
    border: 1px solid #e0d8cc;
}

/* Category thumbnail with text wrap */
.category-thumb-wrap {
    overflow: hidden;
    margin: 16px 0 20px;
}

.category-thumb-float {
    float: left;
    width: 160px;
    height: auto;
    margin: 0 20px 12px 0;
    border-radius: 6px;
}

.category-thumb-wrap p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

@media (max-width: 480px) {
    .category-thumb-float {
        float: none;
        width: 100%;
        margin: 0 0 14px 0;
    }
}

/* Sub-item list - category landing pages */
.subitem-list {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.subitem-list li {
    padding: 14px 0;
    border-bottom: 1px solid #e0d8cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subitem-list a.button {
    display: inline-block;
    color: #fff;
    background-color: #a85c32;
    padding: 6px 14px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.subitem-list a.button:hover {
    background-color: #fff;
    color: #a85c32;
    border-color: #a85c32;
}

.subitem-list .status-soon {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
}

.signup {
    background: #2c2421;
    color: #f4efe9;
    text-align: center;
    padding: 40px 32px;
}

.signup h2 {
    color: #fff;
    font-size: 1.4rem;
}

.signup p {
    margin: 0 0 18px;
    color: #ddd2c2;
}

.signup form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 480px;
    margin: 0 auto;
}

.signup input[type="email"] {
    flex: 1 1 260px;
    padding: 12px 14px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.signup input[type="submit"] {
    padding: 12px 22px;
    background: #a85c32;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.signup input[type="submit"]:hover {
    background: #8f4c28;
}

/* Footer */
footer {
    background-color: #2c2421;
    color: #fff;
    padding: 24px 0;
    text-align: center;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.social-link:hover {
    color: #d98e4a;
}

footer p {
    margin: 0;
    font-size: 0.75em;
    color: #bbb;
}

/* Mobile Responsiveness */
@media (max-width: 1000px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 340px;
    }

    .section h2 {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Merged from photography/css/style.css + hero.css (2026-07-09)
   ============================================================ */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 100;
    letter-spacing: 5px;
    font-size: 120%;
    color: #aaa;
    text-align: center;
    padding: 30px 0 20px 0;
    margin: 0;
}

h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 100;
    letter-spacing: 1px;
    font-size: 110%;
    color: #999;
    text-align: center;
}

/* Content section blocks (photography bio/contact pages) */
div.content-grey {
    clear: both;
    padding: 20px 5% 35px;
    background-color: #dddddd;
    color: #333;
}
div.content-grey p { margin: 0 auto; text-align: center; width: 80%; max-width: 1200px; }
div.content-grey a { color: #555; }
div.content-grey a:hover { color: #333333; text-decoration: underline; }
div.content-grey h1, div.content-grey h2 { color: #333; }

div.content-black {
    clear: both;
    padding: 20px 5% 35px;
    background-color: #333333;
    color: #CCCCCC;
}
div.content-black p { margin: 0 auto; text-align: center; width: 80%; max-width: 1200px; }
div.content-black a { color: #EEEEEE; }
div.content-black a:hover { color: #fafafa; text-decoration: none; }
div.content-black h2 { color: #DDDDDD; }
div.content-black hr { border: 1px solid #555555; height: 0.01em; }

div.content-white {
    clear: both;
    padding: 20px 5% 35px;
    background-color: #fff;
    color: #666666;
}
div.content-white p { margin: 0 auto; text-align: center; width: 80%; max-width: 1200px; }
div.content-white a { color: #666; }
div.content-white a:hover { color: #6B0F1A; text-decoration: none; }
div.content-white h2 { color: #666; }

/* Masonry photo grid - individual gallery pages (dance/fitness/masonic/onlocation/concepts/portraiture) */
.gallery-grid {
    column-count: 3;
    column-gap: 12px;
    padding: 12px;
    width: 95%;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
    break-inside: avoid;
    object-fit: cover;
}
@media (max-width: 1024px) {
    .gallery-grid { column-count: 2; }
}
@media (max-width: 768px) {
    .gallery-grid { column-count: 1; }
}

/* Galleries index grid (galleries.html / portfolio.html preview cards) */
.galleries-section {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 20px;
}
.galleries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.gallery-item {
    position: relative;
}
.image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    overflow: hidden;
}
.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .image-wrapper img {
    transform: scale(1.05);
}
.gallery-caption {
    padding: 10px 0;
    text-align: center;
}
.gallery-caption a { color: #666; }
.gallery-caption a:hover { color: #333; text-decoration: none; }
.gallery-caption h3 {
    font-size: 1em;
    font-weight: 100;
    margin: 0 0 5px;
}
.gallery-caption p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1200px) {
    .galleries-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
    .galleries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .galleries-grid { grid-template-columns: 1fr; }
    .galleries-section { margin: 40px auto; }
}

/* Photography homepage hero slider (portfolio.html) */
#hero-slider {
    background-color: #333;
    background-image:
        linear-gradient(to right, #000 0%, transparent 50%),
        linear-gradient(to left,  #000 0%, transparent 50%);
    background-size: 50% 100%, 50% 100%;
    background-position: left, right;
    background-repeat: no-repeat;
    top: 120px;
    left: auto;
    width: 100%;
    height: calc(100vh - 90px);
    height: calc(100dvh - 90px);
    overflow: hidden;
    z-index: 1;
}
#hero-slider .track {
    position: relative;
    height: 100%;
    transition: transform .6s cubic-bezier(.7,0,.3,1);
    background: transparent;
}
#hero-slider .hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
#hero-slider .hero-slide:first-child {
    opacity: 1;
}
#hero-slider .hero-slide img {
    height: auto;
    width: auto;
    object-position: center;
    object-fit: contain;
    border-top: 1px solid #555;
    border-right: 1px solid #555;
    border-bottom: 1px solid #444;
    border-left: 1px solid #444;
    max-height: 90%;
    max-width: 100%;
    margin: 40px;
    box-shadow: -8px 12px 20px rgba(0, 0, 0, 0.9);
}

/* Connect / social links page */
.connect-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.connect-list li {
    border-bottom: 1px solid #e0d8cc;
}

.connect-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px;
    text-decoration: none;
    color: #2c2421;
    transition: background 0.15s ease;
}

.connect-link:hover {
    background: #f4efe9;
    text-decoration: none;
}

.connect-platform {
    font-size: 18px;
    font-weight: 600;
}

.connect-handle {
    font-size: 15px;
    color: #a85c32;
}
