/* JDubs Photography Static Site Styles */
:root {
    --go--color--white: hsl(0, 0%, 100%);
    --go--color--primary: hsl(28, 78%, 44%);
    --go--color--secondary: hsl(210, 51%, 15%);
    --go--color--tertiary: hsl(0, 0%, 97%);
    --go--color--background: hsl(0, 0%, 100%);
    --go-footer--color--background: hsl(0, 0%, 96%);
    --go--font-family: "Nunito Sans", sans-serif;
    --go-heading--font-family: "Crimson Text", serif;
    --go--font-size: 1.05rem;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--go--font-family);
    font-size: var(--go--font-size);
    line-height: 1.85;
    color: #434a56;
    background-color: var(--go--color--background);
}

/* Header Styles */
.header {
    background-color: var(--go--color--background);
    z-index: 99;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 60px;
}

.header__titles {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-width: 100px;
    height: auto;
}

.site-title {
    color: var(--go--color--secondary);
    font-family: var(--go-heading--font-family);
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0;
    margin-left: 2vw;
    text-decoration: none;
}

/* Navigation Styles */
.header__navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin-left: 2vw;
}

.primary-menu a {
    color: var(--go--color--secondary);
    font-family: var(--go-heading--font-family);
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 400;
}

.primary-menu a:hover {
    color: var(--go--color--primary);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 784px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 839px;
    padding: 2rem;
}

.hero-content h1 {
    font-family: Arial, sans-serif;
    font-size: 30px;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-family: Arial, sans-serif;
    font-size: 30px;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content a {
    color: white;
    text-decoration: underline;
}

.hero-content a:hover {
    color: var(--go--color--primary);
}

/* Footer Styles */
.site-footer {
    background-color: var(--go-footer--color--background);
    padding: 2rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    gap: 1rem;
}

.social-icons svg {
    width: 24px;
    height: 24px;
    fill: #212121;
}

.footer-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--go--color--secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--go--color--primary);
}

.site-info {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
}

.nav-toggle svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: var(--go--color--secondary);
}

/* Responsive Design */
@media (max-width: 960px) {
    .header__navigation {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .header__inner {
        padding: 2vw 20px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .custom-logo {
        max-width: 80px;
    }
    
    .site-title {
        font-size: 1.4rem;
        margin-left: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

/* About Page Styles */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-content h1 {
    font-family: var(--go-heading--font-family);
    color: var(--go--color--secondary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.page-content h2 {
    font-family: var(--go-heading--font-family);
    color: var(--go--color--secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}