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

body {
    font-family: 'Times New Roman', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: -0.8px;
}

/* Navigation */
.navbar {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.nav-links li {
    margin-left: 50px;
}

.nav-links li:last-child {
    margin-right: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    background: none;
    overflow: hidden;
    padding: 0;
    text-align: left;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.70)), 
                url('images/SummaryBackground.png') center/cover;
    z-index: -1;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* Services Section */
.services {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 100px 0 40px;
    background: #fff;
}

.services .container {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 40px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin: 15px 0;
    line-height: 1.2;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

.service-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image {
    opacity: 0.9;
}

/* Combined About & Contact Section */
.about-contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-section, .contact-section {
    max-width: 600px;
}

.about-section {
    justify-self: end;
}

.contact-section {
    justify-self: start;
}

/* Update responsive design for the combined section */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 80px 20px;
    }
    
    h2 {
        font-size: 2.5rem !important;
    }
    
    .service-image {
        height: 250px;
    }
    
    .services-grid {
        gap: 60px;
    }
    
    .logo {
        height: 45px;
    }
    
    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-section, .contact-section {
        justify-self: center;
        text-align: center;
        max-width: 100%;
    }
} 

section {
    padding: 80px 0;
} 

.logo-link {
    display: flex;
    height: 100%;
    align-items: center;
    text-decoration: none;
}

.logo-link:hover {
    opacity: 0.9;
} 