body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #232526 0%, #414345 100%);
    color: #f3f3f3;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    padding-top: 64px;
}

.container {
    max-width: 600px;
    margin: 80px auto;
    background: rgba(30,30,30,0.95);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 40px 32px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    color: #e0e0e0;
}

p, label, input, .magazine-feature p, .magazine-content, .magazine-highlight {
    color: #f3f3f3;
}

button, .navbar-btn {
    background: none;
    color: #e0e0e0;
    border: none;
    border-radius: 0;
    padding: 0 8px;
    font-size: 0.95rem;
    height: auto;
    margin-left: 12px;
    margin-top: 0;
    box-shadow: none;
    text-decoration: none;
    display: inline;
    transition: color 0.2s;
}
button:hover, .navbar-btn:hover {
    color: #fda085;
    background: none;
}

.navbar {
    width: 100%;
    background: #232526;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    padding: 0 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    min-height: 44px;
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 44px;
}

.navbar-brand {
    font-size: 1.1rem;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
}

.navbar-actions {
    display: flex;
    align-items: center;
    margin: 0;
    height: 44px;
}

.navbar-btn {
    background: none;
    color: #e0e0e0;
    border: none;
    border-radius: 0;
    padding: 0 8px;
    font-size: 0.95rem;
    height: auto;
    margin-left: 12px;
    margin-top: 0;
    box-shadow: none;
    text-decoration: none;
    display: inline;
    transition: color 0.2s;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
    text-align: left;
    gap: 12px;
}
.form-row label {
    min-width: 110px;
    margin-right: 0;
    color: #e0e0e0;
    font-weight: 500;
    text-align: right;
}
.form-row input {
    flex: 1;
    background: #232526;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 1rem;
    padding: 10px 12px;
    margin-bottom: 0;
    transition: border 0.2s;
}
.form-row input:focus {
    border: 1.5px solid #fda085;
    outline: none;
}

/* Magazine-style homepage layout */
.magazine-hero {
    width: 100vw;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #232526 0%, #414345 100%);
    position: relative;
    margin-bottom: 0;
    padding: 0;
}

.magazine-cover {
    position: relative;
    width: 100vw;
    max-width: none;
    height: 85vh;
    box-shadow: 0 12px 48px rgba(0,0,0,0.28);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magazine-hero-img {
    width: 100vw;
    height: 85vh;
    object-fit: cover;
    display: block;
    filter: brightness(0.5) contrast(1.1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.magazine-headline {
    position: relative;
    z-index: 2;
    width: 100vw;
    text-align: center;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 85vh;
    pointer-events: none;
}

.magazine-headline h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6vw;
    letter-spacing: 0.08em;
    margin: 0 0 24px 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #e0e0e0;
}

.magazine-headline h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5vw;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.04em;
    color: #e0e0e0;
}

.magazine-content {
    max-width: 900px;
    margin: 0 auto 48px auto;
    background: rgba(30,30,30,0.98);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 48px 40px 32px 40px;
    position: relative;
    top: -60px;
    z-index: 2;
}

.magazine-feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ffb6b6;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.magazine-feature p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #f3f3f3;
    margin-bottom: 0;
}

.magazine-highlight {
    color: #fda085;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 0.03em;
}

.magazine-contact {
    margin-top: 32px;
    text-align: right;
}

.magazine-link {
    font-family: 'Montserrat', sans-serif;
    color: #fda085;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #f76d6d;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.magazine-link:hover {
    color: #ffb6b6;
    border-bottom: 2px solid #fda085;
}

.login-btn {
    background: #f76d6d;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 32px;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: inline-block;
}
.login-btn:hover {
    background: #fda085;
    color: #232526;
}

@media (max-width: 900px) {
    .magazine-hero, .magazine-cover, .magazine-hero-img, .magazine-headline {
        min-height: 60vh;
        height: 60vh;
    }
    .magazine-headline h1 {
        font-size: 8vw;
    }
    .magazine-headline h2 {
        font-size: 4vw;
    }
}

/* Responsive: mobile-friendly layout */
@media (max-width: 700px) {
    .container {
        max-width: 98vw;
        margin: 90px 1vw 0 1vw;
        padding: 24px 8px;
    }
    .navbar-container {
        flex-direction: row;
        align-items: center;
        height: auto;
        padding: 0 10px;
    }
    .navbar-brand {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 12px 0 12px 4px;
        margin-left: auto;
        outline: none;
        z-index: 200;
    }
    .navbar-toggle-icon {
        display: block;
        width: 28px;
        height: 3px;
        background: #f76d6d;
        margin: 5px 0;
        border-radius: 2px;
        transition: background 0.2s;
    }
    .navbar-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-bottom: 8px;
        margin-top: 56px;
        /* Pushes menu below navbar row */
    }
    .navbar-actions.open {
        display: flex;
    }
}

/* Show hamburger only on mobile */
.navbar-toggle {
    display: none;
}
@media (max-width: 700px) {
    .navbar-toggle {
        display: block;
    }
}

/* Ensure images and tables are responsive if used */
img, table {
    max-width: 100%;
    height: auto;
}
