/* 
   North Harbor Collective - Elegant Coastal Aesthetic
   Design Philosophy: Premium, minimalist, high-end interior finishing
   Color Palette: Sand (#E8DCC4), White (#FFFFFF), Soft Gray (#A8A8A8), Navy (#2C3E50)
   Typography: Playfair Display (headlines), Lato (body)
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #FFFFFF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #2C3E50;
}

.nav-phone a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 600;
    font-size: 14px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    max-width: 700px;
    padding: 0 20px;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subheadline {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary {
    background-color: #2C3E50;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #2C3E50;
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background-color: #FAFAF8;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

.about p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.highlight {
    padding: 30px;
    background-color: #FFFFFF;
    border-left: 4px solid #2C3E50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C3E50;
}

.highlight p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

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

.service-card {
    padding: 40px;
    background-color: #FAFAF8;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C3E50;
}

.service-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 80px 0;
    background-color: #FAFAF8;
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

.gallery-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
    font-size: 16px;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-us {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.why-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

.why-us-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #FAFAF8;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkmark {
    font-size: 24px;
    color: #2C3E50;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-us-item p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 80px 0;
    background-color: #FAFAF8;
}

.map-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

.map-container {
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.address-info {
    text-align: center;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 4px;
}

.address-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.address-info strong {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2C3E50;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
    font-size: 16px;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: #FAFAF8;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D0D0D0;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C3E50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    background-color: #E8F5E9;
    border-left: 4px solid #4CAF50;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}

.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2E7D32;
    margin-bottom: 10px;
}

.success-message p {
    color: #558B2F;
    font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #BDC3C7;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #E8DCC4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #95A5A6;
    font-size: 13px;
}

/* ===== ERROR MESSAGES ===== */
.error-message {
    color: #ff6b6b;
    margin-top: 5px;
    font-size: 14px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        height: 400px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about,
    .services,
    .gallery,
    .why-us,
    .map-section,
    .contact {
        padding: 50px 0;
    }

    .about h2,
    .services h2,
    .gallery h2,
    .why-us h2,
    .map-section h2,
    .contact h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .services-grid,
    .gallery-grid,
    .why-us-list {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        height: 300px;
    }

    .hero-headline {
        font-size: 24px;
    }

    .hero-subheadline {
        font-size: 14px;
    }

    .about h2,
    .services h2,
    .gallery h2,
    .why-us h2,
    .map-section h2,
    .contact h2 {
        font-size: 24px;
    }

    .container {
        padding: 0 15px;
    }
}
