/* Tokyo Nightlife V1 Stylesheet */

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

body {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #F2F2F2;
    background-color: #0E0E0E;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header and Navigation */
header {
    padding: 24px 0;
    border-bottom: 1px solid rgba(242, 242, 242, 0.10);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-name {
    font-size: 18px;
    font-weight: 500;
    color: #F2F2F2;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #F2F2F2;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #A0A0A0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

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

section.hero {
    padding: 100px 0 80px 0;
}

section.alt-bg {
    background-color: #1F1F1F;
}

/* Typography */
h1 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #F2F2F2;
}

h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #F2F2F2;
}

p {
    margin-bottom: 20px;
    color: #F2F2F2;
}

p:last-child {
    margin-bottom: 0;
}

/* Lists */
ul {
    list-style: none;
    margin-bottom: 24px;
}

ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #F2F2F2;
}

ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #A0A0A0;
}

/* Links */
a {
    color: #F2F2F2;
    transition: color 0.2s ease;
}

a:hover {
    color: #A0A0A0;
}

/* Buttons and CTAs */
.cta {
    margin-top: 40px;
}

.button {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    border: 1px solid #1E2A3A;
    color: #F2F2F2;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.button:hover {
    background-color: #1E2A3A;
    color: #F2F2F2;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #F2F2F2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #0E0E0E;
    border: 1px solid rgba(242, 242, 242, 0.10);
    color: #F2F2F2;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E2A3A;
}

.form-group textarea {
    resize: vertical;
}

button.button {
    cursor: pointer;
    border: 1px solid #1E2A3A;
}

button.button:hover {
    background-color: #1E2A3A;
}

/* Notes */
.note {
    font-size: 14px;
    font-style: italic;
    color: #A0A0A0;
    margin-top: 32px;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(242, 242, 242, 0.10);
    text-align: center;
}

footer p {
    margin-bottom: 8px;
    font-size: 14px;
}

footer a {
    color: #F2F2F2;
    text-decoration: none;
}

footer a:hover {
    color: #A0A0A0;
}

.footer-note {
    margin-top: 16px;
    font-size: 13px;
    color: #A0A0A0;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    section {
        padding: 60px 0;
    }
    
    section.hero {
        padding: 80px 0 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .nav-links {
        gap: 12px;
    }
}
