@charset "utf-8";
/* CSS Document */

/*                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }*/

/*        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding: 2rem;
        }*/

        .locations-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-title h1 {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 1rem;
        }

        .page-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .location-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .location-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 350px;
        }

        .location-media {
            display: flex;
            flex-direction: column;
        }

        .location-photo {
            height: 350px;
            background-color: #e9ecef;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .photo-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            background: linear-gradient(45deg, #e9ecef, #f8f9fa);
            color: #6c757d;
            font-size: 0.9rem;
            flex-direction: column;
            gap: 0.5rem;
        }

        .placeholder-icon {
            width: 32px;
            height: 32px;
            fill: #6c757d;
        }

        .location-details {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .location-header {
            margin-bottom: 2rem;
        }

        .location-name {
            font-size: 2.2rem;
            font-weight: bold;
            color: #1e3c72;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .location-icon {
            width: 20px;
            height: 20px;
            fill: #2a5298;
        }

        .contact-info {
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

        .contact-icon {
            width: 18px;
            height: 18px;
            fill: #666;
            margin-top: 0.1rem;
            flex-shrink: 0;
        }

        .contact-text {
            color: #555;
            line-height: 1.5;
        }

        .contact-text a {
            color: #2a5298;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-text a:hover {
            text-decoration: underline;
        }

        .location-actions {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .action-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-size: 1.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
        }

        .map-button {
            background: #28a745;
        }

        .map-button:hover {
            background: #218838;
            transform: translateY(-1px);
        }

        .website-button {
            background: #2a5298;
        }

        .website-button:hover {
            background: #1e3c72;
            transform: translateY(-1px);
        }

        .button-icon {
            width: 16px;
            height: 16px;
            fill: white;
        }

        .mobile-actions {
            display: none;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        /* Responsive Design */
        @media (max-width: 767px) {
            body {
                padding: 1rem;
            }

            .page-title h1 {
                font-size: 2rem;
            }

            .location-content {
                grid-template-columns: 1fr;
                display: flex;
                flex-direction: column;
            }

            .location-details {
                order: 1;
                padding: 1.5rem 1.5rem 0 1.5rem;
            }

            .location-media {
                order: 2;
            }

            .mobile-actions {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                order: 3;
            }

            .location-photo {
                height: 250px;
            }

            .location-name {
                font-size: 1.2rem;
            }

            .location-details .location-actions {
                display: none;
            }
        }

        @media (min-width: 768px) {
            .locations-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (min-width: 1024px) {
            .locations-grid {
                gap: 3rem;
            }
            
            .location-content {
                min-height: 400px;
            }

            .location-photo {
                height: 400px;
            }
        }

