/* Curtis Williams Jr. - Professional Photography Website */
/* Matching existing design with dark theme and red/green accents */

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

body {
    font-family: 'Georgia', 'Playfair Display', serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #000;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff4444;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?w=1600') center/cover;
}

.hero-tagline {
    color: #2ecc71;
    font-size: 1em;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4em;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero .subtitle {
    color: #2ecc71;
    font-size: 2em;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero .tagline-secondary {
    color: #ccc;
    font-size: 1em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-quote {
    font-size: 1.2em;
    font-style: italic;
    max-width: 800px;
    margin: 40px auto;
    color: #ddd;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid;
}

.btn-primary {
    background-color: #ff4444;
    color: #fff;
    border-color: #ff4444;
}

.btn-primary:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Page Sections */
main {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-title {
    font-size: 3em;
    color: #ff4444;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.page-description {
    text-align: center;
    font-size: 1.1em;
    color: #2ecc71;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #111;
    border: 2px solid #222;
    transition: transform 0.3s, border-color 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
}

.gallery-item:hover img {
    opacity: 0.8;
}

/* Video Section */
.video-section {
    margin: 80px 0;
}

.video-item {
    margin-bottom: 60px;
    background: #111;
    padding: 30px;
    border: 2px solid #222;
    border-radius: 8px;
}

.video-item h3 {
    color: #ff4444;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 400;
}

.video-item p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 20px;
    margin-top: 100px;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #fff;
}

.footer-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 1.1em;
}

.contact-item a {
    color: #2ecc71;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ff4444;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero .subtitle {
        font-size: 1.5em;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .page-title {
        font-size: 2em;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
