@import url('font.css');

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

body {
    font-family: 'Johnston ITC Std Medium', sans-serif;
    font-weight: bold;
    line-height: 1.6;
    color: #ffffff;
    background-color: #272727;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    font-family: 'Johnston ITC Std Medium';
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(39, 39, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid rgba(176, 40, 239, 0.6);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand h1 {
    color: #B028EF;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-brand img {
    max-width: 150px;
    height: auto;
    vertical-align: bottom;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: #B028EF;
}

/* Main Content */
.main {
    margin-top: 80px;
}

.section {
    display: none;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.section.active {
    display: block;
}

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

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: #B028EF;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Common Buttons */
.btn-view-more {
    background: linear-gradient(135deg, #B028EF 0%, #8A1CC7 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(176, 40, 239, 0.4);
    color: white;
    text-decoration: none;
}

.btn-back {
    background: transparent;
    color: #B028EF;
    border: 2px solid #B028EF;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 2rem;
    text-decoration: none;
    display: inline-block;
}

.btn-back:hover {
    background: #B028EF;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-submit {
    background: linear-gradient(135deg, #B028EF 0%, #8A1CC7 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(176, 40, 239, 0.4);
}

/* Base Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}
