/* Layout fixes for header and footer positioning */
:root {
    --header-height: 120px;
    --footer-height: 60px;
}

/* Main content wrapper to prevent header/footer overlap */
.main-content {
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: var(--header-height);
}

/* Header positioning fixes */
.luxury-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Navigation container */
.nav-container {
    position: relative;
    z-index: 1001;
}

/* Main navigation */
.main-nav {
    background: #333;
    position: relative;
    z-index: 1000;
}

/* Content area adjustments */
.container {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Form container spacing */
.form-container {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Registration form specific styles */
.form-container .w3-card {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.form-container h1 {
    margin-bottom: 20px;
    color: #333;
}

.form-container p {
    margin-bottom: 30px;
    color: #666;
}

/* Banking details section styling */
.banking-details {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.banking-details h3 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.banking-details .form-group {
    margin-bottom: 15px;
}

.banking-details .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 8px 12px;
}

.banking-details .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Skip button styling */
.btn-skip {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.btn-skip:hover {
    background: #5a6268;
}

/* Form field spacing */
.w3-margin-bottom {
    margin-bottom: 20px;
}

.w3-margin-top {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-content {
        margin-top: 100px;
    }
    
    .form-container {
        margin-top: 20px;
        padding: 15px;
    }
    
    .banking-details {
        padding: 15px;
        margin: 15px 0;
    }
    
    .form-container .w3-card {
        margin: 10px;
        max-width: 95%;
    }
}

/* Ensure proper spacing for all pages */
body {
    padding-top: 0;
    margin-top: 0;
}

/* Remove any conflicting margin-top from inline styles */
.register-container,
.login-container,
.checkout-container {
    margin-top: 0 !important;
}

