@charset "UTF-8";

/* Location Page */
.location-section {
    background: #fff;
    padding: 60px 40px;
    border-radius: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0e0e2;
}

.location-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-subtitle {
    font-size: 18px;
    color: #c9979b;
    font-style: italic;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.map-container iframe {
    display: block;
    border: none;
}

/* Info Cards */
.location-info-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.info-card {
    background: linear-gradient(135deg, #fefcfc 0%, #fdf8f8 100%);
    border: 1px solid #f5e0e2;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 151, 155, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8b4b8 0%, #c9979b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon span {
    font-size: 28px;
    filter: grayscale(1) brightness(10);
}

.info-content h3 {
    font-size: 16px;
    color: #c9979b;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-content p {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.5;
}

.info-content .phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.info-content .info-detail {
    font-size: 13px;
    color: #999;
}

/* Transport Section */
.transport-section {
    background: #faf7f7;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
}

.transport-section h2 {
    font-size: 22px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.transport-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

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

.transport-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-icon span {
    font-size: 22px;
}

.transport-icon.subway {
    background: #e8f4e8;
}

.transport-icon.bus {
    background: #e8ecf4;
}

.transport-icon.car {
    background: #f4ece8;
}

.transport-content h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.transport-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 3px;
    line-height: 1.4;
}

.transport-content .transport-detail {
    font-size: 13px;
    color: #999;
}

/* Location Notice */
.location-notice {
    text-align: center;
    background: linear-gradient(135deg, #fdf6f7 0%, #f9eced 100%);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid #f0e0e2;
}

.location-notice p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.location-notice strong {
    color: #c9979b;
}

.notice-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-call,
.btn-online,
.btn-kakao {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-call {
    background: linear-gradient(135deg, #c9979b 0%, #b88589 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(201, 151, 155, 0.4);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 151, 155, 0.5);
}

.btn-online {
    background: #fff;
    color: #c9979b;
    border: 2px solid #c9979b;
}

.btn-online:hover {
    background: #c9979b;
    color: #fff;
    transform: translateY(-2px);
}

.btn-kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.btn-kakao:hover {
    background: #F5DC00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 229, 0, 0.4);
}

.btn-kakao i {
    margin-right: 8px;
}

/* Responsive - 태블릿 */
@media (max-width: 900px) {
    .location-section {
        padding: 40px 20px;
    }

    .location-header h1 {
        font-size: 28px;
    }

    .location-info-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 20px;
        gap: 15px;
    }

    .info-icon {
        margin: 0;
        width: 50px;
        height: 50px;
    }

    .info-icon span {
        font-size: 24px;
    }

    .transport-section {
        padding: 25px 20px;
    }

    .transport-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .transport-item {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
    }
}

/* 모바일 */
@media (max-width: 480px) {
    .location-section {
        padding: 30px 15px;
    }

    .location-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .location-header h1 {
        font-size: 24px;
    }

    .location-subtitle {
        font-size: 15px;
    }

    .map-container {
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .info-card {
        padding: 15px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon span {
        font-size: 20px;
    }

    .info-content h3 {
        font-size: 14px;
    }

    .info-content p {
        font-size: 13px;
    }

    .info-content .phone-number {
        font-size: 16px;
    }

    .transport-section {
        padding: 20px 15px;
    }

    .transport-section h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .transport-item {
        padding: 12px;
    }

    .transport-icon {
        width: 40px;
        height: 40px;
    }

    .transport-icon span {
        font-size: 18px;
    }

    .transport-content h4 {
        font-size: 14px;
    }

    .transport-content p {
        font-size: 13px;
    }

    .location-notice {
        padding: 25px 15px;
    }

    .location-notice p {
        font-size: 14px;
    }

    .btn-call,
    .btn-online,
    .btn-kakao {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .notice-buttons {
        flex-direction: column;
    }
}
