
:root {
    --red: #ba5a5a;
    --dark: #403737;
    --beige: #FFF0DD;
    --white: #ffffff;
    --font-head: "Krungthep", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--beige);
    color: var(--dark);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1, h2, h3, h4 {   font-family: "Krungthep", sans-serif;  text-transform: uppercase; letter-spacing: 1px; }

.header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px; background: var(--red); color: #fff;
}
.logo { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 1px; display: flex; gap: 10px; align-items: center; }
nav a {
    margin: 0 15px; text-decoration: none; color: rgba(255,255,255,0.8);
    font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 1px;
}
nav a:hover, nav a.active { color: #fff; }
.header-icons a { color: #fff; margin-left: 15px; }


.hero {
    background: var(--red); height: 600px; text-align: center;
    position: relative; padding-top: 50px; overflow: hidden;
}
.hero-title {
    font-size: 15rem; color: transparent;
    -webkit-text-stroke: 4px var(--beige); line-height: 0.8;
    position: relative; z-index: 1; margin-top: 20px;
}
#hero-3d-placeholder {
    position: absolute; top: 60%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 400px; z-index: 2;
    display: flex; justify-content: center; align-items: center;
}
#hero-3d-placeholder img { width: 100%; height: 100%; object-fit: contain; }


.pattern-bg {
    background-color: var(--beige);

    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 1;
}

.offer { padding: 80px 50px; text-align: center; }
.offer h2 { font-size: 3rem; margin-bottom: 10px; }
.subtitle { max-width: 500px; margin: 0 auto 50px; color: #666; font-size: 0.95rem; }


.card {
    width: 100%; max-width: 1000px; margin: 0 auto 50px;
    border-radius: 20px; padding: 50px;
    display: flex; align-items: center; gap: 50px;
    position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.card.red { background: var(--red); color: #fff; }
.card.dark { background: var(--dark); color: #fff; }

.card-image img { width: 300px; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.tilt-left img { transform: rotate(-10deg); }
.tilt-right img { transform: rotate(10deg); }

.text { flex: 1; text-align: left; }
.text h3 { font-size: 2.5rem; margin-bottom: 15px; }
.text p { font-family: var(--font-body); margin-bottom: 20px; opacity: 0.9; line-height: 1.5; font-size: 0.95rem; }

.kanji-list { list-style: none; text-align: left; }
.kanji-list li { margin-bottom: 8px; font-size: 0.9rem; display: flex; gap: 10px; align-items: center; }
.kanji-list span { font-family: var(--font-head); font-weight: bold; opacity: 0.6; font-size: 1.1rem; }
.red-bullets span { color: var(--red); opacity: 1; }

.btn { padding: 10px 30px; border: none; border-radius: 4px; font-family: var(--font-head); font-size: 1.1rem; cursor: pointer; transition: 0.3s; margin-top: 20px;}
.btn-dark { background: var(--dark); color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn:hover { transform: translateY(-3px); }


.card.wide-layout {
    flex-direction: column; 
    align-items: flex-start;
    padding: 60px;
}


.wide-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
    gap: 40px;
}
.wide-text {
    flex: 1;
    text-align: left;
}
.wide-text h3 { font-size: 2.5rem; margin-bottom: 15px; }
.wide-text p { opacity: 0.9; line-height: 1.6; font-size: 0.95rem; }

.wide-list {
    flex: 1;
    display: flex;
    justify-content: flex-end; 
}
.wide-list ul {
    list-style: none;
    text-align: left;
}
.wide-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wide-list i {
    color: var(--dark); 
    color: rgba(0,0,0,0.3); 
    font-size: 1rem;
}


.wide-bottom {
    width: 100%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wide-bottom img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    margin-bottom: -30px; 
}
.centered-btn {
    margin-top: 10px;
    position: relative;
    z-index: 2; 
}


.how { padding: 50px 50px 100px; text-align: center; position: relative; }

.lanterns { position: absolute; top:-200px; left: 80px; display: flex; gap: 15px; z-index: 5; }
.lantern { width: 35px; background: #d85c5c; border-radius: 8px; position: relative; box-shadow: 0 5px 10px rgba(0,0,0,0.2); border: 1px solid rgba(0,0,0,0.1); }
.lantern::before { content:''; position: absolute; top:-50px; left:50%; width:1px; height:50px; background:#333; }
.l1 { height: 50px; margin-top: 10px; } 
.l2 { height: 40px; margin-top: 25px; }
.l3 { height: 30px; margin-top: 40px; }

.steps-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step-box { background: var(--dark); color: #fff; padding: 40px 30px; width: 300px; border-radius: 15px; text-align: left; }
.step-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.step-number { 
    font-family: "Krungthep", sans-serif; 
    font-size: 3.5rem; 
    color: #ba5a5a;      
    font-weight: 100;    
    line-height: 1; 
    margin-right: 15px;  
    opacity: 1;          
}
.step-box h4 { font-size: 1.2rem; margin-bottom: 10px; text-transform: none; }
.step-box p { font-size: 0.85rem; opacity: 0.7; line-height: 1.5; }


.why { background: var(--red); color: #fff; padding: 80px 50px; position: relative; overflow: hidden; }
.why-container { display: flex; max-width: 1100px; margin: 0 auto; gap: 60px; align-items: center; position: relative; z-index: 2;}
.why-text { flex: 1.2; }
.why-visual { flex: 0.8; text-align: center; }

.why-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.why-desc { margin-bottom: 40px; opacity: 0.9; line-height: 1.6; font-size: 0.95rem; }

.feature { display: flex; gap: 20px; margin-bottom: 30px; }
.feature i { font-size: 1.2rem; color: var(--dark); opacity: 0.5; margin-top: 5px; }
.feature h4 { font-size: 1.1rem; margin-bottom: 5px; text-transform: none; }
.feature p { opacity: 0.8; font-size: 0.9rem; line-height: 1.4; }


.lanterns-right { position: absolute; top: -20px; right: 100px; display: flex; gap: 10px; }
.lantern-red { width: 40px; height: 60px; background: #a14646; border-radius: 10px; position: relative; }
.lantern-red::before { content:''; position: absolute; top:-40px; left:50%; width:1px; height:40px; background:#403737; }
.lantern-red.small { height: 40px; margin-top: 15px; }

.kanji-border { 
    position: absolute; bottom: -30px; left: 0; width: 100%; text-align: center; 
    font-family: var(--font-head); font-size: 5rem; opacity: 0.1; 
    pointer-events: none; white-space: nowrap; overflow: hidden;
}
.kanji-border span { margin: 0 40px; display: inline-block; }


.testimonials { padding: 80px 50px; background: var(--beige); text-align: center; }
.testimonials h2 { font-size: 2.5rem; margin-bottom: 60px; color: var(--dark); }

.test-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.test-box { background: var(--dark); color: #fff; padding: 40px 30px 30px; width: 300px; border-radius: 15px; position: relative; margin-top: 40px; }
.test-img { width: 70px; height: 70px; position: absolute; top: -35px; left: 50%; transform: translateX(-50%); border-radius: 50%; border: 4px solid var(--beige); overflow: hidden; background: #fff; }
.test-img img { width: 100%; height: 100%; object-fit: cover; }
.stars { color: #d85c5c; margin: 5px 0 15px; font-size: 0.8rem; letter-spacing: 2px; }
.test-box h4 { margin-top: 20px; font-size: 1.1rem; letter-spacing: 1px; }
.test-box p { font-style: italic; opacity: 0.7; font-size: 0.85rem; line-height: 1.5; }


.final-cta { 
    background: var(--red); text-align: center; padding: 100px 20px; color: #fff; 
    background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px); background-size: 30px 30px; 
}
.final-cta h2 { font-size: 2.5rem; margin-bottom: 15px; text-transform: none; }
.final-cta p { margin-bottom: 30px; opacity: 0.9; }


.footer { background: var(--dark); color: #aaa; padding: 60px 50px 20px; }
.footer-cols { display: flex; justify-content: space-between; border-bottom: 1px solid #555; padding-bottom: 40px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; gap: 30px; }
.col h4 { color: #fff; margin-bottom: 20px; letter-spacing: 1px; font-size: 0.9rem; }
.col ul { list-style: none; } .col ul li { margin-bottom: 10px; font-size: 0.85rem; }
.newsletter input { padding: 10px; background: transparent; border: 1px solid #666; color: #fff; margin-right: 10px; font-size: 0.85rem; border-radius: 4px; }
.newsletter button { padding: 10px 20px; background: #555; border: none; color: #fff; cursor: pointer; font-family: var(--font-head); border-radius: 4px; }
.copyright { text-align: center; padding-top: 20px; font-size: 0.7rem; opacity: 0.5; }


@media (max-width: 900px) {
    .hero-title { font-size: 8rem; }
    #hero-3d-placeholder { width: 300px; height: 200px; }
    
    .card { flex-direction: column; text-align: center; padding: 30px; }
    .card.dark { flex-direction: column-reverse; }
    .text { text-align: center; }
    .kanji-list { text-align: center; display: inline-block; }
    .kanji-list li { justify-content: center; }

    .wide-top { flex-direction: column; gap: 20px; text-align: center; }
    .wide-text, .wide-list { text-align: center; justify-content: center; }
    .wide-list ul { text-align: center; }
    .wide-list li { justify-content: center; }
    
    .why-container { flex-direction: column; }
    .lanterns, .lanterns-right { display: none; }
}

.sushimodel5{
    width: 100%;
    height: 550px;
   padding-top: 10%;
}

.sushi3d6{
    width: 100%;
    height: 800px;
}

.footer {
    background: #2d2626;
    padding: 70px 20px 40px;
    color: var(--text-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-brand img {
    width: 97px;
    height: 55px;
}

.footer-brand span {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-section a:hover {
    color:#FFF0DD;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-icons span {
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons span:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--btn-bg);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.3s;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--btn-bg-hover);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}
