/* Button Styles */

/* General Button */
.btn {
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Primary Button */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border: none;
}

.btn-outline-primary {
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-primary:hover {
    background-color: var(--primary-light);
    color: var(--dark);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Accent Button */
.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Light Button with sleek hover effect */
.btn-light {
    background-color: #FFFFFF;
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.7) 75%, transparent 75%, transparent 100%);
    opacity: 0;
    transform: translateX(-100%) skewX(-15deg);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-light:hover {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.12);
}

.btn-light:hover::before {
    transform: translateX(100%) skewX(-15deg);
    opacity: 1;
}

/* Outline Light Button */
.btn-outline-light {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #FFFFFF;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(135deg, #c17b00, #daa520);
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(193, 123, 0, 0.2);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #b16b00, #c99510);
    box-shadow: 0 8px 20px rgba(193, 123, 0, 0.3);
    transform: translateY(-3px);
    color: #fff;
    border-color: transparent;
    text-decoration: none;
}

/* Login specific gold button - From login.css */
.login-form .btn-gold {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.9rem 1rem !important;
    margin-top: 0.5rem !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
}

.login-form .btn-gold i {
    margin-right: 0.75rem !important;
}

/* Gold Outline Button */
.btn-outline-gold {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-gold:hover {
    background-color: #fff;
    color: #b86614;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

footer .btn:hover {
    transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    min-width: 200px;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .cta-button {
        min-width: 180px;
    }
}

/* Store Button Styles (from index.css) */
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 0.9rem 2.2rem;
    border-radius: 14px;
    background-color: white;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    color: #333; 
    background-color: #fff;
}

.store-button i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: #b86614; 
    transition: all 0.3s ease;
}

.store-button:hover i {
    transform: scale(1.1);
}

/* Responsive for download-buttons and store-button from index.css */
@media (max-width: 576px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .store-button {
        width: 100%;
        max-width: 240px;
    }
}
