@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&subset=cyrillic,cyrillic-ext,latin,latin-ext&display=swap');

:root {
    --primary-color: #310b12;
    --text-color: #ffffff;
    --background-color: #070706;
    --header-background: rgba(177, 213, 169, 0.95);
    --header-height: 72px;
}

body { 
    font-family: 'Montserrat', sans-serif; 
    margin: 0; 
    background: var(--background-color) url('images/jpeg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
}

.header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background: var(--background-color) url('images/Background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color); 
    padding: 0 24px; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    border-bottom: 1px solid #e1e3e5;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 1.5em; 
    font-weight: 800; 
    text-decoration: none; 
    color: var(--text-color); 
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: contain;
}

.nav { 
    display: flex; 
    gap: 32px; 
}

.nav-list { 
    display: flex; 
    gap: 32px; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.nav-list a { 
    color: var(--text-color); 
    text-decoration: none; 
    font-size: 0.95em;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-list a.active::after,
.nav-list a:hover::after { 
    transform: scaleX(1);
}

.language-switcher { 
    display: flex; 
    align-items: center;
    position: relative;
}

.custom-dropdown { 
    position: relative; 
}

#dropdown-button { 
    background: none; 
    border: 1px solid #e1e3e5;
    color: var(--text-color); 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    cursor: pointer; 
    font-size: 0.9em;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: border-color 0.2s;
}

#dropdown-button:hover {
    border-color: var(--primary-color);
}

#dropdown-menu { 
    display: none; 
    position: absolute; 
    right: 0; 
    top: calc(100% + 8px); 
    background: var(--background-color); 
    border: 1px solid #e1e3e5;
    border-radius: 8px; 
    min-width: 160px; 
    z-index: 100; 
    list-style: none; 
    margin: 0; 
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#dropdown-menu li { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    padding: 8px 16px; 
    cursor: pointer; 
    color: var(--text-color);
    font-size: 0.9em;
    transition: background 0.2s;
}

#dropdown-menu li:hover { 
    background: #f4f6f8; 
}

#dropdown-menu img, #dropdown-button img { 
    width: 20px; 
    height: 15px; 
    border-radius: 2px;
}

.menu-toggle { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--text-color); 
    font-size: 1.5em; 
    cursor: pointer;
    padding: 8px;
}

.ticker { 
    background: var(--primary-color); 
    color: #fff; 
    overflow: hidden; 
    white-space: nowrap; 
    font-size: 0.9em;
    padding: 12px 0;
    margin-top: var(--header-height);
}

.ticker p { 
    display: inline-block; 
    padding-left: 100%; 
    animation: ticker-scroll 24s linear infinite; 
    font-weight: 500;
}

#myBtn {
   display: none; /* Hidden by default */
   position: fixed; /* Fixed/sticky position */
   bottom: 20px; /* Place the button at the bottom of the page */
   right: 30px; /* Place the button 30px from the right */
   z-index: 99; /* Make sure it does not overlap */
   border: none; /* Remove borders */
   outline: none; /* Remove outline */
   background-color: red; /* Set a background color */
   color: white; /* Text color */
   cursor: pointer; /* Add a mouse pointer on hover */
   padding: 15px; /* Some padding */
   border-radius: 10px; /* Rounded corners */
   font-size: 18px; /* Increase font size */
}
#myBtn:hover {
   background-color: #555; /* Add a dark-grey background on hover */
}


@keyframes ticker-scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-100%); } 
}

.container { 
    max-width: 1200px; 
    margin: 32px auto; 
    padding: 0 24px;
    margin-top: var(--header-height);
}

/* Adjust container margin when video hero is present */
.container:has(.video-hero-section),
.container .video-hero-section ~ * {
    margin-top: 0;
}

/* Video Hero Section */
.video-hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.animated-hero-text {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 12vw, 14rem);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    margin: 5% 3%;
    padding: 0 2%;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.animated-hero-text.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.animated-hero-text.fade-in {
    opacity: 1;
    transform: scale(1);
}

.animated-hero-text.hero-text-small {
    font-size: clamp(1rem, 2.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .header { 
        padding: 0 16px;
    }

    .nav { 
        display: none; 
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--background-color);
        border-bottom: 1px solid #e1e3e5;
        padding: 16px 0;
    }

    .nav.active { 
        display: block;
    }

    .nav-list { 
        flex-direction: column; 
        gap: 0; 
        padding: 0 16px;
    }

    .nav-list a { 
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid #e1e3e5;
    }

    .nav-list li:last-child a {
        border-bottom: none;
    }

    .menu-toggle { 
        display: block;
    }

    .language-switcher { 
        margin-left: auto;
    }
    
    .animated-hero-text {
        font-size: clamp(2rem, 10vw, 5rem);
    }
    
    .animated-hero-text.hero-text-small {
        font-size: clamp(0.85rem, 3.5vw, 1.5rem);
    }
    
    .video-hero-section {
        height: 70vh;
    }
}

/* Footer Styles */
.site-footer {
    background: var(--background-color) url('images/Background.jpg') no-repeat bottom center fixed;
    background-size: cover;
    color: var(--text-color);
    margin-top: 4rem;
    padding: 3rem 0 2rem 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    color: #ffffff;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 400px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link.youtube:hover { background: #ff0000; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.facebook:hover { background: #1877f2; }
.social-link.tiktok:hover { background: #000000; }

/* Messaging Apps */
.messaging-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.messaging-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.messaging-link:hover {
    color: #ffffff;
}

.messaging-link svg {
    flex-shrink: 0;
}

.messaging-link.whatsapp:hover { color: #25d366; }
.messaging-link.telegram:hover { color: #0088cc; }
.messaging-link.viber:hover { color: #665cac; }

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info .phone {
    font-weight: 600;
}

.concert-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.concert-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Request Concert Button */
.request-concert-btn {
    background: #ffffff;
    color: #310b12;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.request-concert-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1e3e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #2d3436;
    font-size: 1.4rem;
    font-weight: 600;
}

.close {
    font-size: 1.5rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: #333;
}

.modal-form {
    padding: 2rem;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e1e3e5;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6a4c93;
    box-shadow: 0 0 0 3px rgba(106, 76, 147, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: #310b12b2;
    color: #ffffff;
}

.btn-primary:hover {
    background: #310b12;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106, 76, 147, 0.3);
}

.btn-secondary {
    background: #f1f3f4;
    color: #5f6368;
}

.btn-secondary:hover {
    background: #e8eaed;
    color: #310b12;
}

.success-modal .modal-content {
    text-align: center;
}

.success-modal h2 {
    color: #00a86b;
}

.success-modal p {
    color: #6b7177;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .request-concert-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-form,
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem;
    }
}

/* Blog */
 .blog-header {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 20px 0 20px 0;
            margin-top: var(--header-height);
        }
        
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 24px;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }
        
        .blog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        .blog-card-image {
            height: 220px;
            background: #e1e3e5;
            position: relative;
            overflow: hidden;
        }
        
        .blog-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .blog-card-content {
            padding: 24px;
        }
        
        .blog-card-category {
            background: var(--primary-color);
            color: #fff;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 0.8em;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 12px;
        }
        
        .blog-card-title {
            font-size: 1.4em;
            font-weight: 600;
            margin: 0 0 12px 0;
            line-height: 1.3;
            color: #2d3436;
        }
        
        .blog-card-excerpt {
            color: #6b7177;
            line-height: 1.5;
            margin: 0 0 16px 0;
            font-size: 0.95em;
        }
        
        .blog-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85em;
            color: #888;
            padding-top: 16px;
            border-top: 1px solid #f0f0f0;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 48px;
        }
        
        .pagination button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9em;
            font-weight: 500;
            transition: background 0.2s;
        }
        
        .pagination button:hover:not(:disabled) {
            background: #260a10;
        }
        
        .pagination button:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        
        .pagination .page-info {
            font-size: 0.9em;
            color: #666;
            margin: 0 16px;
        }
        
        .back-to-home {
            display: inline-flex;
            align-items: center;
            background: #f4f6f8;
            color: var(--primary-color);
            padding: 12px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 32px;
            margin-top: 100px;
            transition: background 0.2s;
        }
        
        .back-to-home:hover {
            background: #e8eaef;
        }
        
        .no-posts {
            text-align: center;
            padding: 60px 0;
            color: #666;
        }

/* Blog Post */
        .post-header {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 100px 0 60px 0;
            margin-top: var(--header-height);
        }
        
        .post-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 24px;
        }
        
        .back-navigation {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            margin-top: 50px;
        }
        
        .back-link {
            display: inline-flex;
            align-items: center;
            background: #f4f6f8;
            color: var(--primary-color);
            padding: 12px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.2s;
            font-size: 0.9em;
        }
        
        .back-link:hover {
            background: #e8eaef;
        }
        
        .post-content {
            background: white;
            padding: 48px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 2px solid #f0f0f0;
            font-size: 0.9em;
            color: #666;
        }
        
        .post-category {
            background: var(--primary-color);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.85em;
        }
        
        .post-title {
            font-size: 2.5em;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 32px 0;
            color: #2d3436;
        }
        
        .post-featured-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin: 32px 0;
        }
        
        .post-body {
            font-size: 1.1em;
            line-height: 1.7;
            color: #2d3436;
        }
        
        .post-body h1,
        .post-body h2,
        .post-body h3 {
            color: var(--primary-color);
            margin: 32px 0 16px 0;
        }
        
        .post-body h1 {
            font-size: 2em;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 8px;
        }
        
        .post-body h2 {
            font-size: 1.6em;
        }
        
        .post-body h3 {
            font-size: 1.3em;
        }
        
        .post-body p {
            margin: 16px 0;
        }
        
        .post-body ul,
        .post-body ol {
            margin: 16px 0;
            padding-left: 24px;
        }
        
        .post-body li {
            margin: 8px 0;
        }
        
        .post-body strong {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .post-not-found {
            text-align: center;
            padding: 60px 0;
            color: #666;
        }
        
        .post-not-found h1 {
            color: var(--primary-color);
            margin-bottom: 16px;
        }
        
        @media (max-width: 768px) {
            .post-content {
                padding: 32px 24px;
            }
            
            .post-title {
                font-size: 2em;
            }
            
            .post-body {
                font-size: 1em;
            }
            
        .back-navigation {
                flex-direction: column;
                margin-top: 50px;
            }
        }

/* ========== Embedded Video ========== */
.post-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
}

.post-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== Post Image Carousel ========== */
.post-carousel {
    position: relative;
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16 / 9;
}

.post-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.post-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.post-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.post-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.post-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.post-carousel-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.post-carousel-prev {
    left: 16px;
}

.post-carousel-next {
    right: 16px;
}

.post-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.post-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.post-carousel-dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .post-carousel-btn {
        width: 36px;
        height: 36px;
    }
    .post-carousel-prev { left: 8px; }
    .post-carousel-next { right: 8px; }
}

/* ========== Smooth Photo Gallery Carousel ========== */
.photo-carousel-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16 / 9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.photo-carousel-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.photo-carousel-wrapper img.active {
    opacity: 1;
}

.photo-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* ========== Fullscreen Photo Lightbox ========== */
.photo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-lightbox.active {
    display: flex;
    opacity: 1;
}

.photo-lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.photo-lightbox .lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10;
    line-height: 1;
}

.photo-lightbox .lightbox-close:hover {
    opacity: 1;
}

.photo-lightbox .lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
    z-index: 10;
}

.photo-lightbox .lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.photo-lightbox .lightbox-prev { left: 20px; }
.photo-lightbox .lightbox-next { right: 20px; }

.photo-lightbox .lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.photo-carousel-wrapper img {
    cursor: pointer;
}

@media (max-width: 768px) {
    .photo-lightbox .lightbox-btn {
        width: 40px;
        height: 40px;
    }
    .photo-lightbox .lightbox-prev { left: 8px; }
    .photo-lightbox .lightbox-next { right: 8px; }
    .photo-lightbox .lightbox-close { top: 12px; right: 16px; }
}

/* ========== GoDaddy-style Scroll Reveal Animations ========== */

/* Base hidden state for reveal elements */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale-up reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for grid children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.45s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.75s; }

/* Enhanced feature card hover (GoDaddy-style lift) */
.feature-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover img {
    transform: scale(1.05);
}

/* Smooth header scroll effect */
.header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(7, 7, 6, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Hero parallax wrapper */
.video-hero-section .video-hero-overlay {
    transition: opacity 0.1s linear;
}

/* Section heading reveal */
.section-heading {
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.section-heading.revealed::after {
    transform: translateX(-50%) scaleX(1);
}

/* Blog card enhanced animation */
.blog-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.blog-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Footer reveal */
.site-footer .footer-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.site-footer .footer-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.site-footer .footer-social { transition-delay: 0s; }
.site-footer .footer-contact { transition-delay: 0.2s; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale,
    .blog-card, .site-footer .footer-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
}
