/* Additional custom styles if needed */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Button styles */
.btn-primary {
    background: #D9A227;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #c08f1f;
    color: white;
}

/* Image hover effects */
img {
    transition: transform 0.3s ease;
}

.vertical-card:hover img {
    transform: scale(1.05);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(217, 162, 39, 0.3);
    border-radius: 50%;
    border-top-color: #D9A227;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
