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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans JP', sans-serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

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

.nav-brand {
    text-align: left;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #c41e3a;
    letter-spacing: 2px;
    margin-bottom: -5px;
}

.tagline {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c41e3a;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #c41e3a;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #c41e3a;
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%), 
                url('./assets/hero.webp') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.8s both;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    margin: 40px auto 0;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn-hero {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.whatsapp-btn-large {
    font-size: 1.1rem;
    padding: 18px 36px;
    margin-top: 30px;
}

.wa-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c41e3a 0%, #8b0000 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #fef8f8 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.about-text {
    text-align: left;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.philosophy, .company-info {
    margin-bottom: 30px;
}

.philosophy h3, .company-info h3 {
    font-size: 1.5rem;
    color: #c41e3a;
    margin-bottom: 20px;
}

.philosophy-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.philosophy-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.15);
}

.philosophy-icon {
    font-size: 3rem;
    color: #c41e3a;
    font-family: 'Noto Sans JP', sans-serif;
}

.philosophy-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #2d2d2d;
}

.philosophy-item p, .company-info p {
    color: #666;
    line-height: 1.6;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(196, 30, 58, 0.15);
}

.stat-item h3 {
    font-size: 3rem;
    color: #c41e3a;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Partnership Section */
.partnership {
    background: linear-gradient(180deg, #fef8f8 0%, #ffffff 100%);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.advantage-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(196, 30, 58, 0.15);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.7;
}

.package {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 40px;
}

.package-header h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.package-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.special-price {
    font-size: 2.5rem;
    font-weight: 800;
}

.discount-badge {
    background: #ffd700;
    color: #c41e3a;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-includes {
    text-align: left;
}

.package-includes h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.package-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.package-item {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.package-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.partnership-stages {
    margin-bottom: 60px;
}

.partnership-stages h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2d2d2d;
}

.stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stage {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stage:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(196, 30, 58, 0.15);
}

.stage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.stage h4 {
    font-size: 1rem;
    color: #2d2d2d;
    line-height: 1.5;
}

.partnership-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}

.partnership-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.partnership-image:hover img {
    transform: scale(1.05);
}

/* Menu Section */
.menu {
    background: linear-gradient(180deg, #ffffff 0%, #fef8f8 100%);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu-category {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(196, 30, 58, 0.15);
}

.menu-image {
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-category:hover .menu-image img {
    transform: scale(1.1);
}

.menu-category h3 {
    padding: 25px 30px 15px;
    font-size: 1.5rem;
    color: #c41e3a;
    text-align: center;
}

.menu-items {
    list-style: none;
    padding: 0 30px 30px;
}

.menu-items li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.menu-items li:last-child {
    border-bottom: none;
}

.menu-items li:hover {
    color: #c41e3a;
    padding-left: 10px;
}

/* Financial Section */
.financial {
    background: linear-gradient(180deg, #fef8f8 0%, #ffffff 100%);
}

.investment {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.investment h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 30px;
}

.investment-breakdown {
    max-width: 600px;
    margin: 0 auto;
}

.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.investment-item span {
    font-size: 1rem;
}

.investment-item strong {
    font-size: 1.1rem;
    color: #2d2d2d;
}

.investment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 10px;
    border-top: 2px solid #c41e3a;
}

.investment-total span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d2d2d;
}

.investment-total strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c41e3a;
}

.projections {
    text-align: center;
}

.projections h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.projection-table {
    overflow-x: auto;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

thead {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
}

th, td {
    padding: 20px;
    text-align: left;
}

th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: #fef8f8;
}

tbody tr:last-child {
    border-bottom: none;
}

td {
    color: #666;
}

.projection-note {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
}

/* Outlet Design Section */
.outlet-design {
    background: linear-gradient(180deg, #ffffff 0%, #fef8f8 100%);
}

.design-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.design-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.design-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(196, 30, 58, 0.15);
}

.design-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.design-item:hover img {
    transform: scale(1.1);
}

.design-item h3 {
    padding: 25px 20px 15px;
    font-size: 1.3rem;
    color: #c41e3a;
}

.design-item p {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #fef8f8 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 60px; */
    margin-bottom: 40px;
}

.contact-info {
    text-align: center;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #c41e3a;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-item a {
    color: #c41e3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8b0000;
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2d2d2d;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c41e3a;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.3);
}

.form-note {
    margin-top: 20px;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #c41e3a;
}

.footer-brand p {
    margin-bottom: 15px;
}

.footer-tagline {
    color: #999;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    color: #c41e3a;
}

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

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

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

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

.footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-keywords {
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a::after {
        display: none;
    }

    /* Hero */
    .hero {
        height: 80vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .whatsapp-btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .whatsapp-btn-hero {
        font-size: 1rem;
        padding: 14px 28px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Partnership */
    .advantages {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package {
        padding: 30px 20px;
    }

    .package-list {
        grid-template-columns: 1fr;
    }

    .stages {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Menu */
    .menu-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Financial */
    .projection-table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 12px 8px;
    }

    /* Design */
    .design-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .package-pricing {
        flex-direction: column;
        gap: 10px;
    }

    .special-price {
        font-size: 2rem;
    }
}