/* Fat Catch - Minimal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    min-height: 100vh;
    background: url('images/background.png') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

a {
    color: #91c4f0;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.logo {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    margin-bottom: auto;
}

.nav-menu li {
    margin-bottom: 5px;
}

.nav-menu a {
    display: block;
    padding: 8px 0;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.social-links {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a {
    display: inline-block;
    margin-right: 12px;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center center;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links a[href*="facebook"] {
    background-image: url('images/facebook.png');
}

.social-links a[href*="twitter"] {
    background-image: url('images/x.png');
}

.social-links a[href*="mailto"] {
    background-image: url('images/email-icon.png');
}

/* Main Content */
.content {
    margin-left: 280px;
    padding: 60px 40px;
    min-height: 100vh;
}

.content h2,
.content h3 {
    font-family: Georgia, serif;
    font-style: italic;
    margin: 1em 0 0.5em;
}

.content h3 {
    margin-top: 2em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.content p {
    margin: 0.5em 0;
}

.content ul {
    margin: 0.5em 0;
    padding-left: 2em;
}

.content li {
    margin: 0.3em 0;
}

/* App Store Links */
.app-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.app-links a {
    display: block;
}

.app-links img {
    height: 60px;
    width: auto;
    transition: transform 0.2s ease;
}

.app-links a:hover img {
    transform: scale(1.05);
}

/* Slideshow */
.slideshow {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.slideshow img {
    display: none;
    width: 100%;
    height: auto;
}

.slideshow img.active {
    display: block;
}

/* Video */
.video-link-large {
    text-align: center;
    margin: 40px 0;
}

.video-link-large a {
    display: inline-block;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transition: background 0.2s ease;
}

.video-link-large a:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-link-large img {
    max-width: 300px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.video-link-large p {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

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

.video-link {
    text-align: center;
}

.video-link img {
    max-width: 200px;
    height: auto;
}

/* Press Kit Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery a:hover img {
    transform: scale(1.05);
}

/* Press Description */
.press-description {
    max-width: 600px;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .logo-text {
        font-size: 32px;
    }
    
    .nav-menu {
        display: flex;
        gap: 20px;
        margin-bottom: 0;
    }
    
    .nav-menu li {
        margin-bottom: 0;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 5px 0;
    }
    
    .social-links {
        display: none;
    }
    
    .content {
        margin-left: 0;
        padding: 30px 20px;
    }
    
    .app-links {
        flex-direction: column;
        align-items: center;
    }
    
    .app-links img {
        height: 50px;
    }
}