/* General Styling */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
    text-align: center;
}

/* Header */
h1 {
    color: #0078d7;
    margin-bottom: 0;
}

/* Subheader under main title */
.subheader {
    font-family: "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
    padding-top: 10px;
    margin-top: 0;
    margin-bottom: 85px;
}

.subheader a {
    position: relative;
    font-family: "Times New Roman", serif;
    font-style: italic;
    color: #00cc00;
    text-decoration: none;
}

.subheader a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 24 24' fill='gold' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2L17 10H10L17 22L7 14H14L7 2Z'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 12px 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.subheader a:hover::after {
    opacity: 1;
}

/* Circular Rotating Text */
.circle-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

.circle-text span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: 0 125px;
    font-size: 16px;
    font-weight: bold;
    font-family: "Times New Roman", serif;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Click Here Link */
.click-link {
    text-decoration: none;
}

.click-text {
    font-family: "Times New Roman", Times, serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 5px;
    cursor: pointer;
    animation: flashText 3s steps(1) infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.arrow {
    font-size: 30px;
    animation: flashArrows 3s steps(1) infinite;
}

@keyframes flashText {
    0%, 25% { color: red; }
    26%, 50% { color: blue; }
    51%, 75% { color: green; }
    76%, 100% { color: orange; }
}

@keyframes flashArrows {
    0%, 25% { color: blue; }
    26%, 50% { color: green; }
    51%, 75% { color: orange; }
    76%, 100% { color: red; }
}

/* Responsive YouTube Video Wrapper */
.video-wrapper {
    width: 100%;
    max-width: 50%;
    margin: 15px auto;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Album Cover Image */
.album-image {
    display: block;
    max-width: 50%;   /* same size as other images */
    height: auto;
    margin: 15px auto;
    border-radius: 0;   /* no rounded corners */
    box-shadow: none;   /* no shadow */
    cursor: pointer;
}

/* New Image Styling */
.new-image {
    display: block;
    max-width: 50%;
    height: auto;
    margin: 15px auto;
    border-radius: 0;
    box-shadow: none;   /* no shadow */
}

/* Image Styling */
img {
    max-width: 50%;
    height: auto;
    border-radius: 0;
    box-shadow: none;   /* no shadow */
    display: block;
    margin: 5px auto;
}

/* Remove link styling on hover */
.click-link:hover .click-text {
    text-decoration: none;
}

/* Footer Styling */
footer {
    text-align: center;
    margin-top: 60px;
    color: #0078d7;
}

/* Footer Image */
.footer-image {
    max-width: 75px;
    height: auto;
    margin-bottom: 10px;
    box-shadow: none;   /* no shadow */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .subheader {
        font-family: "Times New Roman", serif;
        font-size: 16px;
        font-style: italic;
        padding-top: 8px;
        margin-top: 0;
        margin-bottom: 80px;
    }

    .circle-container {
        width: 200px;
        height: 200px;
    }

    .circle-text span {
        font-size: 14px;
        transform-origin: 0 100px;
    }

    .click-text {
        font-size: 20px;
        margin-top: 50px !important;
        margin-bottom: 5px;
    }

    .new-image,
    img,
    .video-wrapper {
        width: 85%;
        max-width: 300px;
        height: auto;
        margin: 15px auto;
    }

    .album-image {
        max-width: 85%;
        border-radius: 0;
        box-shadow: none;
    }

    .footer-image {
        max-width: 50px;
        box-shadow: none;
    }

    footer {
        font-size: 10px !important;
        white-space: nowrap;
        overflow: hidden;
        display: block;
        text-align: center;
        max-width: 100%;
    }
}



