/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 0px; /* Add padding to the left and right sides */
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

/* all button design */
.custom-button {
    display: inline-block;
    font-size: 20px; /* Default font size */
    font-family: 'Arial', sans-serif; /* Default font family */
    font-weight: 549; /* Default font weight */
    color: #000000; /* Default text color */
    background-color: #A37E2D; /* Default background color */
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline from link */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    padding: 10px;
}

.custom-button:hover {
    background-color: #ffffff; /* Slightly darker on hover */
    color: #7DA908; /* Change text color on hover */
}














/* all button design */
.custom-but {
    display: inline-block;
    font-size: 20px; /* Default font size */
    font-weight: 549; /* Default font weight */
    color: #000000; /* Default text color */
    background-color: #A37E2D; /* Default background color */
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline from link */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom:  5px;
}

.custom-but:hover {
    background-color: #ffffff; /* Slightly darker on hover */
    color: #7DA908; /* Change text color on hover */
}








/* green button */
.custom-green {
    display: inline-block;
    font-size: 20px; /* Default font size */
    font-weight: 549; /* Default font weight */
    color: #000000; /* Default text color */
    background-color: #7DA908; /* Default background color */
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline from link */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom:  5px;
}

.custom-green:hover {
    background-color: #A37E2D; /* Slightly darker on hover */
    color: #ffffff; /* Change text color on hover */
}













/* concepts and inspirations introduction */
.child_room {
    width: 100%;
    background: #fff;
    margin: 0;
    padding: 0;
    position: relative; 
    z-index: 0; 
}

.child_room__hero {
    position: relative;
    width: 100%;
    height: 430px;
    background: url('img/carousel-1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.child_room__hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.child_room__hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.child_room__hero-title {
    font-size: 2.7rem;
    font-weight: 400;
    letter-spacing: .04em;
    margin-bottom: 18px;
    text-align: center;
}

.child_room__hero-title .highlight-text {
    color: #7DA908;
    text-decoration: underline;
}

.child_room__hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #e6e6e6;
}

/* Responsive Design */
@media (max-width: 900px) {
    .child_room__hero {
        height: 270px;
    }
    .child_room__hero-title {
        font-size: 1.3rem;
    }
    .child_room__hero-subtitle {
        font-size: 0.97rem;
        margin-bottom: 18px;
    }
    
    .child_room__slider-arrow {
        font-size: 1.5rem;
        padding: 4px 12px;
    }
}
























/* introduction images */
.children_room_imgs {
    display: flex;
    gap: 24px;
    padding: 24px;
    border-radius: 20px;
    max-width: fit-content;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -100px; 
    position: relative; 
    z-index: 10; 
}

.children_room_imgs__card {
    position: relative;
    flex: 1 1 0;
    min-width: 300px;
    max-width: 370px;
    border-radius: 20px;
    overflow: hidden;
    background: #333;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-end;
}

.children_room_imgs__img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

.children_room_imgs__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px 16px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.0) 100%);
    border-radius: 0 0 20px 20px;
    box-sizing: border-box;
}

.children_room_imgs__title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: bold;
    text-align: center;
}

.children_room_imgs__title-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: color 1.0s ease;
}

.children_room_imgs__title:hover {
    color: #A37E2D;
    text-decoration: underline;
    text-decoration-color: #7DA908;
}

@media (max-width: 1024px) {
    .children_room_imgs {
        max-width: 95vw;
        padding: 16px;
        gap: 16px;
        margin-top: -60px; 
    }
    .children_room_imgs__card {
        min-width: unset;
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .children_room_imgs {
        flex-direction: column;
        align-items: center;
        max-width: 90vw;
        margin-top: -40px; 
    }
}





























/* concepts and inspirations text and single image */
.concept_inspiration {
    background: #f5f5f5;
    padding: 40px 0 5px 0;
    width: 100%;
}
.concept_inspiration__header {
    text-align: center;
    margin-bottom: 32px;
}
.concept_inspiration__subtitle {
    color: #A37E2D;
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}
.concept_inspiration__title {
    font-size: 30px;
    font-weight: bold;
    color: #000000;
    margin: 0;
    letter-spacing: 0.01em;
}
.concept_inspiration__row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 38px auto;
    background: #fff;
    border-radius: 8px;
    padding: 36px 48px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}
.concept_inspiration__row--reverse {
    flex-direction: row-reverse;
}
.concept_inspiration__img-wrap {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.concept_inspiration__img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.concept_inspiration__info {
    flex: 2 1 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.concept_inspiration__number {
    font-size: 2.6rem;
    font-weight: bold;
    color: #111;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.concept_inspiration__number-line {
    display: inline-block;
    width: 64px;
    height: 2px;
    background: #111;
    margin-left: 12px;
    vertical-align: middle;
}

.concept_inspiration__desc {
    color: #333;
    font-size: 1rem;
    margin: 10px 0 16px 0;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .concept_inspiration__row, .concept_inspiration__row--reverse {
        flex-direction: column !important;
        gap: 18px;
        padding: 24px 10px;
        align-items: center;
    }
    .concept_inspiration__img {
        width: 90vw;
        max-width: 340px;
        height: auto;
    }
}
























/* concepts and inspirations products */
.concept_inspiration_products {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 24px 0;
    background: transparent;
    max-width: 1000px; 
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap; 
    justify-content: center; 
}

.concept_inspiration_products__card {
    position: relative;
    flex: 1 1 420px;
    max-width: 600px;
    min-width: 310px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    background: #f5f5f5;
    display: flex;
    align-items: stretch;
}

.concept_inspiration_products__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}

.concept_inspiration_products__card:hover .concept_inspiration_products__img {
    transform: scale(1.02);
}

.concept_inspiration_products__overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px 28px 18px 28px;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 80%, rgba(125, 169, 8, 0.6) 100%);
    box-sizing: border-box;
}


.concept_inspiration_products__category-link {
    display: inline-block; 
    text-decoration: none; 
    color: inherit; 
    margin-bottom: 8px; 
    transition: background 0.2s ease, color 0.2s ease;
}


.concept_inspiration_products__category {
    background: #f5f5f5;
    color: #333;
    font-size: 1rem;
    border-radius: 5px;
    padding: 2px 12px;
}


.concept_inspiration_products__category-link:hover .concept_inspiration_products__category {
    background: #A37E2D; 
    color: #fff; 
}


.concept_inspiration_products__title {
    padding-top: 15px;
    color: #ffffff;
    font-size: 22px;
    font-weight: normal;
    margin: 0 0 14px 0;
    line-height: 1.17;
}

@media (max-width: 900px) {
    .concept_inspiration_products {
        flex-direction: column;
        gap: 18px;
        max-width: 95vw; 
        padding: 24px; 
    }
    .concept_inspiration_products__img {
        height: 180px;
    }
    .concept_inspiration_products__card {
        max-width: unset; 
        width: 100%;
    }
}












































/* Add styles for footer */
.footer-nacnad-store-site-footer {
    background-color: #f5f5f5;
    color: #000000;
    padding: 50px 0;
}

.footer-nacnad-store-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nacnad-store-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-nacnad-store-column {
    flex: 1;
    padding: 0 15px;
}

.footer-nacnad-store-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-nacnad-store-title .footer-nacnad-store-furniture-link {
    color: #7DA908;
    text-decoration: none;
}

.footer-nacnad-store-title .footer-nacnad-store-furniture-link:hover {
    text-decoration: underline;
    color: #A37E2D;
}

.footer-nacnad-store-column h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    color: #000000;
}

.footer-nacnad-store-column .footer-nacnad-store-contact-info a {
    color: #A37E2D;
    text-decoration: none;
}

.footer-nacnad-store-column .footer-nacnad-store-contact-info a:hover {
    color: #7DA908;
    text-decoration: underline;
}

.footer-nacnad-store-column[data-fade-delay="400"] {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nacnad-store-designer-link {
    color: #7DA908;
    text-decoration: none;
}

.footer-nacnad-store-designer-link:hover {
    text-decoration: underline;
    color: #A37E2D;
}

.footer-nacnad-store-column[data-fade-delay="500"] .footer-nacnad-store-studio-info:nth-child(2) {
    padding-bottom: 10px;
}

.footer-nacnad-store-column[data-fade-delay="600"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-nacnad-store-column[data-fade-delay="600"] .footer-nacnad-store-copyright {
    padding: 10px 0;
    margin: 0;
}

.footer-nacnad-store-column .footer-nacnad-store-links {
    font-size: 16px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.8;
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-nacnad-store-column .footer-nacnad-store-links li {
    display: block;
    margin-bottom: 5px;
}

.footer-nacnad-store-column .footer-nacnad-store-links li a {
    color: #A37E2D;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-nacnad-store-column .footer-nacnad-store-links li a:hover {
    text-decoration: underline;
    color: #7DA908;
}

.footer-nacnad-store-contact-info a {
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-nacnad-store-column[data-fade-delay="800"] .footer-nacnad-store-social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nacnad-store-column[data-fade-delay="800"] .footer-nacnad-store-social-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-nacnad-store-column[data-fade-delay="800"] .footer-nacnad-store-social-links a {
    margin-right: 15px;
}

.footer-nacnad-store-column[data-fade-delay="800"] .footer-nacnad-store-social-links img.footer-nacnad-store-social-icon {
    width: 40px;
    height: 40px;
}

.footer-nacnad-store-bottom-row {
    border-top: 1px solid #000000;
    padding-top: 30px;
}

.footer-nacnad-store-copyright {
    font-size: 0.9em;
}

.footer-nacnad-store-row.footer-nacnad-store-bottom-row .footer-nacnad-store-column[data-fade-delay="800"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fade-up effect (basic) */
.footer-nacnad-store-column {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer-nacnad-store-column.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-nacnad-store-row {
        flex-direction: column;
    }
}











































/* Office space page */
/* about office  spaces */
.office_space {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* --- HERO SECTION --- */

.office_space__hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px; /* Slight reduction for mobile space */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Ensures content centers on all screens */
}

.office_space__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(125, 169, 8, 0.5);
    z-index: 1;
}

.office_space__hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Add padding for mobile readability */
    padding: 0 15px; 
}

.office_space__title {
    color: #fff;
    /* Default smaller size for mobile */
    font-size: 32px; 
    font-weight: 650;
    text-align: center;
    letter-spacing: 1px; /* Reduced for mobile */
    margin-bottom: 20px;
    margin-top: 0;
}

.office_space__hero-content p {
    color: #fff;
    max-width: 800px;
    text-align: center;
    font-size: 16px; /* Reduced for mobile readability */
    line-height: 1.5;
}

.bett {
    margin-top: 20px;
}


/* --- QUOTE/FORM SECTION (Mobile First) --- */

.office_space__quote-row {
    width: 100%;
    min-width: 320px;
    max-width: 1000px;
    /* Reduced margin-top for mobile to prevent huge overlap */
    margin: 12px auto 0 auto; 
    display: flex;
    /* Default to column layout for small screens */
    flex-direction: column; 
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    background: #fff;
    position: relative; 
    z-index: 3;
}

.office_space__col {
    flex: 1 1 auto; /* Use auto basis for mobile columns */
    padding: 26px 15px; /* Consistent mobile padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Remove fixed width restrictions for mobile */
    min-width: auto; 
    max-width: 100%;
}

.office_space__col--feature {
    background: #A37E2D;
    color: #fff;
    text-align: center;
}

.office_space__col--form {
    background: #333;
    color: #fff;
    align-items: stretch;
}

.office_space__feature-desc {
    font-size: 18px; /* Slightly reduced for mobile */
    color: #000000; /* NOTE: This color is hard to read on the #A37E2D background. 
                      You might want to change it to #fff or adjust the background. 
                      I am leaving it as you provided it. */
    margin: 0;
    line-height: 1.5;
}

.office_space__form-title {
    text-align: center;
    font-size: 20px; /* Reduced for mobile */
    font-weight: bold;
    margin-bottom: 18px;
    margin-top: 0;
    letter-spacing: 1px;
}

.office_space__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.office_space__input {
    background: transparent;
    border: 2px solid #7DA908;
    border-radius: 2px;
    color: #fff;
    padding: 9px 13px;
    font-size: 1rem;
    margin-bottom: 10px;
    outline: none;
    transition: border 0.2s;
}

.office_space__input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.office_space__input:focus {
    border-color: #000000;
}


/* --- DESKTOP MEDIA QUERY (950px and UP) --- */
@media (min-width: 951px) {
    /* Revert to desktop styles */
    
    .office_space__title {
        font-size: 50px;
        letter-spacing: 2px;
    }

    .office_space__hero-content p {
        font-size: 18px;
    }

    .office_space__quote-row {
        /* Re-enable the row layout */
        flex-direction: row; 
        width: 100%;
        /* Re-enable the overlap effect */
        margin: -70px auto 0 auto; 
    }
    
    .office_space__col {
        padding: 38px 24px;
    }

    /* Re-enable desktop fixed widths */
    .office_space__col--feature {
        min-width: 220px;
        max-width: 300px;
    }
    
    .office_space__col--form {
        min-width: 280px;
        max-width: 400px;
    }
    
    .office_space__feature-desc {
        font-size: 20px;
    }
}

/* Optional: Additional padding for the container on very wide screens */
@media (min-width: 1000px) {
    .office_space__quote-row {
        /* This ensures the max-width of 1000px is centered */
        margin: -70px auto 0 auto;
    }
}

