* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Admin page background */
body.admin-page {
    background-image: url('baar.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.admin-page .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.admin-page main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Admin page header styling */
.admin-page header {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
}

header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.logo {
    max-height: 450px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.about-button-container {
    margin-top: 20px;
}

.about-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.service-description {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
}

.service-description h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    font-size: 1.2em;
    line-height: 1.5;
}

.service-highlight strong {
    font-weight: 600;
}

.service-description > p {
    color: #34495e;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

.pricing strong {
    color: #27ae60;
    font-size: 1.1em;
}

.payment-options {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    color: #2980b9;
    font-weight: 500;
}

.service-promise {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    margin-top: 25px;
}

.service-promise strong {
    color: #e67e22;
    font-size: 1.1em;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.1em;
}

main {
    flex: 1;
}

.calendar-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.date-header {
    text-align: center;
    margin-bottom: 30px;
}

.date-header h2 {
    color: #2c3e50;
    font-size: 1.8em;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 8px;
    margin-bottom: 30px;
}

.time-slot {
    padding: 15px 10px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.time-slot.available {
    background-color: #2ecc71;
    color: white;
}

.time-slot.unavailable {
    background-color: #e74c3c;
    color: white;
}

.time-slot.passed {
    background-color: #95a5a6;
    color: #ecf0f1;
    opacity: 0.7;
}

.admin-time-slots .time-slot {
    cursor: pointer;
    border: 2px solid transparent;
}

.admin-time-slots .time-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.legend {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background-color: #2ecc71;
}

.legend-color.unavailable {
    background-color: #e74c3c;
}

.contact-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 30px;
}

.contact-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.phone-number {
    margin-bottom: 15px;
    text-align: center;
}

.text-btn {
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 600;
    padding: 15px 25px;
    background-color: #3498db;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.text-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-note {
    color: #7f8c8d;
    font-style: italic;
}

.delivery-area-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #ecf0f1;
}

.delivery-area-section h4 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 15px;
    text-align: center;
}

.map-container {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid #3498db;
    background: #f8f9fa;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.map-note {
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
}

footer {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Admin Panel Styles */
.login-container {
    background: rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    max-width: 400px;
    margin: 0 auto;
    backdrop-filter: blur(3px);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-success {
    background-color: #2ecc71;
    color: white;
}

.btn-success:hover {
    background-color: #27ae60;
}

.btn-danger {
    background-color: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.error-message {
    color: #e74c3c;
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
}

.admin-panel {
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-header h2 {
    color: #2c3e50;
}

.availability-controls h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.availability-controls p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.quick-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    header {
        padding: 20px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .logo {
        max-height: 204px;
    }
    
    .calendar-container,
    .contact-section,
    .admin-panel {
        padding: 20px;
    }
    
    .service-description {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .service-description h2 {
        font-size: 1.5em;
    }
    
    .service-highlight {
        padding: 15px;
        font-size: 1.1em;
        margin-bottom: 20px;
    }
    
    .service-description > p {
        font-size: 1em;
    }
    
    .service-details {
        gap: 12px;
    }
    
    .pricing, .payment-options, .service-promise {
        padding: 12px;
        font-size: 0.9em;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
        gap: 6px;
    }
    
    .time-slot {
        padding: 12px 8px;
        font-size: 14px;
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .legend {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .phone-number a {
        font-size: 1.1em;
        padding: 12px 20px;
    }
    
    .map-container {
        margin: 15px 0;
        border-width: 2px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .delivery-area-section {
        margin-top: 25px;
        padding-top: 20px;
    }
}

/* About Page Styles */
.about-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.about-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-section h3 {
    color: #2c3e50;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: #34495e;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.service-item strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.service-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.benefit p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
    .about-section {
        padding: 20px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        gap: 15px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
} 