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

:root {
    --primary-red: #DC2626;
    --primary-orange: #EA580C;
    --primary-black: #1F2937;
    --text-gray: #6B7280;
    --bg-light: #FAF7F3;
    --bg-cream: #F5E6D3;
    --white: #FFFFFF;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--primary-black);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact .phone {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.header-cta {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

/* Main Visual */
.main-visual {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.visual-title {
    margin-bottom: 30px;
}

.sub-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.main-title {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.visual-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.stat-box {
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 1rem;
    opacity: 0.9;
}

.visual-cta {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.visual-cta:hover {
    background: #DC2626;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Brand Story */
.brand-story {
    padding: 100px 0;
    background: var(--bg-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-text h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.story-points {
    list-style: none;
}

.story-points li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--primary-black);
}

/* Menu Showcase */
.menu-showcase {
    padding: 100px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.menu-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-info {
    padding: 25px;
}

.menu-info h3,
.menu-info h4 {
    color: var(--primary-black);
    margin-bottom: 10px;
}

.menu-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.menu-description {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.menu-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.menu-description p:first-child {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #E5E7EB;
}

/* Franchise Benefits */
.franchise-benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Franchise Process */
.franchise-process {
    padding: 100px 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #E5E7EB;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.story-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-content {
    padding: 30px;
}

.story-content h4 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.story-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-tag {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Franchise Cost */
.franchise-cost {
    padding: 100px 0;
}

.cost-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.cost-column {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.cost-column:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.cost-column.featured {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.cost-column h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.cost-detail {
    margin-bottom: 30px;
}

.cost-detail .size {
    display: block;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.cost-detail .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.cost-column ul {
    list-style: none;
    text-align: left;
}

.cost-column ul li {
    padding: 8px 0;
    color: var(--text-gray);
}

.cost-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    padding: 100px 0;
    background: #3E2723;
    color: white;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.consultation-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    color: var(--primary-black);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-privacy {
    margin: 30px 0;
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.privacy-item:last-child {
    margin-bottom: 0;
}

.privacy-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex: 1;
}

.privacy-item input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.privacy-text {
    text-decoration: underline;
}

.privacy-detail-btn {
    background: transparent;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 5px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.privacy-detail-btn:hover {
    background: var(--primary-orange);
    color: white;
}

.submit-button {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2E1A1A;
    color: white;
    padding: 30px 0;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-content p:first-child {
    font-size: 0.85rem;
}

.disco-credit {
    opacity: 0.8;
}

.disco-credit strong {
    color: #64B5F6;
    font-weight: 700;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-cta {
    background: var(--primary-orange);
    color: white;
    border: none;
    width: 120px;
    height: 50px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(234, 88, 12, 0.3);
    transition: all 0.3s ease;
}

.floating-cta:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.floating-top {
    background: #374151;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-top.show {
    opacity: 1;
    visibility: visible;
}

.floating-top:hover {
    background: #1F2937;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 30px;
    background: var(--bg-light);
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #E5E7EB;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h3 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.privacy-table th,
.privacy-table td {
    border: 1px solid #E5E7EB;
    padding: 12px;
    text-align: left;
}

.privacy-table th {
    background: var(--bg-light);
    font-weight: 500;
    width: 30%;
}

.privacy-table td {
    color: var(--text-gray);
}

.privacy-notice {
    font-size: 0.9rem;
    color: var(--primary-red);
    line-height: 1.6;
}

.modal-footer {
    padding: 20px 30px;
    background: var(--bg-light);
    border-top: 1px solid #E5E7EB;
    text-align: right;
}

.modal-confirm {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-confirm:hover {
    background: var(--primary-red);
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .visual-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
}