/* Contact */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(181, 161, 101, 0.9), rgba(160, 138, 84, 0.9)),
                url('Photos/StoreFront.jpeg') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.hero-overlay h1 {
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.3em;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Contact Cards */
.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 50px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.contact-card .material-icons {
    font-size: 48px;
    color: #b5a165;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #333;
}

.contact-link {
    color: #b5a165;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    display: block;
    margin: 10px 0;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #a08a54;
}

.contact-subtext {
    color: #666;
    font-size: 0.9em;
    margin: 10px 0;
}

.mobile-action-btn {
    display: none; /* Hidden by default, shown on mobile */
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: #b5a165;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.mobile-action-btn:hover {
    background-color: #a08a54;
}

.mobile-action-btn .material-icons {
    font-size: 20px;
    color: white;
    margin: 0;
}

/* Map Section */
.map-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

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

.map-header h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.map-header p {
    color: #666;
    font-size: 1.1em;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background-color: #b5a165;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-directions:hover {
    background-color: #a08a54;
}

.btn-directions .material-icons {
    font-size: 24px;
}

.parking-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.parking-info .material-icons {
    font-size: 28px;
    color: #b5a165;
}

.parking-info p {
    margin: 0;
    color: #333;
}

div#contactinfo {
    font-size: 20px;
}

iframe {
    width: 100%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 300px;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
}

ul > li {
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}

/* Business Hours Section */
.business-hours-section {
    flex: 1 1 400px;
    max-width: 600px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin: 15px 0;
}

.status-indicator.open {
    background-color: #d4edda;
    color: #155724;
}

.status-indicator.closed {
    background-color: #f8d7da;
    color: #721c24;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.open .status-dot {
    background-color: #28a745;
    animation: pulse 2s infinite;
}

.status-indicator.closed .status-dot {
    background-color: #dc3545;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hours-grid {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #b5a165;
}

.hours-day.closed {
    background-color: #ffe6e6;
    border-left-color: #dc3545;
}

.hours-day.today {
    background-color: #f5efd4;
    border-left-color: #b5a165;
    border-left-width: 6px;
    box-shadow: 0 2px 8px rgba(181, 161, 101, 0.3);
}

.hours-day.today .day-name,
.hours-day.today .day-hours {
    color: #7a6d3f;
    font-weight: bold;
}

.day-name {
    font-weight: bold;
    color: #333;
}

.day-hours {
    color: #666;
}

.hours-day.closed .day-hours {
    color: #dc3545;
    font-weight: bold;
}

.timezone-note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0px 25%;
    justify-content: space-between;
    margin-bottom: 50px;
}

.contact-hours, .contact-form {
    flex: 1 1 400px;
    max-width: 600px;
}

/* Contact Form Styles */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #b5a165;
}

.radio-group {
    border: none;
    padding: 15px 0;
    margin: 10px 0;
}

.radio-group legend {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.radio-option label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.file-upload-section {
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.file-help-text {
    font-size: 0.85em;
    color: #666;
    margin: 5px 0 10px;
}

.file-preview {
    margin-top: 10px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: white;
    border-radius: 6px;
    margin: 5px 0;
}

.file-info .material-icons {
    font-size: 20px;
    color: #b5a165;
}

.contact-form button {
    margin-top: 15px;
    padding: 14px 28px;
    background-color: #b5a165;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #a08a54;
    transform: translateY(-2px);
}

.success-message {
    text-align: center;
    padding: 40px;
    background-color: #d4edda;
    border-radius: 12px;
    border: 2px solid #28a745;
}

.success-message .material-icons {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #155724;
    margin: 15px 0;
    font-size: 2em;
}

.success-message p {
    color: #155724;
    font-size: 1.1em;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
    }

    .hero-overlay h1 {
        font-size: 2em;
    }

    .hero-overlay p {
        font-size: 1em;
    }

    .contact-cards-container {
        padding: 0 20px 30px;
        gap: 20px;
    }

    .mobile-action-btn {
        display: flex;
    }

    .contact-flex {
        padding: 0 20px;
    }

    .map-header h2 {
        font-size: 2em;
    }

    .map-actions {
        flex-direction: column;
    }

    .parking-info {
        width: 100%;
        justify-content: center;
    }

    .hours-grid {
        font-size: 0.9em;
    }

    ul, li {
        width: 110%;
    }

    div {
        padding: 10px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
