/* RW Slides CSS */
.slide-container {
    width: 1280px;
    min-height: 720px;
    background: #ffffff;
    color: #333333;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slide-container.title-slide {
    background: linear-gradient(135deg, #4472C4 0%, #5B9BD5 100%);
    color: white;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 40px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 50px 60px;
    min-height: 720px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #F06C00;
    margin-bottom: 30px;
    text-align: center;
}

.title-slide h1 {
    color: white;
    font-size: 48px;
}

/* Navigation */
.slide-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.nav-btn {
    background: #4472C4;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: #F06C00;
    color: white;
    text-decoration: none;
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1300px) {
    .slide-container {
        width: 100%;
        max-width: 1280px;
    }
}

@media (max-width: 768px) {
    .slide-container {
        min-height: auto;
    }
    
    .content {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .title-slide h1 {
        font-size: 36px;
    }
}

