@charset "UTF-8";

/* ===============
   BODY DECORATION 
   =============== */
body {
	background-image: url(../webpageimages/burried.png);
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	background-repeat: repeat;
}

/* =============================
   BACK / FORWARD CIRCLE BUTTONS 
   ============================= */

.circle{
    position: relative;
	border: solid 0.25em #999;  
    border-radius: 2em;
    width: 35px;
    height: 35px;    
}

.circle:hover{
	position: relative;
    border: solid 0.25em #FFF;  
    border-radius: 2em;
    width: 35px;
    height: 35px;
}


/* ========================
   GLOBAL BODY & TABLE TEXT
   ======================== */

body,td,th {
	font-size: 10px;
	color: #FFF;
}


/* ==================================================
   ALL RULES REQUIRED TO MAKE THE WHOLE DIV CLICKABLE
   ================================================== */

.default-link{	
	position: absolute;
	width: 100%;
	height: 100%;
	top: -1px;
	left: 0px;
	z-index: 1;
}

/* ==================
   MAIN DROPDOWN MENU 
   ================== */
#cssmenu {
    background: #000000;
    border-top: 2px solid #cc0000;
    width: 990px;
    margin: 0 auto;
    position: relative;
    font-family: Calibri, Tahoma, Arial, sans-serif;
    z-index: 1000;
}

#cssmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#cssmenu > ul > li {
    position: relative;
}

/* Top Level Links */
#cssmenu > ul > li > a {
    color: #fff;
    padding: 13px 20px;
    display: block;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
    background: #cc0000;
}

/* =====================
   SECOND LEVEL DROPDOWN
   ===================== */
#cssmenu ul ul {
    background: #b8b2b2;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    display: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 6px 0;
    border-top: 3px solid #cc0000;
    text-align: left;
}

#cssmenu ul ul li a {
    color: #000;
    padding: 12px 20px;
    display: block;
    font-weight: 600;
    font-size: 14.5px;
    text-align: left;
}

#cssmenu ul ul li a:hover {
    background: #e0dcdc;
    color: #cc0000;
}

/* ===========================
   THIRD LEVEL DROPDOWN(Fixed)
   =========================== */
#cssmenu ul ul ul {
    background: #b8b2b2;
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    display: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    padding: 6px 0;
    border-top: 3px solid #cc0000;
    border-left: 3px solid #cc0000;
}

#cssmenu ul ul li {
    position: relative;
}

/* Show Second Level */
#cssmenu > ul > li:hover > ul {
    display: block;
}

/* Show Third Level */
#cssmenu ul ul li:hover > ul {
    display: block;
}

/* ==================
   PURE CSS HAMBURGER
   ================== */
#cssmenu .hamburger {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

#cssmenu .hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s;
}

#cssmenu .hamburger span:nth-child(1) { top: 0; }
#cssmenu .hamburger span:nth-child(2) { top: 10px; }
#cssmenu .hamburger span:nth-child(3) { top: 20px; }

#cssmenu .hamburger:hover span {
    background: #ff3333;
}

@media (max-width: 992px) {

    #cssmenu .hamburger {
        display: block !important;
    }

    #main-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #000000;
        z-index: 1100;
        padding: 10px 0;
    }

    #main-menu.active {
        display: flex !important;
    }

    /* Centre second-level dropdowns */
    #cssmenu ul ul {
        position: absolute;
        top: 100%;
        left: 50% !important;
        transform: translateX(-50%);
        width: 260px;
        text-align: center;
        box-sizing: border-box;
    }	

    #cssmenu ul ul li a {
        text-align: center;
    }

    /* Third-level menus */
    #cssmenu ul ul ul {
        position: static;
        width: 100%;
        transform: none;
        left: auto;
    }

    #cssmenu ul ul ul li a {
        text-align: center;
    }
}

/* ======================= 
   RESPONSIVE SOCIAL ICONS
   ======================= */
.social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    transition: all 0.25s ease;
    object-fit: cover;
}

.social-icons img:hover {
    transform: scale(1.18);
    box-shadow: 0 6px 14px rgba(204, 0, 0, 0.5);
}

/* Smaller on mobile */
@media (max-width: 768px) {
    .social-icons img {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .social-icons img {
        width: 36px;
        height: 36px;
    }
    .social-icons {
        gap: 10px;
    }
}

/* ==========================
   Back To Top Button
   ========================== */

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;              /* Hidden until user scrolls */
    z-index: 9999;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    transform: scale(1.15);
}

#top-icon {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 0.3em;       /* Matches your buttons */
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

#back-to-top:hover #top-icon {
    box-shadow: 0 6px 16px rgba(204, 0, 0, 0.5);
}

/* Mobile */
@media (max-width: 992px) {
    #top-icon {
        width: 60px;
        height: 60px;
    }

    #back-to-top {
        bottom: 25px;
        right: 20px;
    }
}

/* Modern clickable tour rows */
.tour-row {
    background-color: #000000;
    transition: background-color 0.25s ease;
    cursor: pointer;
}

.tour-row:hover {
    background-color: #2f2f2f;          /* stronger, more noticeable lift */
    box-shadow: inset 0 0 0 1px #555555; /* subtle inner border for depth */
}

.tour-row td {
    padding: 4px 8px;
    vertical-align: middle;
}

.tour-row a {
    color: inherit;
    text-decoration: none;
}

.tour-row a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    table {
        width: 100% !important;
    }
    
    td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Make song numbers and titles stack nicely */
    .tour-row td:nth-child(2) {
        width: 40px;
    }
}

/* Hover indication that image will enlarge */
.zoom-image {
    position: relative;
    display: inline-block;
    cursor: zoom-in;                    /* Shows the zoom cursor */
    transition: all 0.3s ease;
}

.zoom-image:hover {
    transform: scale(1.03);             /* Slight zoom on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.zoom-image img {
    transition: all 0.3s ease;
}

.zoom-image:hover img {
    filter: brightness(1.08);           /* Subtle brightening */
}

/* Optional: Small magnifying glass icon on hover */
.zoom-image::after {
    content: "ðŸ”";
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.zoom-image:hover::after {
    opacity: 1;
}

.search-social-bar {
  background: #1a1a1a;
  padding: 18px 0;
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  border-top:2px solid #cc0000;
}

/* =============================
   Banner Text Over Header Image
   ============================= */

#homebannertext {
    position: absolute;
    top: 50px;
    left: 80px;
    width: 650px;
    text-align: center;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 2px 2px 4px #000;
}

#homebannertext h1 {
    margin: 0;
    font-size: 38px;          /* was 32px */
    font-weight: bold;
    line-height: 1.0;
}

#homebannertext .subtitle {
    margin-top: 5px;
    font-size: 20px;          /* was 18px */
    color: #d8d8d8;
}

#homebannertext .redamp {
    color: #ff1b1b;
}

#homebannertext .years {
    margin-top: 8px;
    font-size: 17px;          /* was 16px */
    letter-spacing: 5px;
    color: #d8d8d8;
}

#homebannertext .years span {
    display: inline-block;
    width: 32px;              /* shorter red flashes */
    height: 3px;
    background: #cc0000;
    vertical-align: middle;
    margin: 0 12px 4px;
}

/* =============================
   Modern Clickable Tour Rows
   ============================= */
   
.tour-row {
    background-color: #000000;
    transition: background-color 0.25s ease;
    cursor: pointer;
}

.tour-row:hover {
    background-color: #2f2f2f;          /* stronger, more noticeable lift */
    box-shadow: inset 0 0 0 1px #555555; /* subtle inner border for depth */
}

.tour-row td {
    padding: 4px 8px;
    vertical-align: middle;
}

.tour-row a {
    color: inherit;
    text-decoration: none;
}

.tour-row a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    table {
        width: 100% !important;
    }
    
    td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Make song numbers and titles stack nicely */
    .tour-row td:nth-child(2) {
        width: 40px;
    }
}
   
/* =============================
   Modern Clickable Song Rows
   ============================= */

.song-row td {
    background-color: #000000;
    vertical-align: middle;

    /* Reserve space for hover border */
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.song-row:hover td {
    background-color: #2f2f2f;
    border-top-color: #555555;
    border-bottom-color: #555555;
}

/* All album colour strips */
.song-row td[class^="colour-"] {
    width: 4px !important;
    min-width: 4px;
    max-width: 4px;
    padding: 0 !important;
    font-size: 0;
    line-height: 0;    
}

/* Album colours */
.song-row td.colour-first      { background-color: #4DDBFF; }
.song-row td.colour-replicas   { background-color: #B37700; }
.song-row td.colour-pleasure   { background-color: #1A8CFF; }
.song-row td.colour-telekon    { background-color: #FF0000; }
.song-row td.colour-single     { background-color: #C65353; }

/* Complete the border on the far right */
.song-row td:last-child {
    border-right: 1px solid transparent;
}

.song-row:hover td:last-child {
    border-right-color: #555555;
}

.song-row {
    cursor: pointer;
}

.song-row a {
    color: inherit;
    text-decoration: none;
}

.song-row:hover a {
    text-decoration: underline;
}

/* ========================================
   Hover indication that image will enlarge
   ======================================== */

.zoom-image {
    position: relative;
    display: inline-block;
    cursor: zoom-in;                    /* Shows the zoom cursor */
    transition: all 0.3s ease;
}

.zoom-image:hover {
    transform: scale(1.03);             /* Slight zoom on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.zoom-image img {
    transition: all 0.3s ease;
}

.zoom-image:hover img {
    filter: brightness(1.08);           /* Subtle brightening */
}

/* Optional: Small magnifying glass icon on hover */
.zoom-image::after {
    content: "ðŸ”";
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.zoom-image:hover::after {
    opacity: 1;
}

