@import url("../webfonts/segoescript/stylesheet.css");
@import url("../webfonts/Damion/stylesheet.css");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Light Grey Background */
body {
    /*background: #f8f9fa;*/
    background: #defbff;
    background: -webkit-linear-gradient(140deg,rgba(222, 251, 255, 1) 0%, rgba(237, 251, 252, 1) 50%, rgba(222, 251, 255, 1) 100%);
    background: -moz-linear-gradient(140deg,rgba(222, 251, 255, 1) 0%, rgba(237, 251, 252, 1) 50%, rgba(222, 251, 255, 1) 100%);
    background: linear-gradient(140deg,rgba(222, 251, 255, 1) 0%, rgba(237, 251, 252, 1) 50%, rgba(222, 251, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr="#DEFBFF",
      endColorstr="#DEFBFF",
      GradientType=0
    );
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.Container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

/* Border Box */
.border-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 200px;
    background: #ffffff;
    border-radius: 0 0 25px 25px;
    box-shadow: 
        0 4px 25px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08);
    margin-top: 290px; /* Increased from 200px to 250px */
    border: 1px solid #e9ecef;
}

/* Main Menu Circle */
.menu-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
/*    background: linear-gradient(135deg, #87CEEB, #6cb4d1);*/
    background: linear-gradient(135deg, #FFAA71, #FF7519);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.15),
        0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 4px solid #ffffff;
    z-index: 10;
}

.menu-circle:hover {
    /*background: linear-gradient(135deg, #6cb4d1, #5a9bb8);*/
    background: linear-gradient(135deg, #FFAA71, #FF7519);
    transform: translateX(-50%) scale(1.12);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-circle.active {
    background: linear-gradient(135deg, #FFAA71, #FF7519);
}

.menu-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;    
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);    
}
h1 {    
    font-family: 'Damion',sans-serif;
}
.glow {  
  color: #FFC0A5;
  text-align: center;
  /*animation: glow 1s ease-in-out infinite alternate;*/
}
.glowing-text {
  color: #FF4D00;  /* Text color */
  font-weight: 700;
  text-shadow: 
    0 0 5px #FFAC89,  /*Inner glow */
    0 0 10px #FFAC89,  /*Outer glow layer 1 */
    0 0 20px #FFAC89,  /*Outer glow layer 2 */
    0 0 30px #FFAC89;  /*Outer glow layer 3 */
}


/*---------- Sub Menu--------*/
.sub-menu {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.sub-menu.active {
    opacity: 1;
    pointer-events: all;
}

.menu-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Gold Shop - Premium Luxury Style */
.menu-card.gold {
    border-top: 6px solid #d4af37;
    padding: 25px 20px;
    width: 180px;
    background: linear-gradient(135deg, #fffdf6, #fff9e6);
    transform: translateX(-120px) rotate(-2deg);
    opacity: 0;
}

.sub-menu.active .menu-card.gold {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.1s;
}

.menu-card.gold .menu-icon {
    font-size: 2.3rem;
    margin-bottom: 5px;
    color: #d4af37;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.menu-card.gold .menu-title {
    font-size: 13pt;
    font-weight: 800;
    margin-bottom: 10px;
    color: #b8941f;
    letter-spacing: 0.5px;
}

.menu-card.gold .menu-desc {
    font-size: 0.85rem;
    color: #8a6d3b;
    line-height: 1.5;
    font-weight: 500;
}

/* Pawn Shop - Professional Business Style */
.menu-card.pawn {
    border-top: 6px solid #99C8FF;
    padding: 22px 18px;
    width: 180px;
    background: linear-gradient(135deg, #E3F2FD 20%, #F3E5F5 50%, #E8F5E8 100%);
    /*background: linear-gradient(135deg, #FFF6E8, #FFF1DC);*/
    transform: translateX(120px) rotate(2deg);
    opacity: 0;
}

.sub-menu.active .menu-card.pawn {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.2s;
}

.menu-card.pawn .menu-icon {
    font-size: 2.1rem;
    margin-bottom: 13px;
    color: #337ED4;
    text-shadow: 0 2px 4px rgba(44, 62, 80, 0.2);
}

.menu-card.pawn .menu-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1C6CC7;
    letter-spacing: 0.3px;
}

.menu-card.pawn .menu-desc {
    font-size: 0.85rem;
    color: #337ED4;
    line-height: 1.4;
    font-weight: 500;
}

.menu-card:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
/*---------- End Sub Menu--------*/

/* Footer Content */
.footer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    text-align: center;
}

.footer-content h1 {
    color: #2c3e50;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 
    0 0 5px #FFFFD7,  
    0 0 10px #FFFFD7,  
    0 0 20px #FFFFD7,  
    0 0 30px #FFFFD7;
}

.footer-content p {
    color: #7f8c8d;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 600px) {
    .border-box {
        max-width: 350px;
        height: 220px;
        margin-top: 180px;
    }
    
    .menu-circle {
        width: 80px;
        height: 80px;
        top: -40px;
    }
    
    .sub-menu {
        flex-direction: column;
        gap: 20px;
    }

    .menu-card.gold {
        transform: translateY(-50px) rotate(-2deg);
    }

    .menu-card.pawn {
        transform: translateY(50px) rotate(2deg);
    }

    .sub-menu.active .menu-card.gold {
        transform: translateY(0) rotate(0deg);
    }

    .sub-menu.active .menu-card.pawn {
        transform: translateY(0) rotate(0deg);
    }
    
    .footer-content {
        padding: 30px 20px 20px;
    }
    
    .footer-content h3 {
        font-size: 20px;
    }
}