/*
Theme Name: SK Golf Custom Theme
Description: A bespoke, standalone premium theme for SK Golf.
Author: SK Golf
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@500;700&display=swap');

/* ==========================================================================
   1. CSS Variables & Global Settings
   ========================================================================== */
:root {
    --sk-black: #0a0a0a;
    --sk-white: #ffffff;
    --sk-gray-light: #f4f4f4;
    --sk-gray-dark: #333333;
    --sk-font-heading: 'Oswald', sans-serif;
    --sk-font-body: 'Inter', sans-serif;
    /* Mobile default padding */
    --section-padding: 60px 5%; 
}

@media (min-width: 768px) {
    :root {
        /* Desktop padding */
        --section-padding: 120px 5%; 
    }
}

/* ==========================================================================
   2. Resets & Typography
   ========================================================================== */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: var(--sk-black) !important;
    overflow-x: hidden;
}

body {
    font-family: var(--sk-font-body);
    color: var(--sk-black);
    line-height: 1.6;
    font-weight: 400;
}

.site-main, .sk-site-header {
    background-color: var(--sk-white);
}

body > img:last-of-type {
    display: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sk-font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Unified global h2 size (Bumped up to 2.25rem for mobile) */
h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem); 
}

p {
    font-size: 0.95rem;
}

/* ==========================================================================
   3. Buttons
   ========================================================================== */
.sk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--sk-font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
    text-align: center;
    border: 0;
}

@media (min-width: 768px) {
    .sk-btn { font-size: 0.8rem; }
}

.sk-btn-primary { background-color: var(--sk-black); color: var(--sk-white); }
.sk-btn-secondary { background-color: var(--sk-white); color: var(--sk-black) !important; }

.sk-btn-primary:hover, 
.sk-btn-secondary:hover,
.sk-btn-header:hover {
    transform: scale(0.96);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sk-btn-header { 
    padding: 12px 24px; 
    font-size: 0.75rem; 
    font-weight: 700; 
    background-color: var(--sk-black);
    color: var(--sk-white);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   4. Layout Utilities & Grids
   ========================================================================== */
.sk-section { padding: var(--section-padding); }
.sk-bg-gray { background-color: var(--sk-gray-light); }
.sk-bg-black { background-color: var(--sk-black); color: var(--sk-white); }

.sk-grid-asymmetric {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem; 
    align-items: center;
}

@media (min-width: 768px) {
    .sk-grid-asymmetric {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem; 
    }
    .sk-grid-asymmetric.reverse {
        grid-template-columns: 1fr 1.5fr;
    }
}

.sk-main-img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}

/* 50/50 Even Grid (For Trackman/Dedicated Pages) */
.sk-grid-even {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem; 
    align-items: center;
}

@media (min-width: 768px) {
    .sk-grid-even {
        grid-template-columns: 1fr 1fr; /* Perfect 50/50 split */
        gap: 4rem; 
    }
}

/* Inline Trackman Logo styling */
.trackman-inline-logo {
    display: block;
    max-width: 260px; /* Keeps it neatly proportioned under the button */
    height: auto;
    margin-top: 2.5rem; /* Gives it breathing room below the CTA */
    opacity: 0.9;
}

/* --- Mobile Trackman Logo Override --- */
@media (max-width: 767px) {
    .trackman-inline-logo {
        max-width: 100%; /* Kills the 260px desktop limit */
        width: 100%; /* Forces the image to fill the container */
        margin-top: 2rem; 
    }
}

/* ==========================================================================
   5. Header & Navigation (Mobile Optimized)
   ========================================================================== */
.sk-site-header {
    width: 100%;
    position: relative;
    z-index: 999;
    font-family: var(--sk-font-body);
    border-bottom: 1px solid #eaeaea; 
}

.sk-header-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

.sk-top-bar { 
    background-color: #111111; 
    padding: 8px 0; 
    text-align: left !important;
}

.sk-top-bar, .sk-top-bar p, .sk-top-bar span, .sk-top-bar a {
    color: #cccccc !important; 
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
}

.sk-top-bar a:hover { color: #ffffff !important; }
.sk-phone-link { color: inherit; text-decoration: none; transition: color 0.3s ease; }

.sk-main-nav-wrapper { background-color: var(--sk-white); padding: 20px 0; position: relative; }
.sk-nav-flex { display: flex; justify-content: space-between; align-items: center; }
.sk-nav { flex-grow: 1; display: flex; justify-content: flex-end; padding-right: 2.5rem; }
.sk-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.8rem; align-items: center; }
.sk-menu li a { text-decoration: none; color: var(--sk-gray-dark); font-size: 0.85rem; font-weight: 500; position: relative; padding-bottom: 6px; transition: color 0.3s ease; }
.sk-menu li a:hover, .sk-menu li a.active { color: var(--sk-black); }
.sk-menu li a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background-color: var(--sk-black); }

.sk-header-logo-img {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.sk-header-logo-img:hover { opacity: 0.85; }

/* Mobile Menu Setup */
.sk-mobile-menu-toggle { display: none; }
.sk-mobile-menu-icon { display: none; font-size: 1.8rem; cursor: pointer; color: var(--sk-black); line-height: 1; }

@media (max-width: 900px) {
    .sk-top-bar { text-align: center !important; }
    .sk-top-bar p { font-size: 0.75rem !important; line-height: 1.5; }
    
    .sk-mobile-menu-icon { display: block; }
    .sk-header-cta { display: none; } 
    
    .sk-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--sk-white);
        padding: 1.5rem 5%;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 1000;
        border-top: 1px solid #eaeaea;
    }
    
    .sk-mobile-menu-toggle:checked ~ .sk-nav { display: block; }
    
    .sk-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    
    .sk-menu li { width: 100%; }
}

/* ==========================================================================
   6. Hero Section & Fullscreen Panels
   ========================================================================== */
.sk-hero {
    height: calc(100vh - 115px);
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 5%;
    position: relative;
    overflow: hidden; 
    box-sizing: border-box;
}

.sk-hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0;
}

.sk-hero-overlay, .sk-fullscreen-panel::before {
    position: absolute !important;
    top: 0 !important; 
    left: 0 !important; 
    right: 0 !important; 
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2)) !important;
    z-index: 1;
}

.sk-hero-content, .sk-panel-content {
    position: relative;
    z-index: 2;
    color: var(--sk-white);
    width: 100%;
    max-width: 800px;
    padding-bottom: 3rem; 
}

.sk-hero-content h1, .sk-panel-content h2 {
    font-family: var(--sk-font-heading) !important;
    font-size: clamp(2.25rem, 5vw, 3.5rem) !important; 
    font-weight: 500 !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
    color: #ffffff !important;
    text-align: left;
    text-transform: uppercase !important; 
    letter-spacing: 1.5px !important; 
}

.sk-hero-sub, .sk-panel-sub {
    font-family: var(--sk-font-body);
    font-size: 1.05rem; 
    font-weight: 400;
    color: #ffffff;
    max-width: 600px;
    margin-bottom: 1.5rem; 
    opacity: 0.95;
    text-align: left;
    line-height: 1.6; 
}

/* Mobile Hero Buttons Flexing */
.sk-hero-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
}

@media (max-width: 767px) {
    .sk-hero-buttons {
        flex-direction: column; 
        align-items: stretch; 
        width: max-content;   
        min-width: 60%;       
    }
    
    .sk-hero-buttons .sk-btn {
        width: 100%;          
        box-sizing: border-box; 
        font-size: 0.85rem; 
        padding: 14px 24px; 
        min-height: 48px;     
        border: 0 !important; 
    }
}

.sk-fullscreen-panel {
    height: 90vh; 
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 5%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; 
}

/* Re-enable the fixed parallax effect only on desktop screens */
@media (min-width: 1024px) {
    .sk-fullscreen-panel {
        background-attachment: fixed;
    }
}

/* --- Mobile Specific Heading Break --- */
.sk-mobile-break { display: none; }
@media (max-width: 767px) { .sk-mobile-break { display: block; } }

/* --- Fix for Hero Title Vertical Alignment on Mobile --- */
@media (max-width: 767px) {
    .sk-hero-sub {
        min-height: 5.2rem; /* Reserves exactly 3 lines of space so the title above it never shifts */
    }
}

/* ==========================================================================
   7. Page Components & White Section Watermarks
   ========================================================================== */
/* --- Mobile First Backgrounds (Portrait Images) --- */
.trackman-bg {
    background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/mobile-trackman-section.jpg');
    background-position: center;
}

.putting-bg {
    background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/mobile-putting-lab-section.jpg');
    background-position: center bottom;
}

.proshop-bg {
    background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/mobile-pro-shop-section.jpg');
    background-position: center;
}

/* --- Desktop Backgrounds (Landscape Images) --- */
@media (min-width: 768px) {
    .trackman-bg {
        background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-9-scaled.jpg');
    }
    
    .putting-bg {
        background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-4-scaled.jpg');
    }
    
    .proshop-bg {
        background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-33-scaled.jpg');
    }
}

.sk-video-portrait {
    width: 100%;
    max-width: 860px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: block;
    margin: 0 auto;
}

.sk-relative, .sk-social-section, .sk-about-section, .sk-coaching-section {
    position: relative;
    overflow: hidden;
}

/* --- Standardize Text Block Spacing --- */
.sk-text-block h2 {
    margin-top: 0; 
    margin-bottom: 0.5rem; 
    font-size: clamp(2.25rem, 5vw, 3.5rem); 
    line-height: 1.2; 
}

.sk-text-block p {
    font-size: 1.05rem; 
    line-height: 1.6;  
    margin-top: 0;
    margin-bottom: 1.5rem; 
}

.sk-text-block br {
    display: none; 
}

/* Hide watermarks on mobile per instructions */
.sk-coaching-section::before, .sk-about-section::before, .sk-social-section::before {
    display: none; 
}

/* Show watermarks on desktop/tablet only */
@media (min-width: 768px) {
    .sk-coaching-section::before, .sk-about-section::before, .sk-social-section::before {
        display: block;
        content: '';
        position: absolute;
        top: 0; left: 0; 
        width: 100%; height: 100%;
        background-size: cover;
        background-position: center center; 
        opacity: 0.08;
        filter: grayscale(100%) contrast(150%);
        z-index: 1;
        pointer-events: none;
    }
    .sk-coaching-section::before { background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/gene-gallin-SRfwGzxbrz0-unsplash.jpg'); }
    .sk-about-section::before { background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/75c5d148a4ea-1st-tee.jpg'); }
    .sk-social-section::before { background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/courtney-cook-h7aVq-7FfPw-unsplash.jpg'); background-position: center 20%; }
}

.sk-social-tiles {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sk-social-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background-color: var(--sk-white);
    border-radius: 4px;
    text-decoration: none;
    color: var(--sk-black);
    font-family: var(--sk-font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.sk-social-tile svg {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.sk-social-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* --- Mobile Social Tiles Override --- */
@media (max-width: 767px) {
    .sk-social-tiles {
        flex-direction: column; 
        width: 100%;
        gap: 12px; 
    }
    
    .sk-social-tile {
        width: 100%; 
        box-sizing: border-box; 
        height: auto; 
        flex-direction: row; 
        padding: 14px 20px; 
        justify-content: center;
        gap: 12px; 
        font-size: 0.95rem; 
    }
    
    .sk-social-tile svg {
        margin-bottom: 0; 
        width: 22px; 
        height: 22px;
    }
}
.ig-tile:hover { color: #E1306C; border-color: #E1306C; }
.fb-tile:hover { color: #1877F2; border-color: #1877F2; }

.sk-trackman-logo {
    position: absolute;
    bottom: 5%; 
    right: 5%;
    width: clamp(70px, 15vw, 120px); 
    z-index: 2; 
    object-fit: contain;
}

/* ==========================================================================
   8. Footer Settings
   ========================================================================== */
.sk-site-footer {
    padding: 80px 5% 40px;
    background-color: var(--sk-black);
    font-family: var(--sk-font-body);
    margin-bottom: 0 !important;
    margin-top: -1px !important; 
    display: block;
}

.sk-footer-container { max-width: 1400px; margin: 0 auto; }
.sk-footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; align-items: start; }

.sk-footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 1.5rem; filter: brightness(0) invert(1); transition: opacity 0.3s ease; }
.sk-footer-logo-img:hover { opacity: 0.8; }
.sk-footer-col h4 { color: var(--sk-white); font-family: var(--sk-font-heading); font-size: 1.1rem; margin-bottom: 1.5rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.sk-footer-col p { color: #cccccc; font-size: 0.9rem; line-height: 1.7; margin: 0 0 1rem 0; }
.sk-footer-links { list-style: none; padding: 0; margin: 0; }
.sk-footer-links li { margin-bottom: 0.8rem; }
.sk-footer-links a, .sk-footer-link { color: #cccccc; text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.sk-footer-links a:hover, .sk-footer-link:hover { color: var(--sk-white); }
.sk-footer-trackman-col { display: flex; justify-content: center; align-items: center; align-self: center; margin-top: 0; height: 100%; }
.sk-footer-trackman-main { max-width: 170px !important; height: auto !important; opacity: 0.85; transition: opacity 0.3s ease; object-fit: contain; }
.sk-footer-trackman-main:hover { opacity: 1; }
.sk-footer-bottom { border-top: 1px solid #222222; padding-top: 2rem; text-align: center; }
.sk-footer-bottom p { margin: 0; color: #666666; font-size: 0.85rem; }

/* --- Mobile Footer Centering --- */
@media (max-width: 767px) {
    .sk-footer-col {
        text-align: center;
    }
    .sk-footer-logo-img {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Desktop Footer Grids --- */
@media (min-width: 768px) { 
    .sk-footer-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (min-width: 1024px) { 
    .sk-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } 
}

/* ==========================================================================
   9. Site Preloader
   ========================================================================== */
#sk-preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #ededed; z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.sk-preloader-hidden { opacity: 0; visibility: hidden; }
#sk-preloader img { width: 300px; height: auto; filter: grayscale(100%) contrast(400%) brightness(130%); mix-blend-mode: multiply; }

/* ==========================================================================
   10. Internal Page Hero Backgrounds & Auto-Carousel
   ========================================================================== */

/* --- Mobile Page Hero Backgrounds --- */
.coaching-hero-bg {
    background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/2025-Junior-Captains-Day-3-scaled-2.jpg');
    background-size: cover;
    background-position: center top;
}

.trackman-page-hero-bg {
    background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-13-scaled-2.jpg');
    background-size: cover;
    background-position: center top;
}

.putting-page-hero-bg {
    background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-6-scaled-2.jpg');
    background-size: cover;
    background-position: center top;
}

.proshop-page-hero-bg {
    background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/mobile-pro-shop-section.jpg');
    background-size: cover;
    background-position: center top;
}

.about-page-hero-bg {
    background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-7-scaled-2.jpg');
    background-size: cover;
    background-position: center top;
}

.contact-page-hero-bg {
    background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/2025-Junior-Captains-Day-13-scaled-2.jpg');
    background-size: cover;
    background-position: center top;
}

/* --- Desktop Page Hero Backgrounds --- */
@media (min-width: 768px) {
    .coaching-hero-bg {
        background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/2025-Junior-Captains-Day-3-scaled.jpg');
    }

    .trackman-page-hero-bg {
        background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-13-scaled.jpg');
    }
    
    .putting-page-hero-bg {
        background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-6-scaled.jpg');
    }

    .proshop-page-hero-bg {
        background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-29-scaled.jpg');
    }

    .about-page-hero-bg {
        background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/DHP-7-scaled.jpg');
    }

    .contact-page-hero-bg {
        background-image: url('https://sk-golf.co.uk/wp-content/uploads/2026/08/2025-Junior-Captains-Day-13-scaled.jpg');
    }
}

/* --- Auto-Fading Carousel (No JS, No Interaction) --- */
.sk-auto-carousel {
    position: relative;
    width: 100%;
    padding-bottom: 66.66%; /* Maintains a clean 3:2 Aspect Ratio */
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    pointer-events: none; /* Prevents user interaction completely */
}

.sk-auto-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Hidden by default */
    animation: skFade 10s infinite; /* 10 second loop */
}

/* Offsets the animations so they perfectly cross-fade */
.sk-auto-carousel img:nth-child(1) { animation-delay: 0s; }
.sk-auto-carousel img:nth-child(2) { animation-delay: 5s; }

/* The fading logic */
@keyframes skFade {
    0%   { opacity: 1; }
    40%  { opacity: 1; }
    50%  { opacity: 0; }
    90%  { opacity: 0; }
    100% { opacity: 1; }
}

/* ==========================================================================
   11. Image Gallery Component
   ========================================================================== */
.sk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.sk-gallery-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2; /* Forces all images to be the exact same shape */
    object-fit: cover; /* Ensures images fill the box without squishing */
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.sk-gallery-img:hover {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .sk-gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets & desktop */
        gap: 20px;
    }
}

/* ==========================================================================
   12. Bespoke Lightbox Overlay
   ========================================================================== */
.sk-lightbox-link {
    display: block;
    cursor: zoom-in;
}

.sk-lightbox-overlay {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sk-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sk-lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sk-lightbox-overlay.active img {
    transform: scale(1);
}

.sk-lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: color 0.3s ease;
}

.sk-lightbox-close:hover {
    color: #888888;
}