* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    direction: ltr;
    text-align: left;
}

.container {
    min-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(139,69,19,0.3)), 
                url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
                rgba(139,69,19,0.8) 0%, 
                rgba(160,82,45,0.6) 50%, 
                rgba(205,133,63,0.4) 100%);
    animation: shimmer 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.8; }
    100% { opacity: 0.6; }
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    color: #FFD700;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #F5DEB3;
    font-weight: 600;
}

.tagline-sub {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #DEB887;
    font-style: italic;
}

.coming-soon {
    margin: 3rem 0;
}

.coming-soon-text {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.ornament {
    font-size: 1.5rem;
    color: #FFD700;
    margin: 1rem 0;
    opacity: 0.8;
}

.coming-soon-subtitle {
    font-size: 1.1rem;
    color: #F5DEB3;
    font-style: italic;
    margin-top: 1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F5DC 0%, #FFF8DC 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #A0522D;
    margin-bottom: 3rem;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139,69,19,0.1);
    border: 3px solid #FFD700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139,69,19,0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Franchise Section */
.franchise {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
}

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

.franchise-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.franchise-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #F5DEB3;
    font-style: italic;
}

.franchise-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.franchise-benefits {
    margin: 2rem 0;
}

.benefit {
    padding: 0.5rem 0;
    color: #F5DEB3;
    font-size: 1.1rem;
}

.franchise-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    color: #8B4513;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.franchise-btn:hover {
    transform: scale(1.05);
}

.franchise-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #FFF8DC;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    background: #FFD700;
    padding: 0.5rem;
    border-radius: 50%;
}

.contact-item h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: #A0522D;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    color: #8B4513;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: #8B4513;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #A0522D;
}

/* Form */
.inquiry-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139,69,19,0.1);
    border: 2px solid #FFD700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #DDD;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.inquiry-form button {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    transition: transform 0.3s ease;
}

.inquiry-form button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2C1810;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-tagline {
    color: #FFD700;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #8B4513;
}

.modal-content h2 {
    color: #8B4513;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.modal-content h3 {
    color: #A0522D;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.franchise-details {
    margin: 2rem 0;
}

.detail-item {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: #F5F5DC;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.modal-btn {
    display: inline-block;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.modal-btn:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1320px) {
    .container {
        min-width: auto;
        max-width: 1300px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-text {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .franchise-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
    }
    
    .container {
        min-width: auto;
        padding: 0 15px;
    }
}