/*
Theme Name: Interplay
Theme URI: https://tsctempestphotography.com/interplay
Author: TSC Tempest Photography
Author URI: https://tsctempestphotography.com
Description: A custom dark photography theme with slideshow functionality
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: interplay
Tags: dark, photography, slideshow, responsive
*/

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

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3498db;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.7);
    padding: 10px 0;
    z-index: 1000;
}

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

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-width: 200px;
    height: auto;
}

.site-title {
    margin: 0 0 0 15px;
    font-size: 1.8em;
    font-weight: bold;
}

.site-description {
    margin: 5px 0 0 15px;
    font-size: 1em;
    opacity: 0.8;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

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

.menu li {
    margin: 0 15px;
    position: relative;
}

.menu a {
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    display: block;
}

.menu a:hover:after {
    content: "Keep Moving Forward";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(0, 51, 102, 0.9);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

/* Main Content */
.site-content {
    padding-top: 80px; /* To account for fixed header */
    min-height: calc(100vh - 140px);
}

/* Slideshow Styles */
.slideshow-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.slideshow-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

/* Main Content Area */
.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.7);
    min-height: 60vh;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

/* Footer Styles */
.site-footer {
    background: rgba(0, 51, 102, 0.7);
    color: #fff;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

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

.footer-navigation .menu a:hover:after {
    content: "Like to know more?";
    bottom: 25px;
}

.site-info {
    font-size: 14px;
    opacity: 0.8;
}

/* Image Protection */
.protected-image {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .site-header-inner,
    .site-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .menu {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu li {
        margin: 5px 10px;
    }

    .site-content {
        padding-top: 120px;
    }

    .site-branding {
        flex-direction: column;
    }

    .site-title,
    .site-description {
        margin-left: 0;
        margin-top: 10px;
    }

    .site-info {
        margin-top: 15px;
    }
}

/* Additional Components */
.button {
    display: inline-block;
    background: rgba(0, 51, 102, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.button:hover {
    background: rgba(0, 51, 102, 1);
    color: #fff;
}
