/* ===== ELFLOCK.CSS - Clean Styles for Elflock Project Page ===== */

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

html {
    word-wrap: break-word;
    height: auto !important;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(110deg, rgba(60, 60, 60, 1) 0%, rgba(255, 255, 255, 1) 100%);
    min-width: 1200px;
}

/* Responsive Design */
@media (max-width: 650px) {
    body {
        min-width: initial;
    }
    
    body.desktopV {
        min-width: 1200px;
    }
}

@media (min-width: 651px) {
    body {
        min-width: 1200px;
    }
    
    body.mobileV {
        min-width: initial;
    }
}

/* Mobile Header */
.mobile-header {
    background-color: rgba(22, 20, 20, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.mobile-header__title {
    color: rgba(169, 180, 180, 1);
    font-weight: normal;
    font-size: 20px;
    text-decoration: none;
}

.mobile-header__title:hover {
    color: #f8a5b3;
}

.mobile-menu {
    background-color: rgba(169, 180, 180, 1);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(22, 20, 20, 0.1);
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: rgba(22, 20, 20, 1);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background-color: rgba(22, 20, 20, 1);
    color: rgba(169, 180, 180, 1);
    font-weight: bold;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: rgba(169, 180, 180, 1);
    margin: 5px 0;
    transition: 0.3s;
}

/* Main Layout */
.main-container {
    margin-top: 0;
    min-height: 100vh;
}

/* Header Section */
.header-section {
    background-color: rgba(22, 20, 20, 1);
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 72px;
    padding: 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 20px;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #d1e3e3;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #d1e3e3;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f8a5b3 !important;
}

.nav-link.active {
    color: #d1e3e3;
}

/* Main Content */
.main-content {
    background-color: rgba(22, 20, 20, 1);
    min-height: 2000px;
    padding: 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 47px 20px;
}

/* Project Title */
.project-title {
    font-size: 40px;
    font-weight: bold;
    color: #d1e3e3;
    margin-bottom: 47px;
    text-align: left;
}

.project-links {
    margin-bottom: 20px;
}

.link-label {
    color: #e29ba7;
    font-weight: bold;
    font-size: 20px;
}

.email-link {
    color: #f8a5b3;
    text-decoration: underline;
    font-weight: bold;
    font-size: 20px;
}

/* Video Section */
.video-section {
    margin-bottom: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    width: 100%;
    max-width: 1066px;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 20px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Content Sections */
.content-section {
    margin-bottom: 47px;
}

.section-heading {
    font-size: 32px;
    font-weight: bold;
    color: #d1e3e3;
    margin-bottom: 30px;
}

.section-heading.learnings {
    color: #f8a5b3;
}

.section-heading.future {
    color: #bc828c;
}

.section-content {
    color: #a9b4b4;
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
}

.section-content p {
    margin-bottom: 20px;
}

.section-content ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style-position: inside;
}

.section-content li {
    margin-bottom: 10px;
    padding-left: 0;
}

.section-content b {
    color: #d1e3e3;
    font-weight: bold;
}

.section-content .learnings-text {
    color: #bc828c;
}

.section-content .learnings-text b {
    color: #f8a5b3;
}

.learnings-list {
    color: #bc828c;
}

.learnings-item {
    color: #bc828c;
}

.learnings-item b {
    color: #f8a5b3;
}

.subsection-heading {
    color: #f8a5b3;
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: bold;
}

.subsection-heading:first-child {
    margin-top: 0;
}

/* Store Links Section */
.store-section {
    margin: 60px 0 0;
    text-align: center;
}

.store-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.store-link {
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.store-link:hover {
    transform: scale(1.1);
}

.store-link img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.store-link:hover img {
    filter: invert(0);
    transform: scale(1.1);
}

.store-text {
    color: #a9b4b4;
    font-size: 16px;
    margin-bottom: 20px;
}

.store-text a {
    color: #d1e3e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-text a:hover {
    color: #f8a5b3;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.social-link:hover img {
    filter: invert(0);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #a9b4b4;
    padding: 60px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: 32px;
    font-weight: bold;
    color: #121212;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-label {
    display: block;
    font-weight: bold;
    font-size: 20px;
    color: #121212;
    margin-bottom: 5px;
}

.contact-link {
    font-size: 20px;
    color: #121212;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-social-links a {
    display: block;
    width: 36px;
    height: 36px;
    filter: brightness(0);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-links a:hover {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.footer-social-links img {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(18, 18, 18, 0.2);
    padding-top: 20px;
}

.copyright,
.privacy-notice {
    font-size: 14px;
    color: #121212;
    margin-bottom: 5px;
}

.privacy-notice a {
    color: #121212;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-notice a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-heading {
        font-size: 24px;
    }
    
    .video-container {
        height: 300px;
        padding: 0 15px;
    }
    
    .store-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
}

/* Hide mobile elements on desktop */
@media (min-width: 769px) {
    .mobile-header,
    .mobile-menu {
        display: none;
    }
}

/* Show desktop elements on desktop */
@media (min-width: 769px) {
    .header-section {
        display: block;
    }
}
