@charset "utf-8";

/* Reset some default styles */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: transparent;
    /* Add background image if needed: background-image: url(""); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

a {
    text-decoration: none;
    outline: 0;
}

/* Navigation Menu Styles */
.GalMenu {
    margin: 0;
    padding: 0;
    display: none;
    position: fixed;
    z-index: 999;
}

.circle,
.ring {
    height: 300px;
    position: relative;
    width: 300px;
}

.circle {
    margin: 0 auto;
}

.ring {
    border-radius: 50%;
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0.1) rotate(-270deg);
    transition: all 0.4s ease-out;
}

.open .ring {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.center {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: 2px solid #ffffff;
    bottom: 0;
    color: white;
    height: 80px;
    left: 0;
    line-height: 80px;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 80px;
    transition: all 0.4s ease-out;
}

.open .center {
    border-color: #aaaaaa;
}

.menuItem {
    border-radius: 50%;
    color: #eeeeee;
    display: block;
    height: 80px;
    line-height: 80px;
    margin-left: -41px;
    margin-top: -41px;
    position: absolute;
    text-align: center;
    width: 80px;
    background-size: 80px;
    border: 2px #b59494 solid;
    box-shadow: 0px 0px 15px #fff;
}

.menuItem:hover {
    box-shadow: inset 0px 0px 80px #fff;
}

/* Define background images for each ring item */
.ring a:nth-of-type(1) {
    background-image: url("../image/index/7.png");
}

.ring a:nth-of-type(2) {
    background-image: url("../image/index/9.png");
}

.ring a:nth-of-type(3) {
    background-image: url("../image/index/10.png");
}

.ring a:nth-of-type(4) {
    background-image: url("../image/index/14.png");
}

.ring a:nth-of-type(5) {
    background-image: url("../image/index/15.png");
}

.ring a:nth-of-type(6) {
    background-image: url("../image/index/17.png");
}

.ring a {
    display: inline-block;
    color: #ffffff;
    text-shadow: #DC965A 1px 0 0, #DC965A 0 1px 0, #DC965A -1px 0 0, #DC965A 0 -1px 0;
    filter: Glow(color=#DC965A, strength=1);
}

.ring a:hover {
    text-shadow: #66CCFF 1px 0 0, #66CCFF 0 1px 0, #66CCFF -1px 0 0, #66CCFF 0 -1px 0;
    filter: Glow(color=#66CCFF, strength=1);
}

/* Overlay Styles */
#overlay {
    height: 100%;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: transparent;
    display: none;
}