/* Color Palette & Font Setup */
:root {
    --gold-color: #c5a059;
    --gold-hover: #e0b86c;
    --dark-blue-bg: #152331;
}

/* Background Linear Gradient Fix */
body {
    background: #152331 !important;
    background: -webkit-linear-gradient(to right, #000000, #152331) !important;
    background: linear-gradient(to right, #000000, #152331) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff !important;
    min-height: 100vh;
}

.gold-text {
    color: var(--gold-color) !important;
}

/* Navbar Style */
.navbar {
    background-color: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
}

.navbar-nav .nav-link:hover {
    color: var(--gold-color) !important;
}

/* Hero Section */
.hero-section {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(21, 35, 49, 0.85)), 
                url('Everyday Boutique Style header photo.jpg') center/cover no-repeat;
    margin-top: 60px;
}

/* Image Circular Styling */
.img-circle-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.25);
    transition: transform 0.4s ease;
}

.watch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-circle-wrapper:hover .watch-img {
    transform: scale(1.1);
}

/* Product Cards & Hover Effects */
.product-card {
    background-color: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(5px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.25);
    border-color: var(--gold-color) !important;
}

.card-img-container {
    overflow: hidden;
}

.product-card img {
    height: 220px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Gold Buttons Styling */
.btn-gold {
    background-color: var(--gold-color);
    color: #000;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #000;
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
}

/* Tables Setup */
.custom-table {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: #fff !important;
}

.custom-table th, .custom-table td {
    background: transparent !important;
    color: #fff !important;
}

/* Order Form Styling */
.style-form {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.custom-input {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.custom-input:focus {
    border-color: var(--gold-color) !important;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.3) !important;
}

.custom-input option {
    background-color: #152331;
    color: #fff;
}

/* Toast Styling */
.border-gold {
    border: 1px solid var(--gold-color) !important;
}
