body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #fff;
}

.site-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.site-branding .custom-logo {
    max-height: 70px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}

#hero {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

#hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    font-weight: normal;
}

#hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.6;
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: normal;
}

section h2 a {
    text-decoration: none;
    color: #333;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.work-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Us Page */
.about-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
}

.journey-of-love {
    padding: 60px 20px;
    text-align: center;
}

.journey-chapter {
    margin-bottom: 40px;
}

#testimonials .testimonial {
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    font-size: 1.2em;
    line-height: 1.8;
}

#about ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

#about ul li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1em;
}

.site-footer {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.footer-logo img {
    max-height: 60px;
}

.footer-info h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.footer-social a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.site-info {
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
}

/* Our Works Page */
.our-works-page .page-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.our-works-page .page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.works-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.work-item {
    position: relative;
    overflow: hidden;
}

.work-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.work-item:hover img {
    transform: scale(1.05);
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.work-item:hover .work-info {
    transform: translateY(0);
}

.work-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.work-info p {
    margin: 0;
    font-size: 1rem;
}

/* Services Page */
.services-page .services-intro {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

.services-page .services-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-page .service-package {
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.services-page .service-package .container {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-page .service-package:nth-child(odd) .container {
    flex-direction: row-reverse;
}

.services-page .service-content {
    flex: 1;
    text-align: left;
}

.services-page .service-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.services-page .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #888;
}

.services-page .service-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.services-page .service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-page .service-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.services-page .service-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.services-page .service-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) {
    .services-page .service-images {
        grid-template-columns: 1fr 1fr;
    }
}

/* Our Works Page Filter */
.filter-buttons {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-button {
    background: none;
    border: 1px solid #ccc;
    color: #333;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
    background-color: #333;
    color: #fff;
    border-color: #333;
}
