/* Payton Theme Inspired Styling */

html {
    scroll-behavior: smooth;
}

body {
    /* Fonts like those in the Payton theme */
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin: 0;
    background-color: #FCFDFD; /* A very light off-white */
    color: #4A4A4A;
    line-height: 1.8;
}

h1, h2, h3 {
    /* An elegant serif font for headings */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333;
}

/* --- Hero Header --- */
header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    /* Replace with a high-quality photo of a beautiful landscape */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://via.placeholder.com/1920x1080.png/2c3e50/FFFFFF?text=Beautiful+Landscape+Image') no-repeat center center/cover;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0 0 1rem 0;
    color: white;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* --- Sticky Navigation --- */
nav {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3A5B44; /* Deep green accent */
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 30px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover, nav ul li a:hover {
    color: #3A5B44;
}

/* --- Main Content & Sections --- */
main {
    width: 100%;
}

section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    /* This ensures jump links land correctly below the sticky nav */
    scroll-margin-top: 70px; 
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 3rem;
}

/* --- Services & Portfolio Grids --- */
.services-grid, .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 5px;
}

.service-card h3 {
    color: #3A5B44;
    font-size: 1.4rem;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.portfolio-item img:hover {
    transform: scale(1.05);
}


/* --- About Section --- */
#about p {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

/* --- Contact & CTA Button --- */
#contact {
    background: #f4f7f6;
}

.cta-button {
    display: inline-block;
    background-color: #3A5B44;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2e4936;
}

.contact-details {
    margin-top: 1.5rem;
    color: #666;
}

/* --- Footer --- */
footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    text-align: center;
    padding: 2rem;
}
