/* Catch 'em Sheep Page Styles */

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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(110deg, rgba(60,60,60,1) 0%, rgba(255,255,255,1) 100%);
    color: #a9b4b4;
    font-size: 20px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header-section {
    background-color: #161414;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #a9b4b4;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background-color: #a9b4b4;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

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

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu a {
    display: block;
    color: #161414;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid #161414;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Main Content */
.main-container {
    min-height: 100vh;
    background-color: #161414;
}

/* Project Title Section */
.project-title-section {
    padding: 0 0;
}

.project-title {
    color: #d1e3e3;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
}

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

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

.game-link {
    color: #e29ba7;
    text-decoration: underline;
    font-weight: bold;
}

.game-link:hover {
    color: #f8a5b3;
}

/* Video Section */
.video-section {
    padding: 0 0 47px 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1066px;
    height: 600px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Content Section */
.content-section {
    padding: 47px 0;
}

.intro-text {
    margin-bottom: 47px;
}

.intro-text p {
    text-align: justify;
    margin-bottom: 10px;
    color: #a9b4b4;
}

.intro-text strong {
    color: #d1e3e3;
}

/* Learnings Section */
.learnings-section {
    margin-bottom: 47px;
}

.learnings-list {
    color: #a9b4b4;
    padding-left: 0;
    list-style-position: outside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.learnings-item {
    color: #a9b4b4;
    margin-bottom: 15px;
    padding-left: 0;
}

.learnings-item strong {
    color: #d1e3e3;
}

/* Feature Sections */
.feature-section {
    margin-bottom: 47px;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

.feature-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-text {
    padding-right: 20px;
}

.feature-grid.reverse .feature-text {
    padding-right: 0;
    padding-left: 20px;
}

.feature-text p {
    text-align: justify;
    margin-bottom: 15px;
    color: #a9b4b4;
}

.feature-text strong {
    color: #d1e3e3;
}

/* Feature Image */
.feature-image {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 327px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Takeaways Section */
.takeaways-section {
    margin-bottom: 47px;
}

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

.takeaways-content p {
    text-align: justify;
    margin-bottom: 15px;
    color: #bc828c;
}

.takeaways-content strong {
    color: #f8a5b3;
}

.takeaways-list {
    color: #bc828c;
    padding-left: 0;
    list-style-position: outside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.takeaways-item {
    color: #bc828c;
    margin-bottom: 15px;
    padding-left: 0;
}

.takeaways-item p {
    text-align: justify;
    margin-bottom: 15px;
    color: #bc828c;
}

.takeaways-item strong {
    color: #f8a5b3;
}

/* 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) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .project-title {
        font-size: 32px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-grid.reverse {
        grid-template-columns: 1fr;
    }
    
    .feature-text {
        padding-right: 0;
        padding-left: 0;
    }
    
    .feature-grid.reverse .feature-text {
        padding-left: 0;
    }
    
    .video-container {
        height: 300px;
    }
    
    .feature-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .project-title {
        font-size: 24px;
    }
    
    .section-heading {
        font-size: 24px;
    }
}
