      :root {
            --indigo: #1D2088;
            --vermilion: #E83929;
            --gold: #E6B422;
            --soft-white: #F4F4F4;
            --dark-gray: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--soft-white);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
        }

        nav ul {
            list-style-type: none;
            display: flex;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
            z-index: 2;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 3;
            width: 100%;
        }

        .slide-content h1 {
            font-size: 4rem;
            font-weight: 700;
            letter-spacing: 2px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .inspire-button {
            display: inline-block;
            padding: 1rem 3rem;
            border: 2px solid white;
            color: white;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            background-color: rgba(255,255,255,0.1);
            text-transform: uppercase;
        }

        .inspire-button:hover {
            background-color: white;
            color: black;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 0.9rem;
            letter-spacing: 2px;
            z-index: 3;
            text-transform: uppercase;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide:nth-child(1) {
            opacity: 1;
        }

        .slide:nth-child(1) { animation: fadeInOut 18s infinite; }
        .slide:nth-child(2) { animation: fadeInOut 18s infinite 6s; }
        .slide:nth-child(3) { animation: fadeInOut 18s infinite 12s; }

        @keyframes fadeInOut {
            0%, 33%, 100% { opacity: 0; }
            8%, 25% { opacity: 1; }
        }

        main {
            padding: 2rem;
            animation: fadeIn 1.5s ease-in-out;
        }

        section {
            margin-bottom: 4rem;
            padding: 2rem;
            background-color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border-radius: 8px;
        }

        .destination-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .destination {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            animation: fadeInUp 1s ease-in-out;
        }

        .destination:hover {
            transform: translateY(-5px);
        }

        .destination img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        footer {
            background-color: var(--dark-gray);
            color: white;
            text-align: center;
            padding: 2rem;
        }

        @media screen and (max-width: 768px) {
            .slide-content h1 {
                font-size: 2.5rem;
            }
            
            nav ul {
                display: none;
            }
        }
        /* Add these styles for the destinations section */
.example-trips {
    padding: 4rem 2rem;
    background: white;
}

.example-trips h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
}

.example-trips p {
    color: #666;
    margin-bottom: 3rem;
    max-width: 400px;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.trip-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.trip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.trip-summary {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 2rem;
    background: rgba(0,0,0,0.9);
    color: white;
    transition: bottom 0.5s ease;
}

.trip-card:hover .trip-summary {
    bottom: 0;
}

.trip-price {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.explore-trip {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.explore-trip:hover {
    background: white;
    color: black;
}

.trip-nights {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.trip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.trip-location {
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.trip-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.explore-trip {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.explore-trip:hover {
    background: white;
    color: black;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}
        
   .footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    background: #1a1a1a;
    color: #888;
    text-align: left;
}

.footer-column h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-align: left;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.share-travels {
    text-align: left;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-decoration: none;
    color: #888;
    transition: color 0.3s ease;
    background: #1a1a1a;
}

.back-to-top:hover {
    color: #fff;
}

.zen-brushstroke {
    position: relative;
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.zen-brushstroke::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #888;
    border-radius: 50%;
    border-left: 3px solid transparent;
    transform: rotate(-45deg);
    transition: border-color 0.3s ease;
}

.back-to-top:hover .zen-brushstroke::before {
    border-color: #fff;
    border-left-color: transparent;
}
.hotels {
    padding: 4rem 2rem;
    background: white;
}

.hotels h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    position: relative;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: filter 0.3s ease;
}

.hotel-card:hover img {
    filter: brightness(1.1);
}

.hotel-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.hotel-card h3 {

}


.hotel-card:hover h3 {
    color: #666;
}

.hotel-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hotel-card:hover p {
    opacity: 1;
}

.view-hotel {
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: auto;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}

.view-hotel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #333;
    transition: width 0.3s ease;
}

.hotel-card:hover .view-hotel::after {
    width: 100%;
}

@media (max-width: 768px) {
    .hotel-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-card img {
        height: 200px;
    }
}
  .hotel-hero {
            height: 80vh;
            position: relative;
            background-image: url('takayamahotel.avif');
            background-size: cover;
            background-position: center;
        }

        .hotel-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
        }

        .hotel-title {
            position: absolute;
            bottom: 10%;
            left: 10%;
            color: white;
            z-index: 2;
        }

        .hotel-title h1 {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .hotel-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .hotel-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }

        .hotel-description p {
            margin-bottom: 2rem;
        }

        .hotel-sidebar {
            background: #f8f8f8;
            padding: 2rem;
        }

        .hotel-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .hotel-features li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .hotel-features li::before {
            content: '✿';
            position: absolute;
            left: 0;
            color: var(--vermilion);
        }

        .book-now {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--vermilion);
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s ease;
        }

        .book-now:hover {
            background: #c62d1f;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 3rem;
        }

        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .hotel-content {
                grid-template-columns: 1fr;
            }
            
            .hotel-title h1 {
                font-size: 2.5rem;
            }
        }        
.other-hotels {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
}

.other-hotels h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.hotel-slider {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease;
    animation: slideHotels 24s infinite;
}

.hotel-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.hotel-card {
    text-align: left;
}

.hotel-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    filter: saturate(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.hotel-card:hover img {
    filter: saturate(1.5);
}


.hotel-card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hotel-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.view-hotel {
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s ease;
}

@keyframes dotAnimation {
    0%, 28% { background: #333; }
    33%, 61% { background: #ddd; }
    66%, 94% { background: #ddd; }
    100% { background: #333; }
}

@keyframes dotAnimation2 {
    0%, 28% { background: #ddd; }
    33%, 61% { background: #333; }
    66%, 94% { background: #ddd; }
    100% { background: #ddd; }
}

@keyframes dotAnimation3 {
    0%, 28% { background: #ddd; }
    33%, 61% { background: #ddd; }
    66%, 94% { background: #333; }
    100% { background: #ddd; }
}

.dot:nth-child(1) { animation: dotAnimation 24s infinite; }
.dot:nth-child(2) { animation: dotAnimation2 24s infinite; }
.dot:nth-child(3) { animation: dotAnimation3 24s infinite; }


@keyframes slideHotels {
    0%, 28% { transform: translateX(0); }
    33%, 61% { transform: translateX(-33.333%); }
    66%, 94% { transform: translateX(-66.666%); }
    100% { transform: translateX(0); }
}
.experiences-section {
    padding: 6rem 2rem;
    background: #2c2c2c;
    color: white;
    text-align: center;
}

.experiences-header {
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 auto 3rem;
    line-height: 1.1;
    max-width: 500px;
}


.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover img {
    transform: scale(1.05);
}

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.experience-nights {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.experience-location {
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.experience-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.explore-trip {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.explore-trip:hover {
    background: white;
    color: black;
}
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            content-visibility: auto;
            contain-intrinsic-size: 500px;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            color: white;
            z-index: 3;
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 300;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .experience-card {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .romantic-stays {
            padding: 6rem 2rem;
            background: #2c2c2c;
            color: white;
            text-align: center;
        }

        .romantic-stays h2 {
            font-size: 3.5rem;
            font-weight: 300;
            text-transform: uppercase;
            margin: 0 auto 3rem;
            max-width: 800px;
        }
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.experience-card.large {
    grid-column: span 2;
    height: 600px;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover img {
    transform: scale(1.05);
}

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.experience-location {
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.experience-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.experience-overlay p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.explore-trip {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.explore-trip:hover {
    background: white;
    color: black;
}

@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card.large {
        grid-column: span 1;
    }
}
.destinations {
    padding: 6rem 2rem;
    background: #2c2c2c;
    color: white;
    text-align: center;
}

.destinations h2 {
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    text-align: left;
    background: #333;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.destination-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
        color: #ffffff;
}

.destination-card p {
    padding: 0 1.5rem 1.5rem;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
}

.view-destination {
    display: block;
    padding: 1.5rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-top: 1px solid #444;
    transition: color 0.3s ease;
}

.view-destination:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
}
    .destination-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: saturate(1);
}

.destination-card:hover img {
    filter: saturate(1.8);
    transform: scale(1.02);
}

.fall-stays {
    padding: 6rem 2rem;
    background: #2c2c2c;
    color: white;
    text-align: center;
}

.fall-stays h2 {
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 auto 3rem;
    letter-spacing: 3px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    text-align: left;
    background: #333;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: saturate(1);
}

.destination-card:hover img {
    filter: saturate(1.8);
    transform: scale(1.02);
}

.destination-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.5rem 0 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 1.5rem;
}

.destination-card p {
    padding: 0 1.5rem 1.5rem;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
}

.view-destination {
    display: block;
    padding: 1.5rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-top: 1px solid #444;
    transition: color 0.3s ease;
}

.view-destination:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
}
.image-rotator {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-rotator img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.image-rotator img.active {
    opacity: 1;
}

@keyframes rotateImages {
    0%, 18% { opacity: 1; }
    20%, 38% { opacity: 0; }
    40%, 58% { opacity: 0; }
    60%, 78% { opacity: 0; }
    80%, 98% { opacity: 0; }
    100% { opacity: 1; }
}

.image-rotator img:nth-child(1) { animation: rotateImages 15s infinite; }
.image-rotator img:nth-child(2) { animation: rotateImages 15s infinite 3s; }
.image-rotator img:nth-child(3) { animation: rotateImages 15s infinite 6s; }
.image-rotator img:nth-child(4) { animation: rotateImages 15s infinite 9s; }
.image-rotator img:nth-child(5) { animation: rotateImages 15s infinite 12s; }