/* Temple at Sight - Full Screen Slider */

.temple-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.temple-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.temple-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.temple-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.temple-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 60px 40px 40px;
    color: white;
}

.temple-slide-overlay h2 {
    font-size: 3rem;
    margin: 0 0 15px 0;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.temple-slide-overlay p {
    font-size: 1.5rem;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Navigation Buttons */
.temple-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.temple-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.temple-nav-btn.left {
    left: 30px;
}

.temple-nav-btn.right {
    right: 30px;
}

.temple-nav-btn .material-icons {
    font-size: 32px;
    color: #667eea;
}

/* Dots Navigation */
.temple-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.temple-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.temple-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.temple-dot.active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .temple-slide-overlay {
        padding: 40px 20px 30px;
    }
    
    .temple-slide-overlay h2 {
        font-size: 2rem;
    }
    
    .temple-slide-overlay p {
        font-size: 1.1rem;
    }
    
    .temple-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .temple-nav-btn.left {
        left: 15px;
    }
    
    .temple-nav-btn.right {
        right: 15px;
    }
    
    .temple-nav-btn .material-icons {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .temple-slide-overlay h2 {
        font-size: 1.5rem;
    }
    
    .temple-slide-overlay p {
        font-size: 1rem;
    }
    
    .temple-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .temple-nav-btn .material-icons {
        font-size: 24px;
    }
    
    .temple-dots {
        bottom: 20px;
    }
    
    .temple-dot {
        width: 10px;
        height: 10px;
    }
    
    .temple-dot.active {
        width: 28px;
    }
}

.temple-sight-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
    color: #fff;
}

.temple-sight-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.temple-sight-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Carousel Container */
.temple-sight-carousel {
    position: relative;
    padding: 0 70px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.temple-sight-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.temple-sight-track::-webkit-scrollbar {
    display: none;
}

/* Image Card - Full viewport sizing */
.temple-sight-card {
    flex: 0 0 calc(85vh);
    height: 70vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.temple-sight-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.temple-sight-card-image {
    width: 100%;
    height: 75%;
    object-fit: cover;
    display: block;
}

.temple-sight-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.temple-sight-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.temple-sight-card-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.temple-sight-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.temple-sight-card-link:hover {
    gap: 10px;
}

/* Navigation Buttons */
.temple-sight-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.temple-sight-nav-btn:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transform: translateY(-50%) scale(1.1);
}

.temple-sight-nav-btn.prev {
    left: 10px;
}

.temple-sight-nav-btn.next {
    right: 10px;
}

.temple-sight-nav-btn .material-icons {
    font-size: 32px;
    color: #667eea;
}

/* Empty State */
.temple-sight-empty {
    text-align: center;
    padding: 80px 20px;
    color: #fff;
}

.temple-sight-empty .material-icons {
    font-size: 100px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.temple-sight-empty p {
    font-size: 1.3rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .temple-sight-card {
        flex: 0 0 calc(70vh);
        height: 65vh;
    }
}

@media (max-width: 768px) {
    .temple-sight-header h2 {
        font-size: 2rem;
    }
    
    .temple-sight-card {
        flex: 0 0 calc(80vw);
        height: 60vh;
    }
    
    .temple-sight-carousel {
        padding: 0 50px 40px 50px;
    }
    
    .temple-sight-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .temple-sight-nav-btn .material-icons {
        font-size: 28px;
    }
    
    .temple-sight-card-title {
        font-size: 1.5rem;
    }
    
    .temple-sight-card-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .temple-at-sight-section {
        min-height: 90vh;
    }
    
    .temple-sight-header {
        padding-top: 30px;
        margin-bottom: 30px;
    }
    
    .temple-sight-header h2 {
        font-size: 1.6rem;
    }
    
    .temple-sight-header p {
        font-size: 0.95rem;
    }
    
    .temple-sight-card {
        flex: 0 0 calc(85vw);
        height: 55vh;
    }
    
    .temple-sight-card-image {
        height: 70%;
    }
    
    .temple-sight-card-content {
        padding: 20px;
    }
    
    .temple-sight-card-title {
        font-size: 1.3rem;
    }
    
    .temple-sight-card-subtitle {
        font-size: 0.9rem;
    }
    
    .temple-sight-carousel {
        padding: 0 45px 30px 45px;
    }
    
    .temple-sight-nav-btn {
        width: 45px;
        height: 45px;
    }
}


.temple-sight-header {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.temple-sight-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.temple-sight-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Carousel Container */
.temple-sight-carousel {
    position: relative;
    padding: 0 50px;
}

.temple-sight-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.temple-sight-track::-webkit-scrollbar {
    display: none;
}

/* Image Card */
.temple-sight-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.temple-sight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.temple-sight-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.temple-sight-card-content {
    padding: 20px;
}

.temple-sight-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.temple-sight-card-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.temple-sight-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.temple-sight-card-link:hover {
    gap: 10px;
}

/* Navigation Buttons */
.temple-sight-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.temple-sight-nav-btn:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.temple-sight-nav-btn.prev {
    left: 0;
}

.temple-sight-nav-btn.next {
    right: 0;
}

.temple-sight-nav-btn .material-icons {
    font-size: 28px;
    color: #667eea;
}

/* Empty State */
.temple-sight-empty {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.temple-sight-empty .material-icons {
    font-size: 80px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.temple-sight-empty p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .temple-sight-header h2 {
        font-size: 2rem;
    }
    
    .temple-sight-card {
        flex: 0 0 280px;
    }
    
    .temple-sight-carousel {
        padding: 0 40px;
    }
    
    .temple-sight-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .temple-sight-nav-btn .material-icons {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .temple-at-sight-section {
        padding: 40px 0;
    }
    
    .temple-sight-header h2 {
        font-size: 1.6rem;
    }
    
    .temple-sight-header p {
        font-size: 0.95rem;
    }
    
    .temple-sight-card {
        flex: 0 0 250px;
    }
    
    .temple-sight-card-image {
        height: 200px;
    }
    
    .temple-sight-carousel {
        padding: 0 35px;
    }
}
