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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf9f6;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b89f4d;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #b89f4d;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://via.placeholder.com/1920x800?text=Your+Best+Photography');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background-color: #b89f4d;
    color: white;
}

.btn-gold:hover {
    background-color: #a08635;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #b89f4d;
    color: #b89f4d;
    background: transparent;
}

.btn-outline:hover {
    background-color: #b89f4d;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Portfolio Section */
.portfolio-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #b89f4d;
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(184, 159, 77, 0.9);
    color: white;
    padding: 1rem;
    text-align: center;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

/* Page Header */
.page-header {
    background-color: #b89f4d;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content, .blog-grid, .services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Blog Styles */
.blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-post img {
    width: 100%;
    height: auto;
}

.blog-post h2 {
    padding: 0 1.5rem 1rem;
    color: #b89f4d;
}

.blog-post .date {
    padding: 0 1.5rem;
    color: #666;
    font-style: italic;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: auto;
}

.service-card h2 {
    padding: 1.5rem;
    background-color: #f8f7f4;
    color: #b89f4d;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem 1rem;
}

.service-features {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.contact-info h2, .contact-form h2 {
    color: #b89f4d;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b89f4d;
    box-shadow: 0 0 5px rgba(184, 159, 77, 0.3);
}

/* FAQ Section */
.faq-section details {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.faq-section summary {
    font-weight: bold;
    color: #b89f4d;
}

/* Additional Info */
.additional-info {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #b89f4d;
}

.additional-info h2 {
    color: #b89f4d;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .gallery-grid,
    .services-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .blog-post {
        max-width: 600px;
        margin: 0 auto;
    }
}
