/* Main Styles for Desk Shot Website */

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #000;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

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

.logo img {
    width: 300px;
    height: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    font-size: 16px;
    font-weight: bold;
}

.nav-menu a:hover {
    color: #ff4500;
}

.phone-icon {
    margin-right: 20px;
}

.phone-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

/* Main Content Styles */
.main-content {
    padding: 40px 0;
}

.headline {
    margin-bottom: 40px;
}

.headline h2 {
    font-size: 32px;
    text-align: center;
    margin: 0;
}

/* Video Section */
.video-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.video-container {
    width: 48%;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 27%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.video-loader::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    margin-bottom: 15px;
    display: flex;
}

.feature-item::before {
    content: "•";
    margin-right: 10px;
}

/* Download Page Styles */
.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-link {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #ff4500;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
}

.download-link:hover {
    background-color: #ff5722;
    text-decoration: none;
}

.download-instructions {
    margin-bottom: 30px;
}

.screenshot-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.screenshot {
    width: 48%;
    margin-bottom: 20px;
}

.screenshot img {
    width: 100%;
    height: auto;
    border: 1px solid #333;
}

/* Footer Styles */
footer {
    background-color: #000;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    width: 30%;
    margin-bottom: 30px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 127px;
    height: auto;
    margin-bottom: 15px;
}

.footer-contact {
    text-align: center;
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff4500;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-icon {
    margin-right: 10px;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-menu {
        margin-top: 20px;
        width: 100%;
    }
    
    .nav-menu ul {
        flex-direction: column;
    }
    
    .nav-menu li {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .video-container {
        width: 100%;
        padding-bottom: 56.25%;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .screenshot {
        width: 100%;
    }
}
