/* --------------------------------------------------
   Line & Grain Cabinetry — Light Artisan Theme
   Font: Candara
   Palette: Jarrah Brown #7E4B27, Off-white #F9F8F6
   -------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Candara&display=swap');

:root {
    --jarrah: #7E4B27;
    --offwhite: #F9F8F6;
    --text-dark: #333;
    --shadow: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: Candara, sans-serif;
    background-color: var(--offwhite);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header */
header {
    background: var(--offwhite);
    box-shadow: 0 2px 6px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--jarrah);
}

.header-contact a {
    color: var(--jarrah);
    text-decoration: none;
    margin-left: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Hero */
.hero {
    background: url('assets/Kitchen.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--jarrah);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #5f361e;
}

/* Sections */
section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;

    /* About Section Styling */
        #about {
            font-size: 1.15rem;
            /* Bigger text */
            line-height: 1.9;
            /* More space between lines */
            letter-spacing: 0.2px;
            /* Slightly more open letters */
        }
    
        #about p {
            margin-bottom: 1.5rem;
            /* Space between paragraphs */
            text-align: justify;
            /* Neat edges for longer text */
        }
    
        #about h2 {
            font-size: 2.2rem;
            /* Slightly larger heading */
            margin-bottom: 2rem;
            color: var(--jarrah);
            /* Keeps your brand color */
            text-align: center;
        }
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--jarrah);
}

/* Gallery */
.swiper {
    width: 100%;
    height: 500px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--jarrah);
}

.swiper-pagination-bullet {
    background: var(--jarrah);
}

/* Contact */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Candara, sans-serif;
}

button.btn {
    align-self: center;
    cursor: pointer;
}

/* Thank You Popup */
.thank-you {
    display: none;
    text-align: center;
    background: var(--jarrah);
    color: #fff;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: Candara, sans-serif;
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-top: 2rem;
    line-height: 1.8;
}

.contact-info a {
    color: var(--jarrah);
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--offwhite);
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
    }

    nav {
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .swiper {
        height: 350px;
    }
}