﻿body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    height: 100%;
    background-image: url("https://Resources.fatalefemboy.co.uk/PNGs/Backgorund.png");
    background-repeat: repeat-y;
    background-size: cover; /* scales image */
    background-position: center;
}










#LinksContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
    #LinksContainer #LinksContent {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 70vw;
        max-height: auto;
    }
        #LinksContainer #LinksContent a {
            margin: 10px;
        }
            #LinksContainer #LinksContent a img {
                width: 100px;
                height: auto
            }










.btn-container {
    margin: 10px;
    display: flex;
    gap: 12px;
}

.btn-link {
    margin: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--btn-bg);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

    .btn-link:hover {
        background-color: var(--btn-hv);
    }





.tablinks {
    margin: 20px 20px 0px 20px;
    background-color: var(--btn-bg);
    border-radius: 6px;
}

    .tablinks:hover {
        background-color: var(--btn-hv);
    }

    .tablinks img {
        width: 100px;
        height: auto;
    }


.WishlistTabContent {
    width: 60vw;
    min-height: 30vh;
    height: 45vw;
    display: flex;
}

.TabContent-Hidden {
    display: none;
}

.WishlistTabContent iframe {
    width: 60vw;
    min-height: 30vh;
    height: 45vw;
}





h1, h2, h3, h4 {
    text-align: center;
    font-weight: bold;
    
    text-shadow: -2px -2px 0 #000,
                  2px -2px 0 #000,
                 -2px  2px 0 #000,
                  2px  2px 0 #000;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.1rem; }





.CalendarControls {
    text-align: center;
    margin-bottom: 10px;
}

    .CalendarControls button {
        margin: 4px;
        padding: 8px 16px;
        font-size: 14px;
        cursor: pointer;
        background-color: var(--btn-bg);
        color: #fff;
    }

        .CalendarControls button:hover {
            background-color: var(--btn-hv);
        }

.calendar-container {
    max-width: 700px;
    margin: 0 auto;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.day, .empty {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 6px;
}

    .day:hover {
        background-color: #50cdde;
    }

.empty {
    cursor: default;
}





/* Basic styles for arrows and tab contents */
.tabs, .sub-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

    /* Style for tab arrows (larger) */
    .tabs .arrow {
        font-size: 30px;
        color: white;
        padding: 8px 40px;
        background-color: #1E7E99;
        border: 4px solid #ccc;
        border-radius: 4px;
        transition: background-color 0.3s;
        cursor: pointer;
        margin-right: 4vw;
        margin-left: 4vw;
    }

    /* Style for sub-tab arrows (smaller) */
    .sub-tabs .arrow {
        font-size: 23px; /* Smaller font size for sub-tabs */
        color: white;
        padding: 5px 30px; /* Smaller padding */
        background-color: #93349b;
        border: 4px solid #ccc;
        border-radius: 4px;
        transition: background-color 0.3s;
        cursor: pointer;
        margin-right: 2vw;
        margin-left: 2vw;
    }

.arrow-hidden {
    display: none;
}

/* Hover effect for arrows */
.tabs .arrow:hover {
    background-color: #1b6378;
}

/* Hover effect for arrows */
.sub-tabs .arrow:hover {
    background-color: #6d2b72;
}

/* Hide all content by default */
.tab-content, .sub-tab-content, .spincontainerHide {
    display: none;
}

/* Show active tab content */
.tab-content.active-content, .sub-tab-content.active-sub-content {
    display: block;  /* show active tab properly */
}






a img:hover {
    opacity: 0.8;
}

/* Default size for desktop */
.responsive-button {
    width: 60vw; /* Button width relative to viewport width */
    height: auto; /* Height is auto to maintain aspect ratio */
    max-width: 70px; /* Maximum width for larger screens */
    max-height: 70px; /* Maximum height for larger screens */
    object-fit: contain; /* Preserve aspect ratio of the image */
    border: none;
    transition: opacity 0.3s;
}

/* Adjust button size for smaller screens (phones/tablets) */
@media (max-width: 768px) {
    .responsive-button {
        width: 40vw; /* Smaller width for tablets and phones */
        max-width: 50px; /* Maximum width for small screens */
        object-fit: contain; /* Preserve aspect ratio of the image */
        height: auto; /* Maintain aspect ratio */
    }
}

/* Adjust button size for very small screens (portrait mobile) */
@media (max-width: 480px) {
    .responsive-button {
        width: 25vw; /* Further smaller width for portrait mobile */
        max-width: 40px; /* Maximum width for tiny screens */
        object-fit: contain; /* Preserve aspect ratio of the image */
        height: auto; /* Maintain aspect ratio */
    }
}






/* Style for the slideshow images */
.slideshow-container {
    position: relative;
    width: 25vw;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
    height: auto; /* optional if you want variable height */
}

.slides {
    display: flex;
    transition: transform 1s ease;
    width: 100%; /* important for flex container */
}

    .slides img {
        flex: 0 0 100%; /* each image takes 100% of container width */
        width: 100%;
        height: auto;
        object-fit: contain; /* optional, crops nicely if needed */
        object-position: top center; /* ⬅ keeps image at the top */
    }






.spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 15vw;
    height: 15vw;
    min-width: 40px;
    min-height: 40px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spincontainer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 50vh; /* Full screen height */
}