/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2c5f8d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* ===================================
   Header
   =================================== */
.header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 40px 0;
    text-align: center;
}

.header .logo {
    max-width: 600px;
    margin: 0 auto 20px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background-color: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ===================================
   About Section
   =================================== */
.about {
    background-color: #fff;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 400;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    color: #555;
}

/* ===================================
   Print Availability Section
   =================================== */
.prints {
    background-color: #f8f9fa;
}

.prints h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 400;
}

.prints p {
    font-size: 1.1rem;
    max-width: 800px;
    color: #555;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    text-align: center;
    background-color: #fff;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 400;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact .email {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 20px;
}

.contact .email a {
    color: #667eea;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    margin-bottom: 10px;
}

.footer .disclaimer {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-style: italic;
}

/* ===================================
   Mobile Responsiveness
   =================================== */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero .lead {
        font-size: 1.1rem;
    }

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

    section {
        padding: 40px 0;
    }

    .hero {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .header .logo {
        max-width: 200px;
    }

    .header h1 {
        font-size: 1.3rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .gallery-item img {
        height: 250px;
    }
}
