/* Logo styling */
.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

/* Responsive logo sizing */
@media (max-width: 576px) {
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 400px) {
    .logo {
        max-width: 120px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 50%, #ADD8E6 100%) !important;
    min-height: 100vh;
}

/* Ensure container also has light blue background */
.container-fluid {
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 50%, #ADD8E6 100%) !important;
}

.menu-button {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.37),
        0 4px 16px rgba(255, 255, 255, 0.2) inset,
        0 -4px 16px rgba(0, 0, 0, 0.1) inset;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    text-decoration: none;
    border: none;
}

/* Remove default link styles */
a.menu-button:hover,
a.menu-button:focus,
a.menu-button:visited {
    text-decoration: none;
    color: inherit;
}

.menu-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.menu-button:hover::before {
    left: 100%;
}

/* Enhanced 3D glass effect */
.menu-button::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50px;
    z-index: -1;
    opacity: 1;
    transition: all 0.4s ease;
}

.menu-button:hover::after {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
}

/* Floating animation - removed to prevent hover conflicts */
.menu-button:not(:hover) {
    /* animation: float 6s ease-in-out infinite; */
}

/* Enhanced glow animation - less intense */
@keyframes gradientGlow {
    0% {
        box-shadow: 
            0 15px 45px rgba(233, 30, 99, 0.3),
            0 6px 24px rgba(255, 255, 255, 0.3) inset,
            0 -6px 24px rgba(0, 0, 0, 0.2) inset,
            0 0 0 1px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 18px 55px rgba(233, 30, 99, 0.4),
            0 8px 28px rgba(255, 255, 255, 0.35) inset,
            0 -8px 28px rgba(0, 0, 0, 0.22) inset,
            0 0 0 1px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 
            0 15px 45px rgba(156, 39, 176, 0.35),
            0 6px 24px rgba(255, 255, 255, 0.3) inset,
            0 -6px 24px rgba(0, 0, 0, 0.2) inset,
            0 0 0 1px rgba(255, 255, 255, 0.45);
    }
}

.menu-button:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #e91e63 50%, #9c27b0 75%, #3f51b5 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transform: scale(1.02);
    box-shadow: 
        0 15px 45px rgba(233, 30, 99, 0.4),
        0 6px 24px rgba(255, 255, 255, 0.3) inset,
        0 -6px 24px rgba(0, 0, 0, 0.2) inset,
        0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    animation: gradientGlow 2s ease-in-out infinite alternate;
}

.menu-button:active {
    transform: scale(0.98);
    box-shadow: 
        0 8px 25px rgba(233, 30, 99, 0.3),
        0 4px 16px rgba(255, 255, 255, 0.2) inset,
        0 -4px 16px rgba(0, 0, 0, 0.15) inset;
}

.button-text {
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 80px);
    z-index: 1;
}

.menu-button:hover .button-text {
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    font-weight: 900;
    color: #fff;
}

.menu-button i {
    font-size: 18px;
    color: #34495e;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    position: absolute;
    z-index: 2;
}

/* Arrow icons on the right */
.menu-button.arrow-button i {
    right: 25px;
}

/* Social and other icons on the left */
.menu-button.social-button i,
.menu-button.icon-left i {
    left: 25px;
}

.menu-button:hover i {
    color: #fff;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
    transform: scale(1.1);
}

.social-button {
    position: relative;
}

.social-button .button-text {
    margin-left: 8px;
}

/* Bootstrap responsive adjustments */
@media (max-width: 576px) {
    .menu-button {
        padding: 16px 20px;
        font-size: 14px;
        min-height: 55px;
        gap: 8px;
    }
    
    .menu-button i {
        font-size: 16px;
    }
    
    .button-text {
        font-size: 13px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 400px) {
    .menu-button {
        padding: 14px 18px;
        font-size: 12px;
        min-height: 50px;
        gap: 6px;
    }
    
    .menu-button i {
        font-size: 14px;
    }
    
    .button-text {
        font-size: 11px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
}

/* Hover effects for different button types */
.menu-button:nth-child(1):hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #e91e63 50%, #9c27b0 75%, #3f51b5 100%);
}

.menu-button:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #e91e63 50%, #9c27b0 75%, #3f51b5 100%);
}

/* Social media specific hover effects with gradient */
.social-button:hover {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #e91e63 50%, #9c27b0 75%, #3f51b5 100%) !important;
}

.menu-button.social-button:hover .fa-instagram {
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
    animation: iconPulse 1.5s ease-in-out infinite;
}

.menu-button.social-button:hover .fa-facebook {
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
    animation: iconPulse 1.5s ease-in-out infinite;
}

.menu-button.social-button:hover .fa-tiktok {
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Enhanced gradient effect for specific buttons */
.menu-button:nth-child(1):hover,
.menu-button:nth-child(2):hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #e91e63 50%, #9c27b0 75%, #3f51b5 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Logo styling for blue background */
.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    transform: scale(1.05);
}