/* Fresh, Calm, Elegant Design for JNS Kitchens */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
    font-weight: 400;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: #666666;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid;
    cursor: pointer;
    background: transparent;
}

.btn-primary {
    color: #9F865E;
    border-color: #9F865E;
}

.btn-primary:hover {
    background-color: #9F865E;
    color: #ffffff;
}

.btn-secondary {
    color: #2c2c2c;
    border-color: #2c2c2c;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    border-radius: 0;
}

.header.scrolled {
    background-color: rgba(250, 250, 250, 0.98);
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-brand a {
    display: block;
    line-height: 0;
}

.nav-brand img {
    height: 40px;
    width: auto;
    cursor: pointer;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #9F865E;
}

.nav-contact {
    flex-shrink: 0;
}

/* Hide mobile contact button on desktop */
.nav-contact-mobile {
    display: none;
}

/* Show desktop contact button */
.nav-contact-desktop {
    display: block;
}

.nav-contact .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.hero-text .highlight {
    color: #9F865E;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #666666;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.about-features {
    margin-top: 3rem;
}

.feature {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.feature:last-child {
    border-bottom: none;
}

.feature h3 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.feature p {
    color: #666666;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Work Section */
.work {
    padding: 120px 0;
    background-color: #f8f8f8;
}

.work-header {
    text-align: center;
    margin-bottom: 5rem;
}

.work-header h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.work-item {
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

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

.work-item-content {
    padding: 2rem;
}

.work-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.work-item p {
    color: #666666;
    margin: 0;
}

.work-button {
    text-align: center;
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background-color: #ffffff;
}

.reviews-header {
    text-align: center;
    margin-bottom: 5rem;
}

.reviews-header h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.review-item {
    background-color: #f8f8f8;
    padding: 3rem;
    text-align: center;
}

.review-stars {
    color: #9F865E;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.review-item p {
    font-style: italic;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-size: 1.1rem;
}

.review-author {
    font-weight: 500;
    color: #9F865E;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: #f8f8f8;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-header h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.contact-info p {
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #666666;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    color: #999999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #9F865E;
}

.contact-form-wrapper {
    background-color: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e5e5e5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    color: #2c2c2c;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9F865E;
    background-color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaaaaa;
}

.contact-form select {
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 4rem 0 2rem;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-brand a {
    display: inline-block;
    line-height: 0;
}

.footer-brand img {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
    color: #9F865E;
}

.footer-contact a {
    color: #9F865E;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-contact p {
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444444;
    color: #999999;
}

/* Gallery Styles */
.gallery-hero {
    padding: 150px 0 100px;
    background-color: #f8f8f8;
    text-align: center;
}

.gallery-hero h1 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.gallery-hero p {
    font-size: 1.2rem;
    color: #666666;
}

.gallery {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.gallery-item {
    background-color: #f8f8f8;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
}

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

.gallery-item-content {
    padding: 2rem;
}

.gallery-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.gallery-item p {
    color: #666666;
    margin: 0;
}

.gallery-cta {
    padding: 100px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.gallery-cta h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.gallery-cta p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
}