/**
 * Manila Polo Club Survey System
 * Survey Interface Styles - Matching Provided Design
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #800000 !important;
    color: #2d5a3d;
    border: 5px solid #DAA520 !important;
    box-sizing: border-box !important;
    min-height: 100vh;
}

/* Ensure outline remains visible in fullscreen mode */
body:fullscreen {
    border: 5px solid #DAA520 !important;
    box-sizing: border-box !important;
    background: #800000 !important;
}

body:-webkit-full-screen {
    border: 5px solid #DAA520 !important;
    box-sizing: border-box !important;
    background: #800000 !important;
}

body:-moz-full-screen {
    border: 5px solid #DAA520 !important;
    box-sizing: border-box !important;
    background: #800000 !important;
}

body:-ms-fullscreen {
    border: 5px solid #DAA520 !important;
    box-sizing: border-box !important;
    background: #800000 !important;
}

/* Adjust container padding in fullscreen to show border */
.survey-container:fullscreen,
body:fullscreen .survey-container,
body:-webkit-full-screen .survey-container,
body:-moz-full-screen .survey-container,
body:-ms-fullscreen .survey-container {
    padding: 25px !important;
    margin: 5px !important;
}

/* Survey Container */
.survey-container {
    height: 100vh;
    padding: 30px 20px 20px 20px;
    max-width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Ensure outline remains visible in fullscreen mode */
body:fullscreen {
    border: 5px solid #DAA520 !important;
    box-sizing: border-box !important;
    background: #800000 !important;
}

body:-webkit-full-screen {
    border: 5px solid #DAA520 !important;
    box-sizing: border-box !important;
    background: #800000 !important;
}

body:-moz-full-screen {
    border: 5px solid #DAA520 !important;
    box-sizing: border-box !important;
    background: #800000 !important;
}

body:-ms-fullscreen {
    border: 5px solid #DAA520 !important;
    box-sizing: border-box !important;
    background: #800000 !important;
}

/* Adjust container padding in fullscreen to show border */
.survey-container:fullscreen,
body:fullscreen .survey-container,
body:-webkit-full-screen .survey-container,
body:-moz-full-screen .survey-container,
body:-ms-fullscreen .survey-container {
    padding: 30px !important;
    margin: 0 !important;
    height: calc(100vh - 10px) !important;
}

/* Header Styles */
.header-card {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    background: rgba(128, 0, 0, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #c8a882;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.club-logo i {
    font-size: 3rem;
    color: #c8a882;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.club-name {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.club-subtitle {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    font-weight: 300;
}

/* Welcome Section */
.welcome-card {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(128, 0, 0, 0.5);
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #2d5a3d;
}

.welcome-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.welcome-subtitle {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    line-height: 1.6;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    flex: 1;
    overflow: hidden;
    height: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Location Cards */
.location-card {
    background: rgba(128, 0, 0, 0.5);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive Location Cards */
@media (max-width: 768px) {
    .location-card {
        padding: 30px 15px;
        aspect-ratio: 1;
    }
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #c8a882;
}

.location-card.selected {
    border-color: #c8a882;
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.1) 0%, #f0f3ea 100%);
    transform: translateY(-5px);
}

/* Location Icons */
.location-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
    transition: all 0.3s ease;
}

.location-icon i {
    font-size: 2.2rem;
    color: white;
}

/* Location Text */
.location-name {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.location-description {
    font-size: 0.95rem;
    color: white;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* Survey Questions Screen */
.screen {
    display: none;
    height: 100%;
    overflow: hidden;
}

.screen.active {
    display: flex;
    flex-direction: column;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c8a882 0%, #d4b896 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 1.1rem;
    color: #666;
    margin-top: 5px;
}

/* Question Card */
.question-card {
    background: rgba(128, 0, 0, 0.8) !important;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #DAA520;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60vh;
    max-width: 90vw;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

/* Question Header */
.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.location-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.location-icon-small {
    font-size: 4.5rem;
    text-align: center;
    margin: 0 auto;
}

.location-name-small {
    font-weight: 600;
    font-size: 4rem;
    color: #DAA520;
    text-align: center;
    margin: 0 auto;
}

/* Exit Button */
.exit-btn {
    background: #dc3545;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.exit-btn:hover {
    background: #c82333;
    transform: scale(1.1);
    color: white;
}

.exit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
}

/* Question Text */
.question-text {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.4;
}

/* Rating Options - Horizontal Layout */
.rating-options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 15px;
    max-width: 700px;
    margin: 0 auto 20px auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.rating-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.rating-row-top {
    margin-bottom: 5px;
}

.rating-row-bottom {
    justify-content: center;
    gap: 20px;
}

/* Responsive Rating Options */
@media (max-width: 768px) {
    .rating-options {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
        overflow: hidden;
    }
    
    .rating-row {
        gap: 10px;
    }
    
    .rating-row-bottom {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .rating-options {
        padding: 8px;
        gap: 6px;
    }
    
    .rating-row {
        gap: 8px;
    }
    
    .rating-row-bottom {
        gap: 12px;
    }
}

.rating-option {
    cursor: pointer;
    text-align: center;
    flex: 1;
    padding: 20px 12px;
    border-radius: 12px;
    background: transparent;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    min-width: 120px;
    max-width: 180px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive Rating Option */
@media (max-width: 768px) {
    .rating-option {
        min-width: auto;
        max-width: none;
        width: 100%;
        padding: 12px 8px;
    }
}

.rating-option:hover .rating-emoji {
    transform: perspective(100px) rotateX(5deg) scale(1.1);
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.4),
        6px 6px 12px rgba(0, 0, 0, 0.3),
        9px 9px 18px rgba(0, 0, 0, 0.2);
}

.rating-emoji {
    font-size: 2.7rem;
    margin-bottom: 12px;
    display: block;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        4px 4px 8px rgba(0, 0, 0, 0.2),
        6px 6px 12px rgba(0, 0, 0, 0.1);
    transform: perspective(100px) rotateX(10deg);
    transition: all 0.3s ease;
}

.rating-option:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #c8a882;
}

.rating-option.selected {
    border-color: #c8a882;
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(200, 168, 130, 0.2);
}

.rating-option.selected .rating-emoji {
    transform: perspective(100px) rotateX(0deg) scale(1.15);
    text-shadow: 
        4px 4px 8px rgba(200, 168, 130, 0.5),
        8px 8px 16px rgba(200, 168, 130, 0.3),
        12px 12px 24px rgba(200, 168, 130, 0.2);
}

.rating-label {
    font-size: 1.7rem;
    color: white;
    font-weight: 600;
    line-height: 1.1;
}

.rating-option.selected .rating-label {
    color: #2d5a3d;
    font-weight: 700;
}

/* Rating Label Colors */
.rating-option[data-rating="1"] .rating-label {
    color: #a0522d;
}

.rating-option[data-rating="2"] .rating-label {
    color: #cd853f;
}

.rating-option[data-rating="3"] .rating-label {
    color: #deb887;
}

.rating-option[data-rating="4"] .rating-label {
    color: #8fbc8f;
}

.rating-option[data-rating="5"] .rating-label {
    color: #6b8e23;
}

.rating-option.selected[data-rating="1"] .rating-label,
.rating-option.selected[data-rating="2"] .rating-label,
.rating-option.selected[data-rating="3"] .rating-label,
.rating-option.selected[data-rating="4"] .rating-label,
.rating-option.selected[data-rating="5"] .rating-label {
    color: #2d5a3d;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.prev-button-container,
.next-button-container {
    flex: 1;
}

.prev-button-container {
    text-align: left;
}

.next-button-container {
    text-align: right;
}

.prev-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    justify-content: center;
}

.prev-btn:hover:not(:disabled) {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
    color: white;
}

.next-btn {
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    justify-content: center;
}

.next-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #b8986f 0%, #c4a883 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
    color: white;
}

.prev-btn:disabled,
.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Single button centered when only one is visible */
.navigation-buttons:has(.prev-button-container[style*="display: none"]) .next-button-container {
    text-align: center;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: #f0f3ea;
    border-bottom: 1px solid #e9ecef;
    border-radius: 15px 15px 0 0;
    padding: 20px 25px;
}

.modal-title {
    color: #2d5a3d;
    font-weight: 600;
    font-size: 1.3rem;
}

.modal-body {
    padding: 25px;
}

.modal-body p {
    color: #2d5a3d;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.comment-textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.comment-textarea:focus {
    outline: none;
    border-color: #c8a882;
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.2);
}

.comment-textarea.is-invalid {
    border-color: #dc3545;
}

.char-count-container {
    text-align: right;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 25px;
    justify-content: center;
}

.modal-footer .btn {
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    background: linear-gradient(135deg, #b8986f 0%, #c4a883 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
    color: white;
}

/* Navigation Buttons */
.survey-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    justify-content: center;
}

.prev-btn {
    background: #6c757d;
    color: white;
}

.prev-btn:hover:not(:disabled) {
    background: #5a6268;
    transform: translateY(-2px);
}

.next-btn, .submit-btn {
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
    color: white;
}

.next-btn:hover:not(:disabled), .submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #b8986f 0%, #c4a883 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Thank You Screen */
.thank-you-card {
    text-align: center;
    background: #f0f3ea;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.thank-you-icon {
    font-size: 4rem;
    color: #c8a882;
    margin-bottom: 30px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.thank-you-content {
    position: relative;
    z-index: 2;
}

.thank-you-title {
    font-size: 2.8rem;
    color: #2d5a3d;
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-message {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.celebration-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #c8a882;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.celebration-message i {
    color: #ffd700;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(90deg); }
    50% { transform: scale(1) rotate(180deg); }
    75% { transform: scale(1.2) rotate(270deg); }
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #c8a882;
    animation: confetti-fall 3s linear infinite;
}

.confetti:nth-child(odd) {
    background: #ffd700;
    border-radius: 50%;
}

.confetti:nth-child(even) {
    background: #ff6b6b;
}

.confetti:nth-child(3n) {
    background: #4ecdc4;
    transform: rotate(45deg);
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.thank-you-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: left;
}

.summary-item {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #666;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item strong {
    color: #2d5a3d;
}

.auto-reset-info {
    margin-top: 30px;
}

.auto-reset-info span {
    font-weight: bold;
    color: #c8a882;
}

.reset-btn {
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: linear-gradient(135deg, #b8986f 0%, #c4a883 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 90, 61, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    text-align: center;
    color: #c8a882;
}

.loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
}

.loading-spinner p {
    font-size: 1.2rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .location-card {
        padding: 30px 15px;
        min-height: 180px;
    }
    
    .location-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .location-icon i {
        font-size: 2rem;
    }
    
    .location-name {
        font-size: 1.2rem;
    }
    
    .location-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .survey-container {
        padding: 10px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .location-card {
        padding: 25px 15px;
        min-height: 160px;
    }
    
    .rating-options {
        gap: 15px;
    }
    
    .rating-option {
        min-width: 100px;
        padding: 15px;
    }
    
    .rating-option .emoji {
        font-size: 2.5rem;
    }
    
    .question-container {
        padding: 30px 20px;
    }
    
    .thank-you-card {
        padding: 40px 20px;
    }
    
    .progress-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .survey-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .club-name {
        font-size: 2rem;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .question-title {
        font-size: 1.5rem;
    }
    
    .rating-options {
        flex-direction: column;
        align-items: center;
    }
    
    .rating-option {
        width: 100%;
        max-width: 200px;
    }
}

/* Landscape Orientation for Tablets */
@media (orientation: landscape) and (max-height: 600px) {
    .header-card {
        margin-bottom: 15px;
        padding: 25px;
    }
    
    .welcome-card {
        margin-bottom: 20px;
        padding: 25px;
    }
    
    .question-card {
        padding: 30px;
    }
    
    .rating-options {
        margin-bottom: 30px;
    }
    
    .locations-grid {
        margin-bottom: 20px;
    }
}

/* Slideshow Background */
.slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 500ms ease-in-out, transform 4000ms ease-out;
    animation: kenBurnsZoomIn 4000ms ease-out infinite;
}

.slideshow-slide.active {
    opacity: 1;
}

.slideshow-slide.slide-left {
    transform: translateX(-100%);
}

/* Ken Burns Effect - Zoom In */
@keyframes kenBurnsZoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Overlay for better text readability */
.slideshow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
