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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark grey text */
    background-color: #f4f4f7; /* Light grey background */
    font-weight: 400;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #222; /* Near black for headings */
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

a {
    color: #007aff; /* A slightly distinct link color, common in Apple's ecosystem */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Navigation */
#main-header {
    background-color: #ffffff; /* White header */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main-header .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
}

#main-header ul {
    list-style: none;
    display: flex;
}

#main-header ul li {
    margin-left: 30px;
}

#main-header ul li a {
    color: #444; /* Slightly lighter grey for nav links */
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

#main-header ul li a:hover {
    color: #007aff;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background-color: #e9e9ed; /* Slightly darker grey for hero */
    color: #333;
    height: 70vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.hero-section h1 {
    font-size: 3.5rem; /* Larger for hero */
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-section .tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: #007aff; /* Primary action color */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #005ecb; /* Darker shade on hover */
    text-decoration: none;
    transform: translateY(-2px);
}

/* Content Sections (About, Contact) */
.content-section {
    padding: 60px 0;
}

/* About Section Specifics */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    max-width: 500px; /* Control image size */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/* Contact Section Specifics */
.contact-section {
    background-color: #fff; /* White background for contact form area */
}

.contact-section p {
    text-align: center;
    margin-bottom: 10px;
}
.contact-section p:last-of-type {
    margin-bottom: 30px;
}


/* Form Styles */
form {
    max-width: 600px;
    margin: 20px auto 0 auto;
    padding: 20px;
    background-color: #f9f9f9; /* Light background for form itself */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.2);
}

form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Hidden class for honeypot */
.hidden {
    display: none;
}

/* Footer */
#main-footer {
    background-color: #2c3e50; /* Darker footer background */
    color: #e0e0e0; /* Light grey text for footer */
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

#main-footer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .tagline {
        font-size: 1.1rem;
    }
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }

    #main-header nav {
        flex-direction: column;
        align-items: center;
    }
    #main-header .logo {
        margin-bottom: 10px;
    }
    #main-header ul {
        padding-left: 0;
    }
    #main-header ul li {
        margin: 0 10px; /* Closer nav items on mobile */
    }

    .about-content {
        flex-direction: column;
    }
    .about-image {
        margin-top: 30px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: auto; /* Adjust height for small screens */
        padding: 40px 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .tagline {
        font-size: 1rem;
    }
    #main-header .logo {
        font-size: 1.5rem;
    }
    #main-header ul li a {
        font-size: 0.9rem;
    }
    .cta-button, form button[type="submit"] {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    form {
        padding: 15px;
    }
}
