/*
Theme Name: s360 Theme
Description: A custom WordPress theme for Storage 360
Author: Storage 360
Version: 1.0.0
Text Domain: s360-theme
*/

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Form Message Styles */
.form-messages {
    margin: 20px 0;
}

.form-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Submit Button Loading State */
.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-loading {
    display: none;
}

.reservation-confirmation-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
}

.rental-instructions {
    margin-bottom: 30px;
    text-align: center;
}

.rental-instructions p {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.highlight-text {
    font-weight: bold;
}

.rental-instructions h2 {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.progress-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #d1d5db;
    background: white;
    color: #6b7280;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #d1d5db;
}

.reservation-header h2 {
    color: #1e3a8a;
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: bold;
}

.reservation-header p {
    color: #1e3a8a;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.reservation-toggle {
    color: #1e3a8a;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.reservation-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.reservation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reservation-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reservation-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reservation-item strong {
    color: #1e3a8a;
    font-size: 12px;
    font-weight: bold;
}

.reservation-item span {
    color: #333;
    font-size: 14px;
}

@media (max-width: 768px) {
    .reservation-grid {
        grid-template-columns: 1fr;
    }
}