/* STYLESHEET */

* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

header 
{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo 
{
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.logo:hover 
{
    transform: scale(1.05);
}

.nav-links 
{
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a 
{
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active 
{
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero 
{
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.90) 0%, rgba(118, 75, 162, 0.90) 100%),
                url('images/tokyo_1.jpg') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content 
{
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-content h1 
{
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p 
{
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@keyframes fadeInUp 
{
    from 
    {
        opacity: 0;
        transform: translateY(30px);
    }
    to 
    {
        opacity: 1;
        transform: translateY(0);
    }
}

.container 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section 
{
    margin-bottom: 4rem;
}

.section-title 
{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after 
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.features-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card 
{
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover 
{
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.feature-icon 
{
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 
{
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.feature-card p 
{
    color: #666;
    line-height: 1.8;
}

.destinations-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.card 
{
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card:hover 
{
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
}

.card-image 
{
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image 
{
    transform: scale(1.1);
}

.card-content 
{
    padding: 2rem;
}

.card-content h3 
{
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.card-content p 
{
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.card-content strong 
{
    color: #667eea;
}

.btn 
{
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover 
{
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary 
{
    background: transparent;
    border: 2px solid white;
    margin-left: 1rem;
}

.btn-secondary:hover 
{
    background: white;
    color: #667eea;
}

.btn-secondary-no-white 
{
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    margin-left: 1rem;
}

.btn-secondary-no-white:hover 
{
    background: #667eea;
    color: white;
}

.form-container 
{
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-row 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group 
{
    margin-bottom: 1.5rem;
}

.form-group label 
{
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea 
{
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus 
{
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea 
{
    min-height: 150px;
    resize: vertical;
}

.form-group input[type="checkbox"] 
{
    width: auto;
    margin-right: 0.5rem;
}

.btn-submit 
{
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover 
{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.success-message 
{
    background: white;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.about-content 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-image 
{
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-text h2 
{
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.about-text p 
{
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-info 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card 
{
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover 
{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.info-card h3 
{
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.info-card p 
{
    color: #666;
    margin: 0.5rem 0;
}

footer 
{
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 
{
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section a 
{
    color: #b0b0b0;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover 
{
    color: #667eea;
}

.footer-section ul 
{
    list-style: none;
}

.footer-section ul li 
{
    margin-bottom: 0.5rem;
}

.footer-bottom 
{
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid #333;
    color: #888;
}

@media (max-width: 768px) 
{
    .nav-links 
    {
        gap: 1rem;
    }
    
    .nav-links a 
    {
        padding: 0.3rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .hero-content h1 
    {
        font-size: 2.5rem;
    }
    
    .hero-content p 
    {
        font-size: 1.1rem;
    }
    
    .section-title 
    {
        font-size: 2rem;
    }
    
    .destinations-grid,
    .about-content 
    {
        grid-template-columns: 1fr;
    }
    
    .btn-secondary 
    {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .form-container 
    {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 700px) 
{
    .nav-links li:last-child 
    {
        display: none;
    }
}

@media (max-width: 600px) 
{
    .logo 
    {
        display: none;
    }
}


@media (max-width: 480px) 
{
    nav 
    {
        padding: 1rem;
    }
    
    .logo 
    {
        font-size: 1.2rem;
    }
    
    .nav-links 
    {
        gap: 0.5rem;
    }
    
    .hero-content h1 
    {
        font-size: 2rem;
    }
    
    .container 
    {
        padding: 2rem 1rem;
    }
}